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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #000;
    color: #e2e8f0;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

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

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a0033, #000033, #001a33, #1a0033);
    background-size: 400% 400%;
    animation: gradient 15s ease infinite;
    opacity: 0.5;
    z-index: -1;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hero Section */
.hero {
    background: #000;
    padding: 40px 20px;
    text-align: center;
    border-bottom: 2px solid #333;
}

.urgency-banner {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    color: #fff;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 40px;
    border-radius: 6px;
    text-align: center;
    letter-spacing: 0.5px;
}

.main-title {
    font-size: 3em;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.2em;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.highlight {
    color: #60a5fa;
    font-weight: 600;
}

.hero-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 40px 0;
}

.instructor-section {
    display: flex;
    align-items: center;
    gap: 30px;
    background: #0f172a;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #1e293b;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.instructor-photo {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    border: 2px solid #334155;
    object-fit: cover;
}

.instructor-credentials h2 {
    font-size: 1.8em;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.credentials-list {
    font-size: 1em;
    line-height: 1.8;
    text-align: left;
    color: #cbd5e1;
}

.price-box {
    background: #0f172a;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #1e293b;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    min-width: 400px;
}

.price-label {
    font-size: 0.9em;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.original-price {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #64748b;
}

.crossed {
    text-decoration: line-through;
    color: #64748b;
    font-size: 1.2em;
}

.special-price {
    font-size: 1.5em;
    margin: 15px 0;
}

.today-only {
    display: block;
    color: #94a3b8;
    font-size: 0.9em;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price {
    font-size: 2.5em;
    color: #60a5fa;
    display: block;
    font-weight: 700;
}

.savings {
    font-size: 1em;
    color: #10b981;
    margin: 15px 0;
}

.countdown {
    font-size: 0.95em;
    color: #cbd5e1;
    background: #1e293b;
    padding: 12px;
    border-radius: 6px;
    margin-top: 20px;
    border: 1px solid #334155;
}

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

.badge {
    background: #0f172a;
    color: #cbd5e1;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9em;
    border: 1px solid #1e293b;
}

/* Free Lessons Section */
.free-lessons {
    background: #0a0a0a;
    padding: 80px 20px;
    text-align: center;
    border-top: 2px solid #1e293b;
    border-bottom: 2px solid #1e293b;
}

.section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

.section-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #94a3b8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #94a3b8;
}

.email-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#email-input {
    padding: 18px;
    font-size: 1.1em;
    border: 2px solid #334155;
    border-radius: 8px;
    background: #1e293b;
    color: #fff;
}

#email-input::placeholder {
    color: #64748b;
}

.cta-button {
    padding: 16px 40px;
    font-size: 1.1em;
    font-weight: 600;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.rick-roll {
    margin-top: 50px;
    background: #1e293b;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #fbbf24;
}

.rick-roll.hidden {
    display: none;
}

.rick-roll h3 {
    font-size: 2em;
    color: #fbbf24;
    margin-bottom: 30px;
}

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

.video-container iframe {
    width: 100%;
    height: 450px;
    border: 2px solid #334155;
    border-radius: 8px;
}

.reveal-message {
    background: #0f172a;
    padding: 40px;
    border-radius: 12px;
    margin-top: 30px;
    border: 2px solid #334155;
}

.reveal-message h3 {
    font-size: 2em;
    color: #fbbf24;
    margin-bottom: 20px;
}

.reveal-message p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #cbd5e1;
}

.reveal-message a {
    color: #38bdf8;
    text-decoration: underline;
}

.reveal-message a:hover {
    color: #7dd3fc;
}

.real-opportunity {
    margin-top: 30px;
    font-size: 1.3em;
    color: #10b981;
}

.real-jobs-button {
    display: inline-block;
    margin-top: 20px;
    padding: 16px 32px;
    background: #10b981;
    color: #fff;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 8px;
    text-decoration: none;
    border: 2px solid #059669;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    transition: all 0.3s;
}

.real-jobs-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
    background: #059669;
}

/* Curriculum Section */
.curriculum {
    background: #000;
    padding: 80px 20px;
    border-top: 2px solid #1e293b;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.module {
    background: #0f172a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #1e293b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.module:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    border-color: #334155;
}

.module-number {
    background: #1e293b;
    color: #60a5fa;
    padding: 6px 14px;
    border-radius: 6px;
    display: inline-block;
    font-weight: 600;
    font-size: 0.85em;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.module h3 {
    font-size: 1.3em;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.module p {
    font-size: 1em;
    line-height: 1.6;
    color: #cbd5e1;
}

/* Testimonials Section */
.testimonials {
    background: #0a0a0a;
    padding: 80px 20px;
    border-top: 2px solid #1e293b;
}

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

.testimonial {
    background: #0f172a;
    color: #cbd5e1;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #1e293b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.testimonial:hover {
    border-color: #334155;
    transform: translateY(-2px);
}

.stars {
    color: #fbbf24;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.testimonial p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.author {
    font-weight: bold;
    color: #94a3b8;
    text-align: right;
}

/* Final CTA Section */
.final-cta {
    background: #000;
    padding: 80px 20px;
    text-align: center;
    border-top: 2px solid #1e293b;
}

.final-cta h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.urgency-text {
    font-size: 1.2em;
    color: #94a3b8;
    margin-bottom: 30px;
}

.final-price {
    font-size: 1.5em;
    margin: 30px 0;
}

.final-price .crossed {
    font-size: 1.2em;
    margin-right: 20px;
    color: #64748b;
}

.final-price .price {
    font-size: 2.5em;
    color: #60a5fa;
    font-weight: 700;
}

.mega-button {
    font-size: 1.2em;
    padding: 18px 48px;
    margin: 30px 0;
}

.guarantee {
    font-size: 0.95em;
    color: #64748b;
    margin-top: 20px;
}

/* Footer */
footer {
    background: #000;
    padding: 40px 20px;
    text-align: center;
}

footer p {
    margin: 10px 0;
    opacity: 0.8;
}

.disclaimer {
    font-size: 0.8em;
    color: #888;
}

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

    .hero-content {
        flex-direction: column;
    }

    .instructor-section {
        flex-direction: column;
        text-align: center;
    }

    .credentials-list {
        text-align: center;
    }

    .price-box {
        min-width: auto;
        width: 100%;
    }

    .section-title {
        font-size: 2em;
    }

    .modules-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
