/* ============================================================
   SteamLord — Sci-Fi Gaming Website
   Heavy gaming aesthetic: neon, glitch, particles, cyber grid
   ============================================================ */

/* ============================
   CSS Variables
   ============================ */
:root {
    /* Core Neon Colors */
    --neon-cyan: #247eed;
    --neon-blue: #1a6fd1;
    --neon-blue-light: #3d8be8;
    --neon-blue-dark: #0d4a8a;
    --neon-purple: #5ba3f5;
    /* Replaced purple with light cyan-blue */
    --neon-pink: #ff006e;

    /* Backgrounds */
    --bg-deep: #030811;
    --bg-primary: #050a15;
    --bg-secondary: #0a1628;
    --bg-card: rgba(10, 22, 40, 0.6);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #a0b4d0;
    --text-muted: #4a6080;

    /* Glass */
    --glass-bg: rgba(10, 25, 55, 0.5);
    --glass-border: rgba(36, 126, 237, 0.1);
    --glass-border-hover: rgba(36, 126, 237, 0.4);

    /* Gradients */
    --gradient-neon: linear-gradient(135deg, #247eed, #054084, #5ba3f5);
    --gradient-blue: linear-gradient(135deg, #1a6fd1, #3d8be8);
    --gradient-card: linear-gradient(135deg, rgba(36, 126, 237, 0.05), rgba(91, 163, 245, 0.05));

    /* Glows */
    --glow-cyan: 0 0 20px rgba(36, 126, 237, 0.3), 0 0 60px rgba(36, 126, 237, 0.1);
    --glow-blue: 0 0 20px rgba(26, 111, 209, 0.3), 0 0 60px rgba(26, 111, 209, 0.1);
    --glow-purple: 0 0 20px rgba(91, 163, 245, 0.3), 0 0 60px rgba(91, 163, 245, 0.1);

    /* Transitions */
    --trans-fast: 0.2s ease;
    --trans-med: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --trans-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
}

/* ============================
   Reset & Base
   ============================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.7;
    cursor: none;
    overflow-x: hidden;
    /* Prevent horizontal scroll from grid */
}

/* ============================
   Custom Cursor
   ============================ */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: #247eed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 0 10px rgba(36, 126, 237, 0.6);
}

.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(36, 126, 237, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.3s ease,
        background 0.3s ease,
        opacity 0.3s ease;
}

/* Hover on interactive elements */
.cursor-hover .cursor-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    box-shadow: 0 0 15px rgba(36, 126, 237, 0.8), 0 0 40px rgba(36, 126, 237, 0.3);
}

.cursor-hover .cursor-ring {
    width: 50px;
    height: 50px;
    border-color: rgba(36, 126, 237, 0.8);
    background: rgba(36, 126, 237, 0.06);
    box-shadow: 0 0 20px rgba(36, 126, 237, 0.15);
}

/* Click state */
.cursor-clicking .cursor-dot {
    width: 5px;
    height: 5px;
    background: #5ba3f5;
}

.cursor-clicking .cursor-ring {
    width: 28px;
    height: 28px;
    border-color: rgba(36, 126, 237, 1);
    border-width: 2.5px;
}

/* Text hover */
.cursor-text .cursor-dot {
    width: 3px;
    height: 20px;
    border-radius: 2px;
    background: rgba(36, 126, 237, 0.7);
    box-shadow: 0 0 8px rgba(36, 126, 237, 0.4);
}

.cursor-text .cursor-ring {
    width: 30px;
    height: 30px;
    border-color: rgba(36, 126, 237, 0.2);
}

/* Hidden on mobile / touch */
@media (pointer: coarse) {

    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }

    body {
        cursor: auto;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
    background: var(--neon-blue-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-blue);
}

/* ============================
   Background Layers
   ============================ */

/* Particle Canvas */
#particleCanvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Cyber Grid */
.cyber-grid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(36, 126, 237, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(36, 126, 237, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

/* Scanline Overlay */
.scanline-overlay {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 4px);
}

/* ============================
   Navigation
   ============================ */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0 40px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--trans-med);
    background: transparent;
    border-bottom: none;
}

.main-nav.scrolled {
    background: transparent;
    border-bottom: none;
    box-shadow: none;
}

.nav-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-brand {
    display: none;
}

.nav-links {
    display: flex;
    gap: 6px;
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding: 8px 18px;
    border-radius: 30px;
    transition: color 0.4s ease, text-shadow 0.4s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: radial-gradient(circle, rgba(36, 126, 237, 0.15) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #247eed, #5ba3f5, #247eed, transparent);
    box-shadow: 0 0 10px rgba(36, 126, 237, 0.6), 0 0 25px rgba(36, 126, 237, 0.2);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2px;
    transform-origin: center;
}

.nav-link:hover {
    color: var(--text-primary);
    text-shadow: 0 0 8px rgba(36, 126, 237, 0.3);
    transform: translateY(-1px);
}

.nav-link:hover::before {
    opacity: 0.5;
    transform: scale(1);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(0.6);
}

.nav-link.active {
    color: #247eed;
    text-shadow: 0 0 15px rgba(36, 126, 237, 0.6), 0 0 30px rgba(36, 126, 237, 0.2);
    animation: navLinkPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-link.active::before {
    opacity: 1;
    transform: scale(1.2);
    animation: navGlowPulse 2s ease-in-out infinite;
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

@keyframes navLinkPop {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }

    30% {
        transform: scale(1.15);
        filter: brightness(1.5);
    }

    60% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

@keyframes navGlowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 10001;
}

.mobile-menu-btn span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--trans-med);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================
   Sections & Container
   ============================ */
.section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    scroll-margin-top: 100px;
    /* Adjusts where anchor links jump to, accounting for the header */
    z-index: 2;
}

/* Scroll-Linked Reveal Animations */
.reveal-hidden {
    opacity: 0;
    transform: translateY(60px) scale(0.97);
    filter: blur(8px);
    transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
        transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, transform, filter;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* Section container (previously scrollable, now expands naturally) */
.section-scroll-wrap {
    width: 100%;
    height: auto;
}

/* ============================
   Dot Navigation (Section Indicator)
   ============================ */
.fp-dots {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: center;
}

.fp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(36, 126, 237, 0.15);
    border: 1.5px solid rgba(36, 126, 237, 0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.fp-dot::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.fp-dot:hover {
    background: rgba(36, 126, 237, 0.3);
    border-color: rgba(36, 126, 237, 0.6);
    transform: scale(1.3);
}

.fp-dot.active {
    width: 12px;
    height: 12px;
    background: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 12px var(--neon-cyan), 0 0 30px rgba(36, 126, 237, 0.3);
}

.fp-dot.active::before {
    border-color: rgba(36, 126, 237, 0.2);
    animation: dotRing 2s ease-in-out infinite;
}

@keyframes dotRing {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.fp-dot-tooltip {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(5, 10, 21, 0.95);
    border: 1px solid rgba(36, 126, 237, 0.2);
    color: var(--text-primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, right 0.3s ease;
}

.fp-dot:hover .fp-dot-tooltip {
    opacity: 1;
    right: 28px;
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(36, 126, 237, 0.08);
    border: 1px solid rgba(36, 126, 237, 0.2);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--neon-cyan);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(30px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.neon-text {
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(36, 126, 237, 0.3));
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================
   HERO Section
   ============================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}

/* Hero - before glow */
.hero-section::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(36, 126, 237, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
}

/* Logo with rings */
.hero-logo-wrap {
    position: relative;
    display: block;
    margin: 0 auto 30px;
    width: fit-content;
}

.hero-logo {
    width: 140px;
    height: auto;
    filter: drop-shadow(0 0 40px rgba(36, 126, 237, 0.6));
    animation: logoFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

.hero-logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 1px solid rgba(36, 126, 237, 0.2);
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite;
}

.hero-logo-ring.ring-2 {
    width: 260px;
    height: 260px;
    animation-delay: 0.5s;
    border-color: rgba(36, 126, 237, 0.1);
}

@keyframes ringPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0.1;
    }
}

/* Hero Title — Shimmer Glow */
.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(48px, 10vw, 90px);
    font-weight: 900;
    letter-spacing: 4px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg,
            #054084 0%,
            #247eed 25%,
            #5ba3f5 50%,
            #247eed 75%,
            #054084 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 4s ease-in-out infinite;
}

.hero-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    background: linear-gradient(90deg,
            #054084 0%,
            #247eed 25%,
            #5ba3f5 50%,
            #247eed 75%,
            #054084 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerText 4s ease-in-out infinite;
    filter: blur(18px);
    opacity: 0.4;
    z-index: -1;
    animation: shimmerText 4s ease-in-out infinite, glowPulse 3s ease-in-out infinite;
}

@keyframes shimmerText {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.3;
        filter: blur(18px);
    }

    50% {
        opacity: 0.6;
        filter: blur(25px);
    }
}

/* Typing subtitle */
.hero-subtitle {
    font-size: clamp(18px, 3vw, 26px);
    color: var(--neon-cyan);
    margin-bottom: 20px;
    min-height: 40px;
    font-weight: 600;
}

.typing-cursor {
    display: inline-block;
    animation: blink 0.7s step-end infinite;
    color: var(--neon-cyan);
    font-weight: 300;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.hero-description {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    border-radius: var(--radius-xl);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all var(--trans-med);
    position: relative;
    overflow: hidden;
}

.neon-btn {
    background: var(--gradient-blue);
    color: white;
    box-shadow: 0 0 20px rgba(36, 126, 237, 0.2), 0 8px 30px rgba(26, 111, 209, 0.3);
}

.neon-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 40px rgba(36, 126, 237, 0.4), 0 12px 40px rgba(26, 111, 209, 0.4);
}

.neon-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% {
        transform: translateX(-100%) translateY(-100%);
    }

    100% {
        transform: translateX(100%) translateY(100%);
    }
}

.neon-border-btn {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--glass-border-hover);
    backdrop-filter: blur(10px);
}

.neon-border-btn:hover {
    border-color: var(--neon-cyan);
    background: rgba(36, 126, 237, 0.05);
    box-shadow: var(--glow-cyan);
    transform: translateY(-4px);
}

/* Scroll Indicator */
.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(36, 126, 237, 0.3);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--neon-cyan);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.3;
    }
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* ============================
   FEATURES Section
   ============================ */
.features-group-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.neon-dot {
    width: 10px;
    height: 10px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
    display: inline-block;
}

.neon-dot.pulse {
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        box-shadow: 0 0 10px var(--neon-cyan), 0 0 20px var(--neon-cyan);
    }

    50% {
        box-shadow: 0 0 20px var(--neon-cyan), 0 0 40px var(--neon-cyan), 0 0 60px var(--neon-cyan);
    }
}

.coming-soon-title {
    margin-top: 60px;
}

/* Gold dot override for Coming Soon */
.coming-soon-title .neon-dot {
    background: #fcf6ba;
    /* Metallic gold base */
    box-shadow: 0 0 10px #fcf6ba, 0 0 20px rgba(191, 149, 63, 0.8);
}

.coming-soon-title .neon-dot.pulse {
    animation: goldDotPulse 2s ease-in-out infinite;
}

@keyframes goldDotPulse {

    0%,
    100% {
        box-shadow: 0 0 10px #fcf6ba, 0 0 20px rgba(191, 149, 63, 0.8);
    }

    50% {
        box-shadow: 0 0 20px #fcf6ba, 0 0 40px rgba(191, 149, 63, 0.8), 0 0 60px rgba(191, 149, 63, 0.6);
    }
}

/* Carousel Container */
/* Carousel Container */
.carousel-frame {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    /* Establish Stacking Context */
    padding: 20px 0;
    margin-bottom: 20px;
    background: linear-gradient(90deg, rgba(36, 126, 237, 0.12) 0%, rgba(36, 126, 237, 0.03) 50%, rgba(36, 126, 237, 0.12) 100%);
    box-shadow: inset 150px 0 150px -50px rgba(36, 126, 237, 0.15), inset -150px 0 150px -50px rgba(36, 126, 237, 0.15);
}

/* Glowing Portals (Entry/Exit) */
.carousel-frame::before,
.carousel-frame::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    /* Width of the soft fade mask */
    pointer-events: none;
    z-index: 10;
    /* Sit above the track */
}

.carousel-frame::before {
    left: 0;
    background: linear-gradient(90deg, rgba(8, 14, 25, 0.98) 0%, rgba(8, 14, 25, 0.6) 30%, transparent 100%);
}

.carousel-frame::after {
    right: 0;
    background: linear-gradient(-90deg, rgba(8, 14, 25, 0.98) 0%, rgba(8, 14, 25, 0.6) 30%, transparent 100%);
}

.carousel-track {
    display: flex;
    gap: 24px;
    width: max-content;
    position: relative;
    z-index: 3;
    /* Above the portals */
    /* CSS animation handled by JS for delay & curve */
}

/* Coming Soon specific portal styling */
.coming-soon-frame {
    background: linear-gradient(90deg, rgba(235, 192, 94, 0.12) 0%, rgba(235, 192, 94, 0.03) 50%, rgba(235, 192, 94, 0.12) 100%);
    box-shadow: inset 150px 0 150px -50px rgba(235, 192, 94, 0.15), inset -150px 0 150px -50px rgba(235, 192, 94, 0.15);
}

.coming-soon-frame::before {
    background: linear-gradient(90deg, rgba(18, 14, 8, 0.98) 0%, rgba(18, 14, 8, 0.6) 30%, transparent 100%);
}

.coming-soon-frame::after {
    background: linear-gradient(-90deg, rgba(18, 14, 8, 0.98) 0%, rgba(18, 14, 8, 0.6) 30%, transparent 100%);
}

.coming-soon-frame .carousel-track {
    flex-direction: row-reverse;
}

.feature-card {
    /* 3D perspective container */
    perspective: 1000px;
    width: 260px;
    /* Fixed width for slider items */
    min-height: 280px;
    z-index: 20;
    position: relative;
    transform-style: preserve-3d;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
    z-index: 21;
}

.feature-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-md);
    padding: 35px 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}


/* Define the BACK face */
.card-back {
    background: rgba(10, 25, 55, 0.95);
    border-color: var(--glass-border-hover);
    transform: rotateY(180deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(36, 126, 237, 0.1);
}

.feature-card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(36, 126, 237, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--trans-med);
}

.feature-card:hover .feature-card-glow {
    opacity: 1;
}

/* Removed feature-card hover translations because we are flipping now */

.feature-icon,
.feature-title {
    z-index: 2;
    transition: all 0.3s;
}

.feature-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(36, 126, 237, 0.15), rgba(26, 111, 209, 0.15));
    border: 1px solid rgba(36, 126, 237, 0.2);
    border-radius: 50%;
    font-size: 26px;
    color: var(--neon-cyan);
}

/* Removed icon/title slide up hover effects since it's on the front face */


.feature-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    z-index: 2;
}

/* Removed old absolute positioning text reveals because the text is now safely on the back */

/* Locked/Coming Soon cards (Pure Metallic Gold Theme) */
.feature-card.locked .card-front {
    border-color: rgba(191, 149, 63, 0.4);
    background-image: linear-gradient(135deg, rgba(235, 192, 94, 0.1) 0%, rgba(252, 246, 186, 0.2) 50%, rgba(191, 149, 63, 0.1) 100%), linear-gradient(rgba(15, 12, 5, 0.8), rgba(15, 12, 5, 0.8));
    background-size: 200% 200%, 100% 100%;
    animation: gradientMove 12s ease-in-out infinite, goldPulse 4s infinite alternate ease-in-out;
}

@keyframes goldPulse {
    0% {
        box-shadow: 0 0 0px rgba(252, 246, 186, 0);
        border-color: rgba(191, 149, 63, 0.2);
    }

    100% {
        box-shadow: 0 0 20px rgba(252, 246, 186, 0.15);
        border-color: rgba(191, 149, 63, 0.5);
    }
}

.feature-card.locked .card-back {
    background: rgba(15, 12, 5, 0.95);
    border-color: rgba(191, 149, 63, 0.6);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(191, 149, 63, 0.15);
}

.feature-card.locked:hover .card-front {
    /* Slightly intensify front animation when hovering, right before flip finishes */
    animation: gradientMove 6s ease-in-out infinite;
}

.feature-card.locked .feature-icon {
    background: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-color: rgba(252, 246, 186, 0.4);
}

.feature-card.locked:hover .feature-icon {
    box-shadow: 0 0 20px rgba(191, 149, 63, 0.4), 0 0 60px rgba(252, 246, 186, 0.2);
}

.locked-badge {
    position: relative;
    margin-top: 12px;
    font-size: 10px;
    font-weight: 700;
    color: #fcf6ba;
    background: rgba(191, 149, 63, 0.15);
    border: 1px solid rgba(252, 246, 186, 0.3);
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 0 10px rgba(191, 149, 63, 0.1);
    transition: all var(--trans-med);
    z-index: 3;
}

.feature-card.locked:hover .locked-badge {
    box-shadow: 0 0 20px rgba(252, 246, 186, 0.3);
    background: rgba(191, 149, 63, 0.25);
    border-color: rgba(252, 246, 186, 0.6);
}

/* ============================
   ROAD MAP Section (Strategic Radar)
   ============================ */
.strategic-radar {
    position: relative;
    width: 100%;
    min-height: 1100px;
    /* Expanded height to fit the entire Solar System without overlapping title */
    max-width: 1200px;
    margin: 80px auto 40px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

/* Central Core */
.radar-core {
    position: absolute;
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.core-inner {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.core-inner img {
    width: 75%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(36, 126, 237, 0.8));
    animation: coreSunPulse 3s infinite alternate ease-in-out;
}

@keyframes coreSunPulse {
    0% {
        transform: scale(1);
        filter: brightness(1) drop-shadow(0 0 10px rgba(36, 126, 237, 0.5));
    }

    100% {
        transform: scale(1.15);
        /* Changed from 0,255,255 to pure blue/white glow to drop the green tint */
        filter: brightness(1.3) drop-shadow(0 0 25px rgba(36, 126, 237, 0.9));
    }
}

.core-rings i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(36, 126, 237, 0.3);
    pointer-events: none;
}

.core-rings .ring-pulse {
    width: 250px;
    height: 250px;
    animation: sunFlareExpand 4s infinite linear;
}

.core-rings .ring-spin {
    display: none;
    /* Hide redundant extra tracks */
}

.core-rings .ring-dash {
    display: none;
    /* Hide redundant extra tracks */
}

@keyframes spinSlow {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes sunFlareExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 1;
        border-color: rgba(36, 126, 237, 0.8);
        box-shadow: inset 0 0 20px rgba(36, 126, 237, 0.5);
    }

    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
        border-color: rgba(0, 255, 255, 0.0);
        box-shadow: inset 0 0 0px transparent;
    }
}

/* Orbital Tracks (Solar System) */
.orbit-tracks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.orbit-track {
    position: absolute;
    box-sizing: border-box;
    /* Ensures the border matches exact radius */
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    z-index: 1;
    /* We handle node rotation in JS now, this just spins the track dashed line */
    animation: orbitSpin 120s linear infinite;
}

/* Base Theme For Completed/Progress Tracks */
.orbit-track.track-completed {
    border-color: rgba(36, 126, 237, 0.3);
    box-shadow: 0 0 15px rgba(36, 126, 237, 0.2), inset 0 0 15px rgba(36, 126, 237, 0.1);
}

.orbit-track.track-progress {
    border: 2px solid rgba(36, 126, 237, 0.5);
    /* Thicker and brighter border */
    box-shadow: 0 0 35px rgba(36, 126, 237, 0.5), inset 0 0 25px rgba(36, 126, 237, 0.3);
    /* Stronger glow */
}

.orbit-track.track-upcoming {
    border: 1px dashed rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

@keyframes orbitSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Planet Nodes (Solar System) */
.radar-node {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Start exactly at 50% / 50%, offset handled via JS transform */
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 70px;
    /* Increased from 50px */
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    /* Do NOT transition ALL to allow smooth JS requestAnimationFrame tracking */
    transition: opacity 0.4s ease, scale 0.4s ease;
    /* For fading in */
    opacity: 0;
    scale: 0.5;
}

/* Planet Atmosphere Rings (Removed as requested) */
.node-rings {
    display: none;
}

@keyframes planetPulse {
    from {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0.8;
    }

    to {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.4;
    }
}

@keyframes planetOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Core Planet Styling */
.node-icon {
    width: 70px;
    /* Scaled up from 50px */
    height: 70px;
    border-radius: 50%;
    background: rgba(8, 14, 25, 0.9);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(36, 126, 237, 0.4);
    box-shadow: 0 0 20px rgba(36, 126, 237, 0.4), inset 0 0 15px rgba(36, 126, 237, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

/* Mini Moon completely removed */
.node-icon::after {
    display: none;
}

.node-label {
    position: absolute;
    top: calc(100% + 15px);
    /* Hang exactly below the planet center */
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    transition: all var(--trans-fast);
    white-space: nowrap;
}

.radar-node:hover .node-icon {
    transform: scale(1.3);
    box-shadow: 0 0 30px rgba(36, 126, 237, 0.8), inset 0 0 20px rgba(36, 126, 237, 0.5);
    border-color: #fff;
    color: #fff;
}

.radar-node:hover .node-label {
    color: #fff;
    text-shadow: 0 0 15px rgba(36, 126, 237, 0.8);
    transform: scale(1.1);
}

/* Planet Status Styling */

/* In Progress Planet */
.radar-node.status-progress .node-icon {
    background: rgba(8, 14, 25, 0.9);
    border-color: rgba(255, 170, 0, 0.6);
    box-shadow: 0 0 25px rgba(255, 170, 0, 0.5), inset 0 0 15px rgba(255, 170, 0, 0.3);
    color: #ffaa00;
    /* Rich gold matching coming soon features */
}

.radar-node.status-progress .node-rings .n-ring-1 {
    background: radial-gradient(circle, rgba(255, 170, 0, 0.1) 0%, transparent 70%);
}

.radar-node.status-progress .node-rings .n-ring-2 {
    border-color: rgba(255, 170, 0, 0.3);
}

.radar-node.status-progress:hover .node-icon {
    border-color: #fff;
    box-shadow: 0 0 40px rgba(255, 170, 0, 0.9), inset 0 0 20px rgba(255, 170, 0, 0.6);
    color: #fff;
}

.radar-node.status-progress:hover .node-label {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 170, 0, 0.8);
    transform: scale(1.1);
}

/* Upcoming Planet (Dimmed) */
.radar-node.status-upcoming {
    opacity: 0.5 !important;
}

.radar-node.status-upcoming .node-icon {
    color: var(--text-muted);
    background: rgba(10, 15, 25, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.radar-node.status-upcoming .node-rings i {
    border-color: rgba(255, 255, 255, 0.05);
}

.radar-node.status-upcoming:hover {
    opacity: 1 !important;
}

.radar-node.status-upcoming:hover .node-icon {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* In Progress Planet */
.radar-node.status-progress .node-icon {
    background: rgba(36, 126, 237, 0.9);
    border-color: rgba(36, 126, 237, 0.6);
    box-shadow: 0 0 25px rgba(36, 126, 237, 0.5), inset 0 0 15px rgba(36, 126, 237, 0.3);
    color: #fff;
    /* White icon for better contrast on blue background */
}

.radar-node.status-progress .node-rings .n-ring-1 {
    background: radial-gradient(circle, rgba(36, 126, 237, 0.1) 0%, transparent 70%);
}

.radar-node.status-progress .node-rings .n-ring-2 {
    border-color: rgba(36, 126, 237, 0.3);
}

.radar-node.status-progress:hover .node-icon {
    border-color: #fff;
    box-shadow: 0 0 40px rgba(36, 126, 237, 0.9), inset 0 0 20px rgba(36, 126, 237, 0.6);
    color: #fff;
}

.radar-node.status-progress:hover .node-label {
    color: #fff;
    text-shadow: 0 0 15px rgba(36, 126, 237, 0.8);
    transform: scale(1.1);
}

.radar-tooltip {
    position: absolute;
    width: 360px;
    background: linear-gradient(135deg, rgba(8, 12, 25, 0.95), rgba(4, 6, 12, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--neon-cyan);
    /* Strong accent line */
    border-radius: 0 20px 0 20px;
    /* Techy opposing corners */
    padding: 25px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(36, 126, 237, 0.1),
        inset 0 0 20px rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(24px);
    z-index: 50;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -20px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Subtle astral noise overlay instead of grid */
.radar-tooltip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(36, 126, 237, 0.05) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
    border-radius: 0 20px 0 20px;
}

/* Tooltip connecting pointer (Removed as requested) */
.radar-tooltip::after {
    display: none;
}

.radar-tooltip.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -45px) scale(1);
    pointer-events: auto;
    /* Allow hovering to pause the orbit */
}

.tooltip-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.tooltip-close {
    position: absolute;
    top: -5px;
    right: -5px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--trans-fast);
    z-index: 10;
}

.tooltip-close:hover {
    background: rgba(255, 0, 110, 0.1);
    color: var(--neon-pink);
    border-color: var(--neon-pink);
    transform: rotate(90deg);
}

.tooltip-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--neon-cyan) 0%, transparent 100%);
    box-shadow: 0 0 10px var(--neon-cyan);
}

.tooltip-icon {
    width: 50px;
    height: 50px;
    border-radius: 0 10px 0 10px;
    /* Match tooltip style */
    background: rgba(36, 126, 237, 0.1);
    border: 1px solid rgba(36, 126, 237, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--neon-cyan);
    flex-shrink: 0;
    box-shadow: inset 0 0 20px rgba(36, 126, 237, 0.2);
}

.tooltip-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tooltip-title-wrap .status-tag {
    margin-bottom: 0;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 3px;
    display: inline-block;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 800;
}

.tag-completed {
    background: rgba(36, 126, 237, 0.2);
    color: #fff;
    border: 1px solid rgba(36, 126, 237, 0.5);
}

.tag-progress {
    background: rgba(36, 126, 237, 0.2);
    color: #fff;
    border: 1px solid rgba(36, 126, 237, 0.5);
}

.tag-upcoming {
    background: rgba(255, 255, 255, 0.05);
    color: #aaa;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#ttTitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.tooltip-body p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Tooltip Theme Overrides */
.radar-tooltip[data-theme="progress"] {
    border-color: rgba(36, 126, 237, 0.3);
    border-left-color: var(--brand-blue);
    /* Solid left border */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 40px rgba(36, 126, 237, 0.15);
}

/* Removed tooltip arrow override */

.radar-tooltip[data-theme="progress"] .tooltip-header {
    border-bottom-color: rgba(36, 126, 237, 0.2);
}

.radar-tooltip[data-theme="progress"] .tooltip-header::after {
    background: linear-gradient(90deg, var(--brand-blue) 0%, transparent 100%);
    box-shadow: 0 0 10px var(--brand-blue);
}

.radar-tooltip[data-theme="progress"] .tooltip-icon {
    background: rgba(36, 126, 237, 0.1);
    border-color: rgba(36, 126, 237, 0.4);
    color: var(--brand-blue);
    box-shadow: inset 0 0 20px rgba(36, 126, 237, 0.2);
}

.radar-tooltip[data-theme="upcoming"] {
    border-color: rgba(255, 255, 255, 0.1);
    border-left-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* Removed tooltip arrow override */

.radar-tooltip[data-theme="upcoming"] .tooltip-header::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.radar-tooltip[data-theme="upcoming"] .tooltip-icon {
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.05);
}

/* ==================================
   Mobile Responsiveness for Radar
   ================================== */
@media (max-width: 900px) {
    .strategic-radar {
        min-height: 600px;
    }

    .radar-core {
        width: 80px;
        height: 80px;
    }

    .core-inner {
        width: 60px;
        height: 60px;
    }

    .radar-tooltip {
        /* On small screens, fix the tooltip to bottom */
        position: fixed;
        bottom: 20px;
        left: 50% !important;
        top: auto !important;
        transform: translate(-50%, 100%) !important;
        width: 90%;
        max-width: 350px;
        z-index: 999;
    }

    .radar-tooltip.active {
        transform: translate(-50%, 0) !important;
    }

    .radar-tooltip::after {
        display: none;
    }
}

/* ============================
   SHOWCASE Section
   ============================ */
.showcase-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.showcase-block.reverse {
    direction: rtl;
}

.showcase-block.reverse>* {
    direction: ltr;
}

.showcase-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--neon-cyan);
    background: rgba(36, 126, 237, 0.08);
    border: 1px solid rgba(36, 126, 237, 0.2);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.showcase-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.showcase-title i {
    color: var(--neon-cyan);
    font-size: 22px;
}

.showcase-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.showcase-details {
    list-style: none;
}

.showcase-details li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.showcase-details li i {
    color: var(--neon-cyan);
    width: 20px;
    text-align: center;
    font-size: 13px;
}

/* Neon Frame */
.neon-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid rgba(36, 126, 237, 0.2);
    box-shadow: var(--glow-cyan);
    transition: all var(--trans-med);
}

.neon-frame::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-neon);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity var(--trans-med);
}

.showcase-block:hover .neon-frame {
    box-shadow: 0 0 30px rgba(36, 126, 237, 0.3), 0 0 60px rgba(36, 126, 237, 0.1);
}

.showcase-block:hover .neon-frame::before {
    opacity: 0.3;
}

.showcase-img {
    width: 100%;
    display: block;
    transition: transform var(--trans-slow);
}

.showcase-block:hover .showcase-img {
    transform: scale(1.05);
}

/* ============================
   DOWNLOAD Section
   ============================ */
.download-hero {
    max-width: 600px;
    margin: 0 auto;
}

.download-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all var(--trans-med);
}

.download-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 0 60px rgba(36, 126, 237, 0.1);
}

.download-card-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(36, 126, 237, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.download-icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.download-logo {
    width: 90px;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(36, 126, 237, 0.5));
    animation: logoFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.download-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 1px solid rgba(36, 126, 237, 0.2);
    border-radius: 50%;
    animation: ringPulse 3s ease-in-out infinite;
}

.download-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
}

.download-version {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.download-specs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.spec-item i {
    color: var(--neon-cyan);
    font-size: 16px;
}

/* Download Button */
.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 50px;
    background: var(--gradient-neon);
    color: white;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--trans-med);
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(36, 126, 237, 0.3), 0 10px 40px rgba(26, 111, 209, 0.3);
}

.download-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 0 50px rgba(36, 126, 237, 0.5), 0 15px 50px rgba(26, 111, 209, 0.4);
}

.download-btn .download-btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
    animation: btnShine 3s infinite;
}

.download-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 20px;
}

/* ============================
   PRICING Section
   ============================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1150px;
    /* Increased from 1000px to maintain wider card proportions */
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--glass-bg);
    background-image: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.05) 50%, transparent 80%);
    background-size: 200% 100%;
    background-position: -150% 0;
    background-repeat: no-repeat;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 30px 25px 25px;
    /* Reduced overall padding inside the card */
    position: relative;
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-image: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.25) 50%, transparent 80%);
    background-size: 200% 100%;
    background-position: -150% 0;
    transition: background-position 0.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    /* Above backgound, below content */
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(36, 126, 237, 0.7);
    /* Much tighter and smaller glow */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(36, 126, 237, 0.15);
}

.pricing-card:hover::before {
    opacity: 1;
    background-position: 150% 0;
}

/* Featured card modifiers removed to inherit base styling */

.pricing-featured-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-neon);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(36, 126, 237, 0.3);
}

/* Coming Soon plan modifiers removed to inherit base styling */

.pricing-coming-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(255, 170, 0, 0.9), rgba(251, 191, 36, 0.8));
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(255, 170, 0, 0.4);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 20px;
    /* Reduced margin */
}

.pricing-icon {
    font-size: 36px;
    color: var(--neon-cyan);
    margin-bottom: 12px;
}

.coming-soon-plan .pricing-icon {
    color: rgba(255, 170, 0, 0.9);
    filter: drop-shadow(0 0 10px rgba(255, 170, 0, 0.4));
}

.pricing-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    /* Slightly smaller */
    font-weight: 700;
    margin-bottom: 8px;
    /* Reduced margin */
}

.pricing-price {
    margin-bottom: 5px;
}

.price-amount {
    font-size: 38px;
    /* Reduced font size to save vertical space */
    font-weight: 800;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coming-soon-plan .price-amount {
    background: linear-gradient(135deg, rgba(36, 126, 237, 0.8), rgba(26, 111, 209, 0.5));
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 0 5px rgba(36, 126, 237, 0.3));
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
}

.pricing-card-body {
    flex: 1;
}

.pricing-features {
    list-style: none;
    margin-bottom: 25px;
    /* Added breathing room before button */
}



.pricing-features li {
    padding: 6px 0;
    /* Reduced vertical padding drastically */
    font-size: 13px;
    /* Slightly smaller font */
    display: flex;
    align-items: center;
    gap: 8px;
    /* Reduced gap */
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li.included {
    color: var(--text-secondary);
}

.pricing-features li.included i {
    color: var(--neon-cyan);
    font-size: 14px;
}

.pricing-features li.not-included {
    color: var(--text-muted);
}

.pricing-features li.not-included i {
    color: rgba(255, 0, 110, 0.5);
    font-size: 14px;
}

.pricing-features li.coming-feature {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.pricing-features li.coming-feature i {
    color: rgba(36, 126, 237, 0.4);
    font-size: 13px;
}

.feature-highlight {
    color: var(--neon-cyan);
    font-size: 12px;
    margin-left: 4px;
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

.pricing-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--trans-med);
    text-align: center;
    text-decoration: none;
}

.pricing-btn:hover {
    border-color: var(--neon-cyan);
    background: rgba(36, 126, 237, 0.05);
    box-shadow: var(--glow-cyan);
}

.featured-btn {
    background: var(--gradient-neon);
    border: none;
    box-shadow: 0 5px 20px rgba(36, 126, 237, 0.2);
}

.featured-btn:hover {
    box-shadow: 0 0 30px rgba(36, 126, 237, 0.4);
    transform: translateY(-2px);
}

.disabled-btn {
    opacity: 0.4;
    cursor: not-allowed;
    border-color: rgba(36, 126, 237, 0.3);
}

.disabled-btn:hover {
    background: transparent;
    border-color: rgba(36, 126, 237, 0.3);
    box-shadow: none;
}

/* Coming Soon Plan Blue Overrides */
.coming-soon-plan {
    background-color: rgba(36, 126, 237, 0.03);
    /* Subtle blue tint */
    border-color: rgba(36, 126, 237, 0.2);
}

.coming-soon-plan:hover {
    border-color: rgba(36, 126, 237, 0.7);
    box-shadow: 0 15px 30px rgba(36, 126, 237, 0.15);
    transform: translateY(-15px) scale(1.02);
}

.coming-soon-plan .pricing-features li.included i,
.coming-soon-plan .feature-highlight {
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.4));
}

.coming-soon-plan .pricing-features li.included {
    color: rgba(255, 255, 255, 0.9);
}

.coming-soon-plan .disabled-btn {
    border-color: rgba(36, 126, 237, 0.4);
    color: rgba(36, 126, 237, 0.8);
    background: rgba(36, 126, 237, 0.05);
}

.coming-soon-plan .disabled-btn:hover {
    border-color: rgba(36, 126, 237, 0.8);
    background: rgba(36, 126, 237, 0.1);
    box-shadow: 0 0 20px rgba(36, 126, 237, 0.2);
    color: var(--neon-cyan);
}

/* Free Plan Grayscale Overrides */
.free-plan {
    background-color: rgba(148, 163, 184, 0.03);
    /* Subtle slate tint */
    border-color: rgba(148, 163, 184, 0.2);
}

.free-plan:hover {
    border-color: rgba(148, 163, 184, 0.5);
    box-shadow: 0 15px 30px rgba(148, 163, 184, 0.1);
    transform: translateY(-15px) scale(1.02);
}

.free-plan .pricing-icon,
.free-plan .pricing-features li.included i,
.free-plan .feature-highlight {
    color: #94a3b8;
    filter: drop-shadow(0 0 5px rgba(148, 163, 184, 0.3));
}

.free-plan .price-amount {
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
}

.free-plan .pricing-btn:hover {
    border-color: #94a3b8;
    background: rgba(148, 163, 184, 0.05);
    box-shadow: 0 0 20px rgba(148, 163, 184, 0.2);
}

/* ============================
   HELP Section
   ============================ */

/* Discord Hero Card */
.discord-hero {
    max-width: 700px;
    margin: 0 auto 60px;
}

.discord-card {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.1), rgba(88, 101, 242, 0.02));
    border: 1px solid rgba(88, 101, 242, 0.3);
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all var(--trans-med);
}

.discord-card:hover {
    border-color: rgba(88, 101, 242, 0.6);
    box-shadow: 0 0 40px rgba(88, 101, 242, 0.2), 0 0 80px rgba(88, 101, 242, 0.05);
    transform: translateY(-5px);
}

.discord-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(88, 101, 242, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.discord-icon {
    font-size: 60px;
    color: #5865F2;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(88, 101, 242, 0.5));
    animation: discordBounce 3s ease-in-out infinite;
}

@keyframes discordBounce {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-10px) scale(1.05);
    }
}

.discord-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.discord-card p {
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #5865F2;
    color: white;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    text-decoration: none;
    transition: all var(--trans-med);
    box-shadow: 0 8px 30px rgba(88, 101, 242, 0.3);
}

.discord-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(88, 101, 242, 0.5);
    background: #4752c4;
}

/* Social Grid */
.social-section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.social-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all var(--trans-med);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.social-card i {
    font-size: 28px;
    transition: all var(--trans-med);
}

.social-card span {
    font-size: 13px;
    font-weight: 500;
}

.social-card:hover {
    transform: translateY(-6px);
}

.social-card.youtube:hover {
    border-color: #ff0000;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.2);
}

.social-card.youtube:hover i {
    color: #ff0000;
}

.social-card.tiktok:hover {
    border-color: #ff0050;
    box-shadow: 0 0 25px rgba(255, 0, 80, 0.2);
}

.social-card.tiktok:hover i {
    color: #ff0050;
}

.social-card.instagram:hover {
    border-color: #e1306c;
    box-shadow: 0 0 25px rgba(225, 48, 108, 0.2);
}

.social-card.instagram:hover i {
    color: #e1306c;
}

.social-card.twitter:hover {
    border-color: #1da1f2;
    box-shadow: 0 0 25px rgba(29, 161, 242, 0.2);
}

.social-card.twitter:hover i {
    color: #1da1f2;
}

.social-card.facebook:hover {
    border-color: #1877f2;
    box-shadow: 0 0 25px rgba(24, 119, 242, 0.2);
}

.social-card.facebook:hover i {
    color: #1877f2;
}

/* FAQ */
.faq-section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-item {
    border: none;
    border-radius: 0;
    margin-bottom: 8px;
    overflow: hidden;
    background: transparent;
    transition: all var(--trans-med);
    border-bottom: 1px solid rgba(36, 126, 237, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: rgba(36, 126, 237, 0.05);
}

.faq-item.active {
    background: rgba(36, 126, 237, 0.08);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    transition: all var(--trans-fast);
}

.faq-question:hover {
    color: var(--neon-cyan);
}

.faq-arrow {
    font-size: 12px;
    color: var(--text-muted);
    transition: transform var(--trans-med);
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--neon-cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--trans-med), padding var(--trans-med);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 20px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================
   FAQ Nav Link
   ============================ */
.nav-link.faq-nav-link {
    color: var(--text-primary);
    border: 1px solid rgba(36, 126, 237, 0.4);
    padding: 6px 18px;
    background: linear-gradient(90deg, rgba(36, 126, 237, 0.1), rgba(36, 126, 237, 0.05));
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
    /* Slight separation from main links */
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(36, 126, 237, 0.5);
    box-shadow: 0 0 10px rgba(36, 126, 237, 0.2) inset, 0 0 10px rgba(36, 126, 237, 0.2);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.nav-link.faq-nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(36, 126, 237, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    border-radius: 50%;
    z-index: -1;
}

.nav-link.faq-nav-link:hover {
    color: #fff;
    border-color: var(--neon-cyan);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 0 20px rgba(36, 126, 237, 0.5) inset, 0 0 25px rgba(36, 126, 237, 0.4);
}

.nav-link.faq-nav-link:hover::before {
    width: 200%;
    height: 200%;
}

.nav-link.faq-nav-link i {
    font-size: 15px;
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 5px rgba(36, 126, 237, 0.8));
    transition: transform 0.3s ease;
}

.nav-link.faq-nav-link:hover i {
    transform: rotate(15deg) scale(1.1);
}

/* Remove the default nav-link underline effect specifically for the FAQ button */
.nav-link.faq-nav-link::after {
    display: none;
}

/* ============================
   FAQ Slide-Out Panel
   ============================ */
.faq-panel-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 8, 17, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10005;
    opacity: 0;
    visibility: hidden;
    transition: all var(--trans-med);
}

.faq-panel-overlay.active {
    opacity: 1;
    visibility: visible;
}

.faq-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.95);
    width: 90%;
    max-width: 900px;
    height: 85vh;
    max-height: 800px;
    background: transparent;
    border: none;
    box-shadow: none;
    z-index: 10006;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease, visibility 0.4s ease;
}

.faq-panel.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.faq-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 2px solid rgba(36, 126, 237, 0.3);
    background: transparent;
}

.faq-panel-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-panel-title i {
    color: var(--neon-cyan);
    filter: drop-shadow(0 0 10px rgba(36, 126, 237, 0.5));
}

.faq-close-btn {
    background: transparent;
    border: 1px solid rgba(36, 126, 237, 0.3);
    color: var(--text-secondary);
    font-size: 20px;
    cursor: pointer;
    transition: all var(--trans-fast);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(36, 126, 237, 0.05);
}

.faq-close-btn:hover {
    color: var(--neon-pink);
    border-color: var(--neon-pink);
    background: rgba(255, 0, 110, 0.1);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.3);
}

.faq-panel-content {
    flex: 1;
    overflow-y: auto;
    padding: 40px;
}

.faq-panel-content::-webkit-scrollbar {
    width: 8px;
}

.faq-panel-content::-webkit-scrollbar-thumb {
    background: var(--neon-blue);
    border-radius: 10px;
}

.faq-panel-content::-webkit-scrollbar-thumb:hover {
    background: var(--neon-cyan);
}

.faq-panel-content::-webkit-scrollbar-track {
    background: rgba(36, 126, 237, 0.05);
    border-radius: 10px;
}

/* Modal Inner adjustments */
.faq-panel-content .faq-container {
    max-width: 100%;
    margin-bottom: 0;
}

.faq-panel-content .faq-question {
    font-size: 16px;
    padding: 25px 30px;
}

.faq-panel-content .faq-answer p {
    font-size: 15px;
    padding: 0 30px 25px;
}

/* Footer */
.site-footer {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo {
    width: 30px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(36, 126, 237, 0.4));
}

.footer-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--neon-cyan);
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================
   Scroll Animations
   ============================ */
[data-anim] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-anim="fade-right"] {
    transform: translateX(-50px);
}

[data-anim="fade-left"] {
    transform: translateX(50px);
}

[data-anim="zoom-in"] {
    transform: scale(0.85);
}

[data-anim].visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* ============================
   Responsive Design
   ============================ */
@media (max-width: 1150px) {
    .pricing-grid {
        max-width: 95%;
        /* Add a little padding on the sides for screens just under 1150px */
    }
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
        /* Fallback to 2 columns on tablet */
        max-width: 750px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .showcase-block {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .showcase-block.reverse {
        direction: ltr;
    }

    .social-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 90px 20px 40px;
    }

    .fp-dots {
        right: 10px;
        gap: 10px;
    }

    .fp-dot-tooltip {
        display: none;
    }

    .section-scroll-wrap {
        max-height: calc(100vh - 100px);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(5, 10, 21, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 0;
        transition: right var(--trans-med);
        border-left: 1px solid var(--glass-border);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links .nav-link {
        font-size: 16px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline {
        padding-left: 40px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-marker {
        left: -32px;
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .discord-card {
        padding: 35px 25px;
    }

    .download-card {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
        letter-spacing: 2px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .social-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-specs {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* ============================
   Anti-Copy Protections
   ============================ */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

img,
a {
    -webkit-user-drag: none;
}