:root {
    --bg-color: #2d2b26;
    --card-bg: #3a3832;
    --card-border: rgba(234, 179, 8, 0.15);
    --text-main: #fefce8;
    --text-muted: #d4d4d8;
    --accent-1: #eab308;
    --accent-2: #fef08a;
    --accent-gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    --button-hover: linear-gradient(135deg, #ca8a04, #fde047);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(11, 15, 25, 0.7);
    border-bottom: 1px solid var(--card-border);
    z-index: 100;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a:not(.cta-button) {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
}

.desktop-nav a:not(.cta-button):hover {
    color: var(--text-main);
}

.logo {
    font-size: 24px;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.cta-button {
    background: var(--accent-gradient);
    color: #2d2b26;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
    box-shadow: 0 4px 20px rgba(234, 179, 8, 0.4);
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(234, 179, 8, 0.6);
    background: var(--button-hover);
    color: #2d2b26;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
    animation: shake 0.3s ease-in-out 1.15s forwards;
}

.hero-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.4s forwards;
    text-align: left;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(234, 179, 8, 0.1) 0%, rgba(45, 43, 38, 0) 70%);
    z-index: 0;
}

.animation-layer {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.falling-coin {
    width: 160px;
    height: 160px;
    opacity: 0;
    animation: coinDrop 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.8));
    position: absolute;
    z-index: 6;
}

.shockwave {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 10px solid var(--accent-1);
    box-shadow: 0 0 50px var(--accent-1), inset 0 0 50px var(--accent-1);
    opacity: 0;
    transform: scale(0);
    animation: shockwave 1s ease-out 1.15s forwards;
    z-index: 4;
}

.particle {
    position: absolute;
    bottom: -100px;
    width: 20px;
    height: 20px;
    background: var(--accent-gradient);
    opacity: 0;
    animation: floatParticle 8s infinite linear;
    box-shadow: 0 0 15px rgba(234, 179, 8, 0.5);
    z-index: 3;
}

/* Animations */
@keyframes coinDrop {
    0% { transform: translateY(-200vh) rotateY(0deg) scale(2); opacity: 0; }
    10% { opacity: 1; }
    80% { transform: translateY(0) rotateY(720deg) scale(1.2); }
    100% { transform: translateY(0) rotateY(1080deg) scale(1); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0) translateY(0); }
    20%, 60% { transform: translateX(-15px) translateY(8px); }
    40%, 80% { transform: translateX(15px) translateY(-8px); }
}

@keyframes shockwave {
    0% { transform: scale(0.2); opacity: 1; border-width: 50px; }
    100% { transform: scale(5); opacity: 0; border-width: 0px; }
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes floatParticle {
    0% { transform: translateY(0) translateX(0) rotate(0deg); opacity: 0.1; }
    33% { transform: translateY(-300px) translateX(80px) rotate(120deg); opacity: 0.6; }
    66% { transform: translateY(-600px) translateX(-50px) rotate(240deg); opacity: 0.4; }
    100% { transform: translateY(-1000px) translateX(30px) rotate(360deg); opacity: 0; }
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero h1 span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 0 40px;
}

.hero-buttons {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.cta-button.secondary {
    background: transparent;
    border: 1px solid rgba(234, 179, 8, 0.4);
    box-shadow: none;
    color: var(--text-main);
}

.cta-button.secondary:hover {
    background: rgba(234, 179, 8, 0.1);
    border-color: var(--accent-2);
    color: var(--text-main);
}

/* Features */
.features {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
}

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

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px 30px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(234, 179, 8, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(234, 179, 8, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-1);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

/* Streaming & AI */
.streaming {
    padding: 80px 0;
    background: rgba(255,255,255,0.01);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.streaming-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.streaming-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    width: 160px;
    transition: transform 0.3s ease;
}

.streaming-card:hover {
    transform: scale(1.05);
    border-color: rgba(234, 179, 8, 0.4);
}

.streaming-card svg {
    height: 40px;
    margin-bottom: 12px;
    fill: var(--text-main);
}

.streaming-card span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}

/* Pricing */
.pricing {
    padding: 120px 0;
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card.popular {
    border-color: var(--accent-1);
    box-shadow: 0 0 40px rgba(234, 179, 8, 0.15);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: #2d2b26;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.price-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
}

.price-amount span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-muted);
}

.price-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.price-features li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    color: var(--text-main);
}

.price-features li svg {
    width: 20px;
    height: 20px;
    color: #10b981;
    margin-right: 12px;
}

.price-card .cta-button {
    width: 100%;
}

.price-card:not(.popular) .cta-button {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: none;
}

.price-card:not(.popular) .cta-button:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.4);
}

/* Reviews */
.reviews {
    padding: 80px 0;
    background: rgba(255,255,255,0.01);
}

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

.review-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--card-border);
}

.review-stars {
    color: #fbbf24;
    margin-bottom: 16px;
}

.review-text {
    font-size: 16px;
    margin-bottom: 24px;
    font-style: italic;
    color: var(--text-muted);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #2d2b26;
}

.author-info h4 {
    font-size: 14px;
}

.author-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* FAQ */
.faq {
    padding: 100px 0;
}

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

details {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

summary {
    padding: 24px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 400;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    transform: rotate(45deg);
}

.faq-content {
    padding: 0 24px 24px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Footer */
footer {
    background: rgba(11, 15, 25, 0.9);
    border-top: 1px solid var(--card-border);
    padding: 60px 0 30px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-nav a {
    color: var(--text-muted);
    font-size: 15px;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #fff;
}

.copyright {
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 14px;
}

/* Legal Pages Styling */
.legal-page {
    padding: 160px 0 100px;
}

.legal-content {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 24px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-content h2 {
    font-size: 24px;
    margin: 40px 0 20px;
    color: #fff;
}

.legal-content p, .legal-content li {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 16px;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-layout {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 36px;
        margin-bottom: 16px;
    }
    
    .hero p {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 10px;
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    .desktop-nav {
        display: none; /* Hide standard nav on mobile */
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero .cta-button {
        width: 100%;
        padding: 16px 20px !important;
        font-size: 18px;
        display: block;
    }

    .features, .streaming, .pricing, .reviews, .faq {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .features-grid, .pricing-table, .review-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .streaming-card {
        width: calc(50% - 10px);
        padding: 16px;
    }
    
    .streaming-logos {
        gap: 20px;
    }

    .cta-button {
        padding: 14px 24px;
        font-size: 16px;
        min-height: 48px; /* Touch target minimum */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    nav .cta-button {
        padding: 10px 20px;
        min-height: 40px;
        font-size: 14px;
    }

    .legal-page {
        padding: 100px 0 60px;
    }

    .legal-content {
        padding: 24px;
    }
    
    .legal-content h1 {
        font-size: 28px;
    }
    
    .legal-content h2 {
        font-size: 20px;
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    summary {
        font-size: 16px;
        padding: 16px;
    }
    
    .price-card {
        padding: 30px 24px;
    }
}
