/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h2 {
    color: #2563eb;
    font-weight: 700;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img,
.logo-img {
    height: 80px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2563eb;
}

.cta-nav {
    background: #2563eb;
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(rgba(102, 126, 234, 0.85), rgba(118, 75, 162, 0.85)), url('assets/pexels-alphatradezone-5833263.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #10b981;
    color: white;
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #25d366;
    color: white;
}

.btn-secondary:hover {
    background: #22c55e;
    transform: translateY(-2px);
}

.btn-tertiary {
    background: #8b5cf6;
    color: white;
}

.btn-tertiary:hover {
    background: #7c3aed;
    transform: translateY(-2px);
}

.btn:disabled,
.btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.btn:disabled:hover,
.btn[disabled]:hover {
    transform: none !important;
}

.quick-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 1.1rem;
}

.stat span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Trading Chart Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trading-chart {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.chart-header h3 {
    font-size: 1.2rem;
    margin: 0;
}

.status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.status.online .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.chart-content {
    position: relative;
    height: 120px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.chart-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #10b981, #3b82f6, #10b981);
    transform: translateY(-50%);
    animation: chartLine 3s ease-in-out infinite;
}

@keyframes chartLine {
    0%, 100% { transform: translateY(-50%) scaleY(1); }
    50% { transform: translateY(-60%) scaleY(1.5); }
}

.data-points {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.point {
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.point.buy {
    background: #10b981;
    color: white;
}

.point.sell {
    background: #ef4444;
    color: white;
}

.bot-stats {
    display: flex;
    justify-content: space-between;
}

.bot-stat {
    text-align: center;
}

.bot-stat .label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
}

.bot-stat .value {
    font-size: 1.2rem;
    font-weight: 600;
}

.bot-stat .value.positive {
    color: #10b981;
}

/* Why Course Section */
.why-course {
    padding: 80px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-header p {
    font-size: 1.2rem;
    color: #64748b;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.comparison-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comparison-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.before h3 i {
    color: #ef4444;
}

.after h3 i {
    color: #10b981;
}

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-card li:last-child {
    border-bottom: none;
}

/* Roadmap Section */
.roadmap {
    padding: 80px 0;
    background: white;
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.week-card {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.week-card:hover {
    border-color: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.week-number {
    position: absolute;
    top: -12px;
    left: 2rem;
    background: #2563eb;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.week-card h3 {
    margin: 1rem 0;
    color: #1e293b;
    font-size: 1.3rem;
}

.week-card p {
    color: #64748b;
    margin-bottom: 1rem;
}

.outcome {
    background: white;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

.outcome strong {
    color: #10b981;
}

/* Build Section */
.build-section {
    padding: 80px 0;
    background: #f8fafc;
}

.build-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.build-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.build-card:hover {
    transform: translateY(-4px);
}

.build-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.build-icon i {
    font-size: 2rem;
    color: white;
}

.build-card h3 {
    margin-bottom: 1rem;
    color: #1e293b;
}

.build-note {
    text-align: center;
    font-size: 1.2rem;
    color: #2563eb;
}

/* Instructor Section */
.instructor {
    padding: 80px 0;
    background: white;
}

.instructor-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.instructor-photo {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
}

.instructor-photo a {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.instructor-photo a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.instructor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.instructor-photo i {
    font-size: 4rem;
    color: white;
}

.instructor-info h2 {
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.instructor-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.instructor-titles {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.title {
    color: #64748b;
    font-weight: 500;
}

.credentials {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-weight: 500;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #475569;
}

.testimonial-author strong {
    color: #1e293b;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

.urgency-banner {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.urgency-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.urgency-text strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.countdown {
    display: flex;
    gap: 1rem;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 8px;
    min-width: 60px;
}

.countdown-item span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.countdown-item label {
    font-size: 0.8rem;
    opacity: 0.9;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #2563eb;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #64748b;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
}

.period {
    font-size: 1.2rem;
    color: #64748b;
}

.plan-validity {
    color: #64748b;
    font-size: 0.9rem;
}

.plan-features ul {
    list-style: none;
    margin-bottom: 2rem;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #475569;
}

.plan-features i {
    color: #10b981;
}

.plan-cta {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 1.25rem;
}

.enrollment-status {
    text-align: center;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.enrolled-count {
    display: block;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #2563eb);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.seats-left {
    color: #ef4444;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8fafc;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h3 {
    margin: 0;
    color: #1e293b;
}

.faq-question i {
    color: #2563eb;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #64748b;
    line-height: 1.6;
}

/* Disclaimer Section */
.disclaimer {
    padding: 60px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-top: 3px solid #f59e0b;
    border-bottom: 3px solid #f59e0b;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-icon {
    font-size: 3rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.disclaimer-content h2 {
    color: #92400e;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.disclaimer-text {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.disclaimer-text p {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.disclaimer-text p strong {
    color: #1f2937;
    font-weight: 600;
}

.disclaimer-factors {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.disclaimer-factors li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #4b5563;
    font-size: 0.95rem;
    border-bottom: 1px solid #e5e7eb;
}

.disclaimer-factors li:last-child {
    border-bottom: none;
}

.disclaimer-factors li i {
    color: #10b981;
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.disclaimer-warning {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
    padding: 1.25rem 1.5rem;
    margin-top: 2rem;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.disclaimer-warning i {
    color: #ef4444;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.disclaimer-warning-text {
    color: #7f1d1d;
    line-height: 1.8;
    flex: 1;
}

.disclaimer-warning-text strong {
    color: #991b1b;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand h3 {
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-contact {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    color: #2563eb;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .instructor-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .urgency-content {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        padding: 140px 0 60px;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .before-after {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        justify-content: center;
    }
    
    .countdown {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .final-cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .disclaimer {
        padding: 40px 0;
    }
    
    .disclaimer-icon {
        font-size: 2.5rem;
    }
    
    .disclaimer-content h2 {
        font-size: 1.75rem;
    }
    
    .disclaimer-text {
        padding: 1.5rem;
    }
    
    .disclaimer-warning {
        padding: 1rem;
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 150px 0 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .trust-badges {
        justify-content: center;
    }
    
    .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .plan-price .amount {
        font-size: 2.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .disclaimer-content h2 {
        font-size: 1.5rem;
    }
    
    .disclaimer-text {
        padding: 1.25rem;
        font-size: 0.9rem;
    }
    
    .disclaimer-factors li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }
    
    .disclaimer-warning {
        padding: 0.75rem 1rem;
        flex-direction: column;
        text-align: left;
    }
    
    .disclaimer-warning i {
        align-self: flex-start;
    }
}

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

.hero-content > * {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content > *:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-content > *:nth-child(3) {
    animation-delay: 0.4s;
}

/* Payment Status Overlay */
.payment-status-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.payment-status-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.payment-status-content i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.payment-status-content h2 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.payment-status-content p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.payment-status-details {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.payment-status-details p {
    margin: 0.5rem 0;
    color: #475569;
    font-size: 0.95rem;
}

#payment-status-button {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-30px); }
    60% { transform: translateY(-15px); }
}

.success-icon {
    color: #10b981;
    animation: bounce 1s;
}

.failure-icon {
    color: #ef4444;
    animation: bounce 1s;
}

/* Modal Responsive Styles */
@media (max-width: 768px) {
    .disclaimer-modal-content {
        max-width: 95% !important;
        width: 95% !important;
    }
    
    .disclaimer-modal-content > div:first-child {
        padding: 1.5rem !important;
    }
    
    .disclaimer-modal-content h2 {
        font-size: 1.25rem !important;
    }
    
    .disclaimer-modal-content i {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .disclaimer-modal-content {
        max-width: 98% !important;
        width: 98% !important;
    }
    
    .disclaimer-modal-content > div:last-child {
        padding: 1rem !important;
    }
    
    .disclaimer-modal-content ul li {
        font-size: 0.85rem !important;
    }
    
    .disclaimer-modal-content button {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .payment-status-content {
        padding: 2rem 1.5rem !important;
    }
    
    .payment-status-content h2 {
        font-size: 1.5rem !important;
    }
    
    .payment-status-content i {
        font-size: 3rem !important;
    }
}

/* Payment Status Responsive */
@media (max-width: 768px) {
    .payment-status-content {
        padding: 2rem 1.5rem;
    }
    
    .payment-status-content h2 {
        font-size: 1.75rem;
    }
    
    .payment-status-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .payment-status-content {
        padding: 1.5rem 1rem;
    }
    
    .payment-status-content h2 {
        font-size: 1.5rem;
    }
    
    .payment-status-content i {
        font-size: 2.5rem !important;
    }
    
    .payment-status-details {
        padding: 1rem !important;
    }
    
    .payment-status-details p {
        font-size: 0.85rem !important;
    }
}