:root {
    --bg-dark: #0f111a;
    --primary-color: #7b2cbf;
    --secondary-color: #00f5d4;
    --accent-color: #f72585;
    --text-light: #f8f9fa;
    --text-muted: #adb5bd;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition-speed: 0.4s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Background Glow Effects */
.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.6;
    animation: floatGlow 15s infinite alternate ease-in-out;
}

.glow-1 {
    background: radial-gradient(circle, var(--primary-color), transparent 70%);
    top: -100px;
    left: -100px;
}

.glow-2 {
    background: radial-gradient(circle, var(--secondary-color), transparent 70%);
    bottom: -200px;
    right: -100px;
    animation-delay: -5s;
}

.glow-3 {
    background: radial-gradient(circle, var(--accent-color), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation-delay: -10s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

.container {
    width: 100%;
    max-width: 800px;
    padding: 20px;
    z-index: 1;
}

/* Glassmorphism Panels */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.3;
}

h1 span, h2 span, .highlight-text {
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(123, 44, 191, 0.2);
    color: var(--secondary-color);
    border: 1px solid rgba(0, 245, 212, 0.3);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Buttons */
.btn {
    display: block;
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 4px 15px rgba(247, 37, 133, 0.4);
    margin-top: 30px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 37, 133, 0.6);
}

.arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn-primary:hover .arrow {
    transform: translateX(5px);
}

/* Options Grid */
.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.btn-option {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 20px;
    border-radius: 12px;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.btn-option:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary-color);
    transform: translateX(5px);
}

/* Progress Bar */
.progress-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 10px;
    transition: width 0.5s ease;
}

.step-counter {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

/* Step Transitions */
.step {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity var(--transition-speed) ease, transform var(--transition-speed) ease;
}

.step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp var(--transition-speed) ease forwards;
}

.step.hidden {
    display: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Spinner */
.loading-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-left-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 30px;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 1.5rem;
    background: none;
    -webkit-text-fill-color: var(--text-light);
}

/* Final Offer Page */
.offer-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.offer-header {
    margin-bottom: 30px;
    text-align: center;
}

.urgency-badge {
    background: rgba(247, 37, 133, 0.2);
    border-color: var(--accent-color);
    color: #ff4d6d;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.offer-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.benefits-panel h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.benefits-list .icon {
    margin-right: 15px;
    font-size: 1.5rem;
}

.bonus-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.bonus-section h4 {
    color: #ffd166;
    margin-bottom: 10px;
}

.bonus-section ul {
    list-style: none;
}

.bonus-section li {
    color: var(--text-muted);
    margin-bottom: 5px;
}

/* Pricing */
.pricing-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid rgba(0, 245, 212, 0.3);
    position: relative;
}

.timer-container {
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 25px;
}

.countdown {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    letter-spacing: 2px;
}

.price-title {
    text-align: center;
    margin-bottom: 20px;
}

.price-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    border: 1px solid var(--glass-border);
    position: relative;
}

.best-value {
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.05) 0%, rgba(123, 44, 191, 0.1) 100%);
}

.badge-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--bg-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 5px;
}

.new-price {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.new-price span {
    font-size: 1.5rem;
}

.pulse-animation {
    background: linear-gradient(45deg, #06d6a0, #118ab2);
    box-shadow: 0 0 20px rgba(6, 214, 160, 0.4);
    animation: buttonPulse 2s infinite;
}

@keyframes buttonPulse {
    0% { box-shadow: 0 0 0 0 rgba(6, 214, 160, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(6, 214, 160, 0); }
    100% { box-shadow: 0 0 0 0 rgba(6, 214, 160, 0); }
}

.secondary-buy {
    background: transparent;
    border: 1px solid var(--text-muted);
    padding: 12px;
    font-size: 1rem;
}

.secondary-buy:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.guarantee-box {
    margin-top: 25px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.shield-icon {
    font-size: 2rem;
    margin-right: 15px;
}

/* Testimonials */
.social-proof {
    margin-bottom: 30px;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.testimonial-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 12px;
}

.stars {
    color: #ffd166;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.testimonial-item span {
    display: block;
    margin-top: 10px;
    color: var(--secondary-color);
    font-weight: 600;
}

/* FAQ */
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 15px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item strong {
    display: block;
    color: white;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .offer-cards-container {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .glass-panel {
        padding: 25px;
    }
}
