/* ============================================================
   ElDoradoSniper v2 - Premium animated landing page
   ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #FFB800;
    --gold-light: #FFD24A;
    --gold-dark: #C68F00;
    --bg: #0a0a0f;
    --bg-2: #0f0f17;
    --bg-3: #161620;
    --text: #ffffff;
    --text-dim: #a8a8b3;
    --border: rgba(255, 255, 255, 0.08);
    --border-light: rgba(255, 184, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

/* ============================================================
   ANIMATED MESH BACKGROUND
   ============================================================ */
.mesh-bg {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    background: radial-gradient(ellipse at 20% 0%, #1a1a2e 0%, #0a0a0f 50%);
    contain: strict;
}

.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.32;
    will-change: transform;
    transform: translateZ(0);
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation: blob-float-1 25s ease-in-out infinite;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #6633ff 0%, transparent 70%);
    top: 50%;
    right: -10%;
    animation: blob-float-2 30s ease-in-out infinite;
    opacity: 0.2;
}

.blob-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
    bottom: -10%;
    left: 30%;
    animation: blob-float-3 22s ease-in-out infinite;
    opacity: 0.18;
}

@keyframes blob-float-1 {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(40px, 80px, 0) scale(1.05); }
}

@keyframes blob-float-2 {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(-60px, -40px, 0) scale(0.95); }
}

@keyframes blob-float-3 {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(50px, -60px, 0) scale(1.03); }
}

/* Subtle grain overlay (disabled by default - too costly) */
.grain {
    display: none;
}

/* ============================================================
   FLOATING PARTICLES
   ============================================================ */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    contain: strict;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 10px var(--gold);
    will-change: transform, opacity;
}

.particle:nth-child(1)  { left: 10%;  animation: particle-float 14s linear infinite;       animation-delay: 0s;   }
.particle:nth-child(2)  { left: 20%;  animation: particle-float 18s linear infinite;       animation-delay: -3s;  }
.particle:nth-child(3)  { left: 30%;  animation: particle-float 16s linear infinite;       animation-delay: -6s;  }
.particle:nth-child(4)  { left: 40%;  animation: particle-float 20s linear infinite;       animation-delay: -2s;  }
.particle:nth-child(5)  { left: 50%;  animation: particle-float 17s linear infinite;       animation-delay: -8s;  }
.particle:nth-child(6)  { left: 60%;  animation: particle-float 19s linear infinite;       animation-delay: -4s;  }
.particle:nth-child(7)  { left: 70%;  animation: particle-float 15s linear infinite;       animation-delay: -10s; }
.particle:nth-child(8)  { left: 80%;  animation: particle-float 21s linear infinite;       animation-delay: -1s;  }
.particle:nth-child(9)  { left: 90%;  animation: particle-float 16s linear infinite;       animation-delay: -7s;  }
.particle:nth-child(10) { left: 15%;  animation: particle-float 22s linear infinite;       animation-delay: -12s; }
.particle:nth-child(11) { left: 65%;  animation: particle-float 18s linear infinite;       animation-delay: -5s;  }
.particle:nth-child(12) { left: 85%;  animation: particle-float 14s linear infinite;       animation-delay: -9s;  }

@keyframes particle-float {
    0%   { transform: translate3d(0, 110vh, 0) scale(0.5); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translate3d(40px, -10vh, 0) scale(1.2); opacity: 0; }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    transform: scaleX(0);
    transform-origin: left;
    z-index: 1000;
    will-change: transform;
    box-shadow: 0 0 10px var(--gold);
}

/* ============================================================
   CURSOR GLOW
   ============================================================ */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    contain: layout style paint;
}

@media (max-width: 768px), (hover: none) {
    .cursor-glow { display: none; }
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s ease;
}

#navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 15, 0.85);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1;
    white-space: nowrap;
}

.logo-text {
    display: inline-flex;
    align-items: baseline;
}

.logo-icon {
    color: var(--gold);
    display: flex;
}

.gold-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: shimmer-gold 4s linear infinite;
}

@keyframes shimmer-gold {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: 0.3s;
}

.mobile-nav {
    display: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000;
}

.cta-btn.ghost {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    border: 1px solid var(--border);
}

.cta-btn.ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

.cta-btn.sm-btn {
    padding: 10px 22px;
    font-size: 0.9rem;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

.glow-btn {
    box-shadow: 0 4px 20px rgba(255, 184, 0, 0.3);
}

.glow-btn:hover {
    box-shadow: 0 8px 30px rgba(255, 184, 0, 0.5);
}

.full-width {
    width: 100%;
}

/* Magnetic shimmer effect on buttons */
.cta-btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.cta-btn.primary:hover::before {
    left: 100%;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
}

/* Initial body fade-in */
body {
    animation: body-fade-in 0.6s ease forwards;
}

@keyframes body-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hero title chars stagger entrance */
.hero-title .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: char-enter 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hero-title .word {
    opacity: 0;
    transform: translateY(40px);
    animation: char-enter 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.4s;
}

@keyframes char-enter {
    to { opacity: 1; transform: translateY(0); }
}

/* Stagger each char */
.hero-title .char:nth-child(1)  { animation-delay: 0.05s; }
.hero-title .char:nth-child(2)  { animation-delay: 0.10s; }
.hero-title .char:nth-child(3)  { animation-delay: 0.15s; }
.hero-title .char:nth-child(4)  { animation-delay: 0.20s; }
.hero-title .char:nth-child(5)  { animation-delay: 0.25s; }

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 184, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 184, 0, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold-light);
    margin-bottom: 32px;
    font-weight: 500;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.word {
    display: inline-block;
    margin-right: 0.2em;
}

.char {
    display: inline-block;
}

.shimmer {
    background: linear-gradient(
        100deg,
        var(--gold) 0%,
        var(--gold) 30%,
        #ffffff 50%,
        var(--gold) 70%,
        var(--gold) 100%
    );
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: text-shimmer 2.5s linear infinite;
    will-change: background-position;
}

@keyframes text-shimmer {
    0% { background-position: 250% 50%; }
    100% { background-position: -250% 50%; }
}

@media (prefers-reduced-motion: reduce) {
    .shimmer {
        animation: none;
        background: var(--gold);
        -webkit-background-clip: text;
        background-clip: text;
    }
    .blob-1, .blob-2, .blob-3, .orb { animation: none; }
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-dim);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.highlight {
    color: var(--gold);
    font-weight: 700;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.trust-bar {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    padding: 24px 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.trust-item strong {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    color: var(--gold);
    line-height: 1;
}

.trust-item span {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
}

.trust-item small {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 4px;
}

.trust-divider {
    width: 1px;
    height: 36px;
    background: var(--border);
}

/* Hero video */
.hero-video {
    width: 100%;
    max-width: 1000px;
    margin: 60px auto 0;
    padding: 0 24px;
}

.video-frame {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 30px 80px rgba(255, 184, 0, 0.15), 0 0 100px rgba(255, 184, 0, 0.1);
    aspect-ratio: 16 / 9;
    background: #000;
}

/* Animated border glow on video */
.video-frame::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, var(--gold), transparent 30%, transparent 70%, var(--gold));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: border-shimmer 4s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes border-shimmer {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 200%; }
}

.video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border-light);
    border-radius: 50px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
    padding: 24px 0;
    background: rgba(255, 184, 0, 0.03);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.marquee {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-track span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dim);
    letter-spacing: 0.1em;
    flex-shrink: 0;
}

.marquee-track span.dot {
    color: var(--gold);
}

@keyframes marquee-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.kicker {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.2em;
    margin-bottom: 16px;
    font-weight: 700;
    padding: 6px 14px;
    background: rgba(255, 184, 0, 0.08);
    border: 1px solid var(--border-light);
    border-radius: 50px;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-dim);
    font-size: 1.05rem;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 32px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    position: relative;
    overflow: hidden;
}

/* Light sweep effect on hover */
.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 184, 0, 0.08), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    pointer-events: none;
}

.feature-card:hover::after {
    left: 150%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
    background: rgba(255, 184, 0, 0.03);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.15) 0%, rgba(255, 184, 0, 0.05) 100%);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 1.4rem;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================================
   COMPARISON
   ============================================================ */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
}

.comp-card {
    padding: 40px 32px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    transition: transform 0.3s;
}

.comp-card.manual {
    opacity: 0.7;
}

.comp-card.sniper {
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.08) 0%, rgba(255, 184, 0, 0.02) 100%);
    border-color: var(--border-light);
    box-shadow: 0 0 60px rgba(255, 184, 0, 0.1);
}

.comp-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.comp-card.manual h3 {
    color: var(--text-dim);
}

.comp-card.sniper h3 {
    color: var(--gold);
}

.comp-card ul {
    list-style: none;
}

.comp-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--text-dim);
}

.comp-card.sniper li {
    color: var(--text);
}

.comp-card .fa-times {
    color: #ff5555;
}

.comp-card .fa-check {
    color: var(--gold);
}

.vs-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    background: rgba(255, 184, 0, 0.1);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    align-self: center;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    .vs-divider {
        margin: 0 auto;
    }
}

/* ============================================================
   REVIEWS
   ============================================================ */
/* ============================================================
   REVIEWS - Auto-scrolling marquee
   ============================================================ */
.reviews {
    overflow: hidden;
}

.reviews-marquee {
    overflow: hidden;
    width: 100%;
    margin-top: 24px;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.reviews-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: reviews-scroll 80s linear infinite;
    will-change: transform;
}

.reviews-track .review-card {
    flex: 0 0 360px;
    min-height: 220px;
}

@keyframes reviews-scroll {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.review-card {
    padding: 32px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: transform 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.review-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 24px;
    font-style: italic;
    flex: 1;
}

.reviewer {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.reviewer strong {
    color: var(--gold);
    font-weight: 600;
}

.reviewer small {
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* ============================================================
   PRICING
   ============================================================ */
.game-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.game-tab {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--text-dim);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.game-tab:hover {
    color: var(--gold-light);
    border-color: var(--border-light);
}

.game-tab.active {
    background: rgba(255, 184, 0, 0.1);
    color: var(--gold);
    border-color: var(--gold);
}

.payment-toggle {
    display: flex;
    justify-content: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 4px;
    width: fit-content;
    margin: 0 auto 48px;
}

.pay-btn {
    padding: 8px 20px;
    background: transparent;
    border: none;
    color: var(--text-dim);
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pay-btn.active {
    background: var(--gold);
    color: #000;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.pricing-grid.single {
    grid-template-columns: minmax(0, 480px);
    justify-content: center;
}

.custom-card .custom-icon {
    font-size: 2.4rem;
    color: var(--gold);
    text-align: center;
    margin: 12px 0 8px;
}

.pricing-grid.switching {
    opacity: 0;
    transform: translateY(10px);
}

.price-card.entering {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: card-enter 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes card-enter {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Game tab active flash */
.game-tab {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    color: var(--text-dim);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.game-tab.active {
    background: rgba(255, 184, 0, 0.1);
    color: var(--gold);
    border-color: var(--gold);
    transform: scale(1.05);
}

.game-tab.active::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.4) 0%, transparent 70%);
    animation: tab-flash 0.6s ease-out;
    pointer-events: none;
}

@keyframes tab-flash {
    0% { opacity: 1; transform: scale(0.5); }
    100% { opacity: 0; transform: scale(2); }
}

.price-card {
    position: relative;
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: transform 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-light);
}

.price-card.popular {
    border-color: var(--gold);
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.08) 0%, rgba(255, 184, 0, 0.02) 100%);
    box-shadow: 0 0 60px rgba(255, 184, 0, 0.15);
}

.price-card.best-value {
    border-color: rgba(76, 217, 100, 0.4);
    background: linear-gradient(135deg, rgba(76, 217, 100, 0.05) 0%, rgba(255, 184, 0, 0.02) 100%);
}

.popular-badge,
.bonus-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.popular-badge {
    background: var(--gold);
    color: #000;
}

.bonus-badge {
    background: linear-gradient(135deg, #4cd964 0%, #2ea44f 100%);
    color: #fff;
    box-shadow: 0 0 20px rgba(76, 217, 100, 0.4);
}

.price-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.plan-name {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.price-old {
    font-size: 1.4rem;
    color: var(--text-dim);
    text-decoration: line-through;
}

.price-now {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--gold);
}

.price-period {
    color: var(--text-dim);
    font-size: 0.9rem;
}

.price-tagline {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-top: 12px;
    line-height: 1.4;
}

.price-features {
    list-style: none;
    margin-bottom: 28px;
    flex: 1;
}

.price-features li {
    padding: 10px 0;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.price-features .fa-check {
    color: var(--gold);
}

/* ============================================================
   COMMUNITY
   ============================================================ */
.community-card {
    position: relative;
    padding: 64px 48px;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.06) 0%, rgba(102, 51, 255, 0.04) 100%);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    overflow: hidden;
    text-align: center;
}

.community-content {
    position: relative;
    z-index: 1;
}

.community-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 16px 0;
}

.community-card p {
    color: var(--text-dim);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.community-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.35;
    will-change: transform;
}

.orb-1 {
    width: 180px;
    height: 180px;
    background: var(--gold);
    top: -50px;
    left: -50px;
    animation: orb-float 20s ease-in-out infinite;
}

.orb-2 {
    width: 130px;
    height: 130px;
    background: #6633ff;
    bottom: -30px;
    right: 10%;
    animation: orb-float 24s ease-in-out infinite reverse;
}

.orb-3 {
    width: 100px;
    height: 100px;
    background: var(--gold-light);
    top: 30%;
    right: 5%;
    animation: orb-float 26s ease-in-out infinite;
}

@keyframes orb-float {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(20px, -15px, 0) scale(1.05); }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item:hover {
    border-color: var(--border-light);
}

.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item[open] summary {
    color: var(--gold);
}

.faq-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item .faq-content p {
    padding: 0 24px 20px;
    color: var(--text-dim);
    line-height: 1.6;
    margin: 0;
}

.faq-item .faq-content p + p {
    padding-top: 8px;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta-card {
    padding: 64px 48px;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.08) 0%, rgba(255, 184, 0, 0.02) 100%);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 0 100px rgba(255, 184, 0, 0.1);
}

.final-cta-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.final-cta-card p {
    color: var(--text-dim);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.final-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   PAYMENT METHODS
   ============================================================ */
.payment-methods {
    padding: 60px 0;
}

.payment-methods-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 20px;
    text-align: center;
}

.payment-title {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-weight: 600;
}

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    align-items: center;
}

.pay-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    cursor: default;
}

.pay-pill i {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
}

.pay-pill i.fa-cc-visa {
    font-size: 2rem;
    width: 2.6rem;
    text-align: center;
}

.pay-pill i.fab.fa-apple-pay,
.pay-pill i.fab.fa-google-pay {
    font-size: 2rem;
    width: 2.4rem;
    text-align: center;
}

.pay-pill svg {
    flex-shrink: 0;
    display: block;
}

.pay-pill svg {
    flex-shrink: 0;
}

.pay-pill:hover {
    transform: translateY(-2px);
    border-color: var(--border-light);
    background: rgba(255, 184, 0, 0.05);
}

@media (max-width: 768px) {
    .payment-logos {
        gap: 8px;
    }
    .pay-pill {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
    .pay-pill i {
        font-size: 1.3rem;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.4);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 1.4rem;
}

.footer-logo p {
    margin-top: 8px;
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-dim);
    font-size: 0.85rem;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   3D TILT CARDS
   ============================================================ */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.2s ease;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
    .nav-container .cta-btn { display: none; }
    .mobile-nav.active { display: block; }
    section { padding: 60px 0; }
    .hero { padding: 100px 0 60px; }
    .trust-bar {
        gap: 16px;
        padding: 16px 20px;
    }
    .trust-divider { display: none; }
    .pricing-grid { gap: 32px; }
    .footer-content { flex-direction: column; }
}
