:root {
    --bg-dark: #050810;
    --bg-card: #080d1a;
    --gold-bright: #f0c243;
    --gold-mid: #d4a832;
    --gold-dark: #8a6208;
    --blue-glow: #00c8ff;
    --blue-mid: #0077cc;
    --blue-deep: #002266;
    --cyan-soft: #7ee8fa;
    --text-light: #e8edf5;
    --text-muted: #7a8fa8;
    --text-dim: #3d5068;
    --border-glow: rgba(0, 200, 255, 0.25);
    --border-gold: rgba(240, 194, 67, 0.4);
    --shadow-blue: 0 0 30px rgba(0, 191, 255, 0.15);
    --shadow-gold: 0 0 30px rgba(240, 194, 67, 0.15);
    --radius: 6px;
    --transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    position: relative;
    letter-spacing: 0.02em;
}

.bg-grid {
    position: fixed;
    inset: 0;
    z-index: -3;
    background-color: var(--bg-dark);
    background-image:
        linear-gradient(rgba(0, 200, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.bg-vignette {
    position: fixed;
    inset: 0;
    z-index: -2;
    background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(0, 40, 100, 0.18) 0%, transparent 60%),
                radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0, 10, 30, 0.8) 0%, transparent 70%);
    pointer-events: none;
}

.bg-scanlines {
    position: fixed;
    inset: 0;
    z-index: -1;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.07) 2px,
        rgba(0, 0, 0, 0.07) 4px
    );
    pointer-events: none;
}

.lightning-flash-overlay {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    background: radial-gradient(circle at 50% 35%, rgba(0, 191, 255, 0.06) 0%, transparent 70%);
    animation: layoutSurge 7s ease-in-out infinite;
}

@keyframes layoutSurge {
    0%, 60%, 68%, 73%, 100% {
        opacity: 1;
        background: radial-gradient(circle at 50% 35%, rgba(0, 191, 255, 0.06) 0%, transparent 70%);
    }
    63% {
        background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.12) 0%, rgba(0, 191, 255, 0.1) 50%, transparent 80%);
    }
    65% { background: transparent; }
    70% {
        background: radial-gradient(circle at 70% 40%, rgba(255,255,255,0.35) 0%, rgba(0, 191, 255, 0.22) 40%, rgba(0,51,170,0.1) 80%);
    }
    72% {
        background: radial-gradient(circle at 50% 35%, rgba(255,255,255,0.18) 0%, rgba(0,191,255,0.08) 60%, transparent 90%);
    }
}

.particles-field {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--blue-glow);
    animation: particleDrift linear infinite;
    box-shadow: 0 0 4px rgba(0, 200, 255, 0.6);
}

@keyframes particleDrift {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 0.5; }
    100% { transform: translateY(-120vh) translateX(30px); opacity: 0; }
}

.text-gold {
    color: var(--gold-bright);
    text-shadow: 0 0 20px rgba(240, 194, 67, 0.4), 0 0 40px rgba(240, 194, 67, 0.15);
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 55px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
}

.section-eyebrow {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.72rem;
    color: var(--blue-glow);
    letter-spacing: 6px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 16px;
    opacity: 0.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.card-corner, .slider-corner, .cta-corner {
    position: absolute;
    width: 14px;
    height: 14px;
    pointer-events: none;
    z-index: 5;
}
.card-corner.tl, .slider-corner.tl, .cta-corner.tl { top: -1px; left: -1px; border-top: 2px solid var(--gold-bright); border-left: 2px solid var(--gold-bright); }
.card-corner.tr, .slider-corner.tr, .cta-corner.tr { top: -1px; right: -1px; border-top: 2px solid var(--gold-bright); border-right: 2px solid var(--gold-bright); }
.card-corner.bl, .slider-corner.bl, .cta-corner.bl { bottom: -1px; left: -1px; border-bottom: 2px solid var(--gold-bright); border-left: 2px solid var(--gold-bright); }
.card-corner.br, .slider-corner.br, .cta-corner.br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--gold-bright); border-right: 2px solid var(--gold-bright); }

.lightning-pulse {
    animation: assetStrike 7s linear infinite;
    filter: drop-shadow(0 0 12px rgba(0, 191, 255, 0.5));
}

@keyframes assetStrike {
    0%, 60%, 68%, 73%, 100% {
        filter: drop-shadow(0 0 12px rgba(0, 191, 255, 0.5)) brightness(1);
    }
    63% { filter: drop-shadow(0 0 18px rgba(255,255,255,0.7)) brightness(1.15); }
    65% { filter: drop-shadow(0 0 4px rgba(0,191,255,0.2)) brightness(0.92); }
    70% { filter: drop-shadow(0 0 35px rgba(255,255,255,1)) drop-shadow(0 0 55px rgba(0,191,255,0.9)) brightness(1.9); }
    72% { filter: drop-shadow(0 0 18px rgba(0,191,255,0.75)) brightness(1.3); }
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    background: rgba(5, 8, 16, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

header.scrolled {
    background: rgba(5, 8, 16, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.header-border-bottom {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold-dark) 20%, var(--gold-bright) 50%, var(--gold-dark) 80%, transparent 100%);
    opacity: 0.6;
}

.logo-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.nav-logo {
    height: 52px;
    transition: filter var(--transition);
}

.logo-underline {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, var(--gold-bright), transparent);
    opacity: 0.5;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    position: relative;
    transition: color 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.nav-num {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.6rem;
    color: var(--text-dim);
    letter-spacing: 1px;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold-bright);
    box-shadow: 0 0 8px var(--gold-bright);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-bright);
}

.nav-link:hover .nav-num,
.nav-link.active .nav-num {
    color: var(--gold-mid);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.header-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    color: #ff0000;
    letter-spacing: 2px;
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff0000;
    box-shadow: 0 0 8px #ff0000, 0 0 16px rgba(255, 0, 0, 0.4);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 8px #ff0000, 0 0 16px rgba(255, 0, 0, 0); }
    50% { box-shadow: 0 0 4px #ff0000, 0 0 8px rgba(255, 0, 0, 0); }
}

.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 100, 200, 0.12) 0%, rgba(0, 50, 120, 0.06) 40%, transparent 70%);
    pointer-events: none;
    animation: heroPulse 5s ease-in-out infinite;
}

@keyframes heroPulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 1; }
    50% { transform: translateX(-50%) scale(1.05); opacity: 0.7; }
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(0,200,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,200,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 0%, transparent 80%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: var(--blue-glow);
    border: 1px solid rgba(0, 200, 255, 0.3);
    padding: 7px 20px;
    border-radius: 2px;
    margin-bottom: 32px;
    background: rgba(0, 200, 255, 0.05);
    animation: fadeInDown 0.8s ease both;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-logo {
    max-width: 280px;
    margin-bottom: 28px;
    animation: fadeInScale 0.9s ease 0.2s both;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.hero-subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.7rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
    font-weight: 700;
    line-height: 1.3;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-description {
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.7;
    font-size: 1.05rem;
    max-width: 580px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease 0.45s both;
}

.hero-divider span {
    display: block;
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--gold-dark));
}

.hero-divider span:last-child {
    background: linear-gradient(90deg, var(--gold-dark), transparent);
}

.hero-divider .diamond {
    width: auto;
    color: var(--gold-bright);
    font-size: 0.7rem;
    background: none;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    overflow: hidden;
    border-radius: var(--radius);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-primary .btn-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--blue-glow) 0%, var(--blue-mid) 50%, var(--blue-deep) 100%);
    transition: opacity 0.3s ease;
    z-index: 0;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fff 0%, var(--blue-glow) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.btn-primary:hover::before { opacity: 0.15; }

.btn-primary .btn-content {
    position: relative;
    z-index: 2;
    padding: 14px 32px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: inherit;
}

.btn-icon-left {
    font-size: 0.85rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 191, 255, 0.5), 0 0 15px rgba(0, 191, 255, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    border-radius: var(--radius);
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-light);
    border: 1px solid var(--border-glow);
    background: rgba(0, 200, 255, 0.04);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    border-color: var(--gold-bright);
    color: var(--gold-bright);
    background: rgba(240, 194, 67, 0.06);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(240, 194, 67, 0.15);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    font-family: 'Rajdhani', sans-serif;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Share Tech Mono', monospace;
}

.stat-divider {
    color: var(--text-dim);
    font-size: 1.4rem;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 4px;
    color: var(--text-dim);
    animation: scrollFade 2s ease-in-out infinite;
}

@keyframes scrollFade {
    0%, 100% { opacity: 0.3; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.7; transform: translateX(-50%) translateY(5px); }
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--blue-glow), transparent);
}

.trailer-section {
    padding: 100px 5%;
    background: rgba(5, 8, 16, 0.98);
    position: relative;
    overflow: hidden;
}

.trailer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 194, 67, 0.3), transparent);
}

.trailer-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(0, 200, 255, 0.2);
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(0, 20, 50, 0.4);
    box-shadow: 0 0 40px rgba(0, 200, 255, 0.1), inset 0 0 30px rgba(0, 0, 0, 0.3);
    transition: box-shadow var(--transition), border-color var(--transition);
}

.trailer-wrapper:hover {
    border-color: rgba(0, 200, 255, 0.4);
    box-shadow: 0 0 50px rgba(0, 200, 255, 0.2), inset 0 0 30px rgba(0, 0, 0, 0.3);
}

.trailer-wrapper .video-placeholder {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.trailer-wrapper .video-placeholder iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
    object-fit: cover;
}

.features {
    padding: 100px 5%;
    background: rgba(5, 8, 16, 0.98);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,200,255,0.3), transparent);
}

.features-image-grid {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-banner-card {
    flex: 1;
    min-width: 290px;
    max-width: 380px;
    background: var(--bg-card);
    border: 1px solid rgba(0, 200, 255, 0.12);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 200, 255, 0.06), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-banner-card:hover .card-glow {
    opacity: 1;
}

.feature-banner-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform var(--transition);
}

.feature-banner-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6), 0 0 20px rgba(240, 194, 67, 0.1);
}

.feature-banner-card:hover .feature-banner-img {
    transform: scale(1.02);
}

.maps-section {
    padding: 100px 5%;
    background: rgba(4, 6, 12, 0.97);
    position: relative;
}

.guides-section {
    background: rgba(5, 8, 16, 0.99);
}

.maps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(240, 194, 67, 0.2), transparent);
}

.slider-wrapper {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    background: #02040a;
    border: 1px solid rgba(240, 194, 67, 0.25);
    box-shadow: 0 0 50px rgba(0,0,0,0.8), var(--shadow-gold);
}

.slides-container {
    display: flex;
    height: 480px;
    width: 100%;
    overflow: hidden;
    scroll-behavior: smooth;
}

.slide-item {
    min-width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #01020a;
    padding: 12px;
    position: relative;
}

.slide-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.slide-item:hover img {
    transform: scale(1.01);
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(5, 8, 16, 0.85);
    border: 1px solid rgba(240, 194, 67, 0.5);
    color: var(--gold-bright);
    font-size: 2rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border-radius: 4px;
    user-select: none;
    transition: all 0.25s ease;
    backdrop-filter: blur(8px);
}

.slide-arrow span {
    line-height: 1;
    display: block;
    margin-top: -2px;
}

.slide-arrow:hover {
    background: var(--gold-bright);
    border-color: var(--gold-bright);
    color: #000;
    box-shadow: 0 0 20px rgba(240, 194, 67, 0.4);
    transform: translateY(-50%) scale(1.05);
}

#slide-arrow-prev, #guide-arrow-prev { left: 14px; }
#slide-arrow-next, #guide-arrow-next { right: 14px; }

.slider-footer {
    background: linear-gradient(to right, #040710, #06090f, #040710);
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 14px 20px 18px;
}

.slider-progress {
    height: 2px;
    background: rgba(255,255,255,0.06);
    border-radius: 2px;
    margin-bottom: 12px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-bright));
    border-radius: 2px;
    width: 11.11%;
    transition: width 0.5s ease;
    box-shadow: 0 0 6px rgba(240, 194, 67, 0.5);
}

.map-caption {
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.map-caption .text-gold {
    font-size: 1rem;
    letter-spacing: 2px;
}

.cta-section {
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 200, 255, 0.2), transparent);
}

.socials-section::before {
    background: linear-gradient(90deg, transparent, rgba(240, 194, 67, 0.2), transparent);
}

.cta-card {
    position: relative;
    background: linear-gradient(135deg, #0a1225 0%, #060910 100%);
    border: 1px solid rgba(240, 194, 67, 0.2);
    padding: 48px 50px;
    border-radius: 8px;
    text-align: center;
    max-width: 580px;
    width: 100%;
    box-shadow: 0 0 60px rgba(0,0,0,0.7), var(--shadow-gold);
}

.cta-card-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 100, 200, 0.08), transparent 70%);
    border-radius: inherit;
    pointer-events: none;
}

.socials-bg {
    background: radial-gradient(circle at 50% 0%, rgba(240, 194, 67, 0.05), transparent 70%) !important;
}

.cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.9rem;
    margin-bottom: 12px;
    letter-spacing: 2px;
    font-weight: 700;
}

.cta-sub {
    color: var(--text-muted);
    margin-bottom: 28px;
    font-size: 1rem;
}

.status-online {
    color: #ff0000;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff0000;
    box-shadow: 0 0 8px #ff0000;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.download-grid-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.download-link-card {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(10, 18, 35, 0.9), rgba(4, 7, 14, 0.9));
    border: 1px solid rgba(0, 200, 255, 0.15);
    padding: 14px 18px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.download-link-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--blue-glow);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.download-link-card:hover::before {
    opacity: 1;
}

.social-card::before {
    background: var(--gold-bright) !important;
}

.dl-badge-wrapper {
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 18px;
    flex-shrink: 0;
    background: rgba(0, 200, 255, 0.07);
    border-radius: 6px;
    border: 1px solid rgba(0, 200, 255, 0.1);
    transition: all 0.3s ease;
}

.social-card .dl-badge-wrapper {
    background: rgba(240, 194, 67, 0.07);
    border-color: rgba(240, 194, 67, 0.1);
}

.dl-platform-icon {
    max-width: 26px;
    max-height: 26px;
    object-fit: contain;
    border-radius: 3px;
}

.dl-meta-strings {
    text-align: left;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.download-link-card strong {
    font-family: 'Orbitron', sans-serif;
    color: var(--gold-bright);
    font-size: 0.88rem;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
    font-weight: 600;
}

.download-link-card span {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 3px;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.5px;
}

.dl-arrow {
    color: var(--text-dim);
    font-size: 1.2rem;
    margin-left: 12px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.download-link-card:hover {
    border-color: rgba(0, 200, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.1), inset 0 0 20px rgba(0, 200, 255, 0.03);
    transform: translateX(5px);
}

.social-card:hover {
    border-color: rgba(240, 194, 67, 0.4);
    box-shadow: 0 0 20px rgba(240, 194, 67, 0.1), inset 0 0 20px rgba(240, 194, 67, 0.03);
}

.download-link-card:hover .dl-arrow {
    color: var(--blue-glow);
    transform: translateX(4px);
}

.social-card:hover .dl-arrow {
    color: var(--gold-bright);
}

.download-link-card:hover strong { color: #fff; }

.download-link-card:hover .dl-badge-wrapper {
    background: rgba(0, 200, 255, 0.12);
    border-color: rgba(0, 200, 255, 0.3);
}

.social-card:hover .dl-badge-wrapper {
    background: rgba(240, 194, 67, 0.12);
    border-color: rgba(240, 194, 67, 0.3);
}

.view-counter-panel {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    background: rgba(8, 13, 26, 0.92);
    border: 1px solid rgba(0, 255, 204, 0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(0, 255, 204, 0.08);
    border-radius: 8px;
    padding: 11px 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    backdrop-filter: blur(12px);
    font-family: 'Share Tech Mono', monospace;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.view-counter-panel:hover {
    border-color: rgba(0, 255, 204, 0.55);
    box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 28px rgba(0, 255, 204, 0.14);
}

.vc-ring {
    position: absolute;
    inset: -4px;
    border-radius: 11px;
    border: 1px solid rgba(0, 255, 204, 0.06);
    pointer-events: none;
}

.vc-live-dot-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.vc-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00ffcc;
    box-shadow: 0 0 10px #00ffcc, 0 0 20px rgba(0, 255, 204, 0.4);
    animation: livePulse 1.4s ease-in-out infinite;
    display: block;
}

@keyframes livePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px #00ffcc, 0 0 20px rgba(0, 255, 204, 0.4); }
    50% { transform: scale(1.35); box-shadow: 0 0 6px #00ffcc, 0 0 12px rgba(0, 255, 204, 0.2); }
}

.vc-live-label {
    font-size: 0.56rem;
    color: #00ffcc;
    letter-spacing: 2px;
    font-family: 'Share Tech Mono', monospace;
    opacity: 0.8;
}

.vc-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.07);
    flex-shrink: 0;
}

.vc-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.vc-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #00ffcc;
    text-shadow: 0 0 10px rgba(0, 255, 204, 0.4);
    line-height: 1;
    min-width: 36px;
    text-align: center;
    display: block;
}

.vc-desc {
    font-size: 0.56rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Share Tech Mono', monospace;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .view-counter-panel {
        bottom: 80px;
        right: 14px;
        padding: 9px 14px;
        gap: 10px;
    }
    .vc-number { font-size: 0.9rem; }
}

/* ========== OWNER SECTION ========== */
.owner-section {
    padding: 80px 20px;
    text-align: center;
}

.owner-section .container {
    max-width: 500px;
    margin: 0 auto;
}

.owner-card {
    position: relative;
    display: inline-block;
    margin-top: 32px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-card);
    transition: transform var(--transition), box-shadow var(--transition);
}

.owner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 40px rgba(240, 194, 67, 0.25), var(--shadow-gold);
}

.owner-card-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center top, rgba(240, 194, 67, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.owner-img {
    display: block;
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: cover;
    position: relative;
    z-index: 0;
}

.owner-img-error {
    width: 420px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 1px;
    flex-direction: column;
    gap: 8px;
}

.owner-badge {
    position: relative;
    z-index: 2;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-mid), var(--gold-dark));
    color: #0a0a0a;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    padding: 8px 20px;
    text-align: center;
    border-top: 1px solid var(--gold-bright);
}

footer {
    background: #020306;
    padding: 40px 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 200, 255, 0.06);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-logo {
    height: 40px;
    opacity: 0.35;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.7;
    filter: grayscale(0%);
}

.footer-logo-pnxdev {
    height: 36px;
}

.footer-copy {
    color: var(--text-dim);
    font-size: 0.8rem;
    font-family: 'Share Tech Mono', monospace;
    letter-spacing: 1px;
}

.footer-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--text-dim), transparent);
}

/* ========== AUDIO PANEL – SLIDING VERSION ========== */
.audio-panel {
    position: fixed;
    bottom: 24px;
    left: 0;
    z-index: 9999;
    background: rgba(8, 13, 26, 0.92);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-left: none;
    border-radius: 0 8px 8px 0;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    backdrop-filter: blur(12px);
    font-family: 'Orbitron', sans-serif;
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    transform: translateX(0);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(0, 200, 255, 0.1);
}

.audio-panel.collapsed {
    transform: translateX(calc(-100% + 52px));
}

.audio-panel.collapsed {
    cursor: pointer;
}

.audio-panel .audio-visualizer,
.audio-panel .audio-btn,
.audio-panel .volume-slider-container {
    transition: opacity 0.2s;
}

.audio-panel.collapsed .audio-visualizer,
.audio-panel.collapsed .audio-btn,
.audio-panel.collapsed .volume-slider-container {
    opacity: 0.5;
    pointer-events: none;
}

.audio-panel-ring {
    position: absolute;
    inset: -4px;
    border-radius: 11px;
    border: 1px solid rgba(0, 200, 255, 0.06);
    pointer-events: none;
}

.audio-visualizer {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
    overflow: hidden;
}

.audio-visualizer span {
    width: 3px;
    background: var(--blue-glow);
    border-radius: 2px;
    height: 3px;
    transition: height 0.1s ease;
    opacity: 0.4;
}

.audio-visualizer.active span:nth-child(1) { animation: vizBar 0.8s ease-in-out 0s infinite alternate; opacity: 1; }
.audio-visualizer.active span:nth-child(2) { animation: vizBar 0.6s ease-in-out 0.1s infinite alternate; opacity: 1; }
.audio-visualizer.active span:nth-child(3) { animation: vizBar 0.9s ease-in-out 0.2s infinite alternate; opacity: 1; }
.audio-visualizer.active span:nth-child(4) { animation: vizBar 0.7s ease-in-out 0.15s infinite alternate; opacity: 1; }
.audio-visualizer.active span:nth-child(5) { animation: vizBar 1.0s ease-in-out 0.05s infinite alternate; opacity: 1; }

@keyframes vizBar {
    from { height: 3px; }
    to { height: 18px; }
}

.audio-btn {
    background: rgba(0, 30, 80, 0.8);
    border: 1px solid rgba(0, 200, 255, 0.5);
    color: var(--blue-glow);
    padding: 6px 14px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    font-weight: bold;
    letter-spacing: 1.5px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 7px;
}

.audio-btn .btn-icon { font-size: 0.65rem; }
.audio-btn .btn-label { letter-spacing: 2px; }

.audio-btn:hover {
    background: var(--blue-glow);
    color: #000;
    box-shadow: 0 0 14px rgba(0, 200, 255, 0.5);
}

.audio-btn:active { transform: scale(0.95); }

.audio-btn.playing-active {
    background: rgba(50, 25, 0, 0.9);
    border-color: var(--gold-bright);
    color: var(--gold-bright);
}

.audio-btn.playing-active:hover {
    background: var(--gold-bright);
    color: #000;
    box-shadow: 0 0 14px rgba(240, 194, 67, 0.5);
}

.volume-slider-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vol-icon {
    font-size: 0.8rem;
    opacity: 0.6;
    color: var(--text-muted);
}

#volume-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 75px;
    height: 3px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

#volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--blue-glow);
    cursor: pointer;
    box-shadow: 0 0 6px rgba(0, 200, 255, 0.8);
    transition: transform 0.2s ease;
}

#volume-slider::-webkit-slider-thumb:hover { transform: scale(1.3); }

#volume-slider::-moz-range-thumb {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--blue-glow);
    cursor: pointer;
    border: none;
}

.panel-slide-toggle {
    background: rgba(0, 30, 80, 0.8);
    border: 1px solid var(--blue-glow);
    color: var(--blue-glow);
    font-size: 0.9rem;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 8px;
    flex-shrink: 0;
    order: -1;
}

.panel-slide-toggle:hover {
    background: var(--blue-glow);
    color: #000;
    box-shadow: 0 0 10px var(--blue-glow);
}

/* Restore Audio Panel Button */
.restore-panel-btn {
    position: fixed;
    bottom: 24px;
    left: 0;
    z-index: 9998;
    background: rgba(8, 13, 26, 0.95);
    border: 2px solid var(--blue-glow);
    border-left: none;
    border-radius: 0 8px 8px 0;
    color: var(--blue-glow);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px rgba(0, 200, 255, 0.15);
}

.restore-panel-btn.show {
    opacity: 1;
    pointer-events: auto;
}

.restore-panel-btn:hover {
    background: rgba(0, 200, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.5), 0 8px 32px rgba(0,0,0,0.5);
    transform: scale(1.1);
}

.restore-panel-btn:active {
    transform: scale(0.95);
}

.restore-icon {
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 200, 255, 0.5);
    animation: restorePulse 2s ease-in-out infinite;
}

@keyframes restorePulse {
    0%, 100% {
        opacity: 0.8;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@media (max-width: 900px) {
    .header-inner {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 0.65rem;
    }
    
    .header-status { display: none; }
}

@media (max-width: 768px) {
    .section-title { font-size: 1.7rem; letter-spacing: 2px; }
    .hero-subtitle { font-size: 1.3rem; }
    
    .trailer-subtitle { font-size: 0.95rem; margin: 16px 0 32px; }
    .trailer-wrapper { aspect-ratio: 16 / 9; }
    
    .features-image-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-banner-card {
        width: 100%;
        max-width: 460px;
    }
    
    .slides-container { height: 240px; }
    
    .cta-card { padding: 36px 24px; }
    
    .audio-panel {
        bottom: 14px;
        left: 0;
        transform: translateX(0);
        width: auto;
        justify-content: space-between;
        max-width: calc(100% - 20px);
    }
    
    .audio-panel.collapsed {
        transform: translateX(calc(-100% + 44px));
    }
    
    #volume-slider { width: 90px; }
    
    .hero-stats { gap: 16px; }
    .stat-value { font-size: 1.2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
    .download-link-card { padding: 12px 14px; }
    .dl-badge-wrapper { margin-right: 12px; width: 38px; height: 38px; }
    .download-link-card strong { font-size: 0.82rem; }
    .cta-title { font-size: 1.5rem; }
}