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

:root {
    --primary: #6C63FF;
    --primary-dark: #5B54D9;
    --secondary: #FF6B6B;
    --accent: #FFD93D;
    --dark: #1A1A2E;
    --dark-light: #252541;
    --text: #E8E8E8;
    --text-muted: #A0A0B8;
    --success: #4CAF50;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Banner */
.top-banner {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    animation: slideDown 0.5s ease-out;
}

.top-banner i {
    margin-right: 8px;
    animation: pulse 2s infinite;
}

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

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 100px;
    background: linear-gradient(135deg, #1A1A2E 0%, #2D2D4A 100%);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.badge-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(108, 99, 255, 0.2);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    animation: fadeInUp 0.8s ease-out;
}

.main-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FFF 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}

.sub-headline {
    font-size: 24px;
    color: var(--text);
    margin-bottom: 30px;
    font-weight: 400;
    animation: fadeInUp 1.2s ease-out;
}

/* Date Badge */
.date-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, #FFA500 100%);
    color: var(--dark);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(255, 217, 61, 0.3);
    animation: fadeInUp 1.4s ease-out, glow 2s infinite;
}

.date-badge.large {
    font-size: 22px;
    padding: 18px 40px;
    margin-bottom: 30px;
}

.date-badge i {
    margin-right: 10px;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 8px 25px rgba(255, 217, 61, 0.3); }
    50% { box-shadow: 0 8px 35px rgba(255, 217, 61, 0.5); }
}

/* Form Container */
.form-container {
    background: var(--dark-light);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 550px;
    margin: 0 auto;
    animation: fadeInUp 1.6s ease-out;
}

.replay-badge {
    background: rgba(255, 217, 61, 0.15);
    border: 2px solid var(--accent);
    color: var(--accent);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

.opt-in-form .form-group {
    margin-bottom: 20px;
}

.opt-in-form input[type="text"],
.opt-in-form input[type="email"] {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.opt-in-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.3);
}

.cta-button {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    font-size: 20px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(108, 99, 255, 0.6);
}

.cta-button.large {
    font-size: 22px;
    padding: 22px 60px;
    width: auto;
    display: inline-block;
}

.privacy-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 15px;
}

.privacy-note i {
    margin-right: 5px;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 40px;
}

.success-message i {
    font-size: 60px;
    color: var(--success);
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text);
}

.success-message p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Hero Animation */
.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.float-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.3) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text);
}

/* What You'll Learn Section */
.what-you-learn {
    background: var(--dark-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--dark);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(108, 99, 255, 0.2);
}

.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.feature-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Live Bonus Section */
.live-bonus {
    background: linear-gradient(135deg, #1A1A2E 0%, #2D2D4A 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.live-bonus::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 217, 61, 0.1) 0%, transparent 50%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bonus-container {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--dark-light);
    padding: 60px 50px;
    border-radius: 30px;
    border: 3px solid var(--accent);
    box-shadow: 0 30px 80px rgba(255, 217, 61, 0.3);
}

.bonus-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.bonus-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 15px;
}

.bonus-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent) 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    line-height: 1.2;
}

.bonus-value {
    font-size: 20px;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bonus-description {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 217, 61, 0.2);
}

.bonus-description p {
    font-size: 18px;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 15px;
}

.bonus-description p:last-child {
    margin-bottom: 0;
}

.bonus-action {
    color: var(--accent) !important;
    font-weight: 600;
    font-size: 19px !important;
}

.bonus-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid var(--secondary);
    padding: 20px 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.bonus-urgency i {
    font-size: 24px;
    color: var(--secondary);
}

.bonus-urgency span {
    font-size: 16px;
    color: var(--text);
}

.bonus-cta {
    font-size: 20px;
    padding: 22px 50px;
    background: linear-gradient(135deg, var(--accent) 0%, #FFA500 100%);
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.bonus-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 217, 61, 0.5);
}

/* Who This Is For Section */
.who-this-is-for {
    background: var(--dark);
}

.checkmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--dark-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.check-item:hover {
    transform: translateX(10px);
    background: rgba(108, 99, 255, 0.1);
}

.check-item i {
    font-size: 24px;
    color: var(--success);
    flex-shrink: 0;
}

.check-item p {
    font-size: 16px;
    color: var(--text);
    margin: 0;
}

/* About Host Section */
.about-host {
    background: var(--dark-light);
}

.host-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.host-image {
    text-align: center;
}

.image-placeholder {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    color: white;
    box-shadow: 0 20px 60px rgba(108, 99, 255, 0.4);
}

.host-photo {
    width: 250px;
    height: 250px;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(108, 99, 255, 0.4);
    border: 4px solid var(--primary);
    display: block;
}

.host-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    margin-bottom: 10px;
    color: var(--text);
}

.host-text h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 20px;
}

.host-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    text-align: center;
}

.final-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text);
}

.cta-subtext {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-action-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-action-row .date-badge.large {
    margin-bottom: 0;
}

.cta-action-row .cta-button.large {
    margin-bottom: 0;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-muted);
}

.trust-item i {
    font-size: 24px;
    color: var(--primary);
}

/* FAQ Section */
.faq {
    background: var(--dark-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--dark);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-question h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    color: var(--text);
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .main-headline {
        font-size: 36px;
    }

    .sub-headline {
        font-size: 18px;
    }

    .date-badge {
        font-size: 16px;
        padding: 12px 24px;
    }

    .date-badge.large {
        font-size: 18px;
        padding: 15px 30px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .bonus-container {
        padding: 40px 25px;
    }

    .bonus-icon {
        font-size: 60px;
    }

    .bonus-headline {
        font-size: 24px;
    }

    .bonus-title {
        font-size: 32px;
    }

    .bonus-value {
        font-size: 16px;
    }

    .bonus-description {
        padding: 20px;
    }

    .bonus-description p {
        font-size: 16px;
    }

    .bonus-urgency {
        flex-direction: column;
        padding: 15px 20px;
        text-align: center;
    }

    .bonus-cta {
        font-size: 16px;
        padding: 18px 30px;
    }

    .checkmarks-grid {
        grid-template-columns: 1fr;
    }

    .host-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 80px;
    }

    .host-photo {
        width: 200px;
        height: 200px;
    }

    .final-cta h2 {
        font-size: 32px;
    }

    .cta-subtext {
        font-size: 16px;
    }

    .cta-action-row {
        flex-direction: column;
        gap: 20px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 20px;
    }
}