﻿/* ============================================
   BLASKO-CHEATS — Gentle Dark Blue Store (v10.0)
   Font: Outfit + Bebas Neue
   ============================================ */

/* ---------- Variables ---------- */
:root {
    --bg: #050a14;
    --bg-elevated: #0a1628;
    --bg-card: rgba(10, 22, 40, 0.85);

    --text: #e0e8f0;
    --text-dim: #7a8fa8;
    --text-muted: #3a4f6a;

    --accent: #4a90d9;
    --accent-soft: rgba(74, 144, 217, 0.1);
    --accent-glow: rgba(74, 144, 217, 0.25);
    --accent-hover: #6ab0ff;
    --accent-2: #1a3a6a;
    --accent-3: #5ca0ef;
    --gradient-accent: linear-gradient(90deg, #1a3a6a, #4a90d9, #6ab0ff, #4a90d9);
    --gradient-text-shimmering: linear-gradient(90deg, #1a3a6a, #6ab0ff, #4a90d9, #1a3a6a);
    --gradient-shimmer: linear-gradient(90deg, #3a4f6a, #e0e8f0, #6ab0ff, #3a4f6a);

    --border: rgba(74, 144, 217, 0.08);
    --border-hover: rgba(74, 144, 217, 0.2);

    --radius: 14px;
    --radius-sm: 8px;

    --font-display: 'Anton', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --ease: cubic-bezier(0.25, 1, 0.5, 1);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Keyframes ---------- */
@keyframes float-1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(80px, -60px) scale(1.1);
    }

    50% {
        transform: translate(-40px, -120px) scale(0.95);
    }

    75% {
        transform: translate(-80px, 40px) scale(1.05);
    }
}

@keyframes float-2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(-60px, 80px) scale(1.05);
    }

    50% {
        transform: translate(100px, 40px) scale(0.9);
    }

    75% {
        transform: translate(40px, -80px) scale(1.1);
    }
}

@keyframes float-3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(60px, 60px) scale(1.08);
    }

    66% {
        transform: translate(-80px, -40px) scale(0.95);
    }
}

@keyframes shimmer {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes reveal-up {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes categorySlide {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes productPop {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes glow-breathe {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.7;
    }
}

@keyframes line-expand {
    from {
        width: 0;
    }

    to {
        width: 60px;
    }
}

@keyframes marquee-vertical {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes marquee-vertical-reverse {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    scrollbar-gutter: stable;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* === SQUARE GRID PATTERN + VIGNETTE === */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(74, 144, 217, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 144, 217, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 15% 5%, rgba(74, 144, 217, 0.08), transparent 45%),
        radial-gradient(ellipse at 80% 20%, rgba(26, 58, 106, 0.06), transparent 45%),
        radial-gradient(ellipse at 85% 90%, rgba(92, 160, 239, 0.04), transparent 45%),
        linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.4));
}

/* === DECORATIVE FLOATING SQUARES === */
.bg-shapes::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        /* scattered small squares */
        linear-gradient(rgba(74, 144, 217, 0.06), rgba(74, 144, 217, 0.06)),
        linear-gradient(rgba(74, 144, 217, 0.04), rgba(74, 144, 217, 0.04)),
        linear-gradient(rgba(74, 144, 217, 0.05), rgba(74, 144, 217, 0.05)),
        linear-gradient(rgba(26, 58, 106, 0.04), rgba(26, 58, 106, 0.04)),
        linear-gradient(rgba(74, 144, 217, 0.04), rgba(74, 144, 217, 0.04)),
        linear-gradient(rgba(74, 144, 217, 0.06), rgba(74, 144, 217, 0.06)),
        linear-gradient(rgba(92, 160, 239, 0.02), rgba(92, 160, 239, 0.02)),
        linear-gradient(rgba(92, 160, 239, 0.015), rgba(92, 160, 239, 0.015)),
        linear-gradient(rgba(92, 160, 239, 0.02), rgba(92, 160, 239, 0.02));
    background-size:
        8px 8px,
        12px 12px,
        6px 6px,
        10px 10px,
        14px 14px,
        5px 5px,
        18px 18px,
        10px 10px,
        7px 7px;
    background-position:
        10% 15%,
        75% 8%,
        60% 45%,
        25% 70%,
        85% 55%,
        40% 88%,
        90% 25%,
        15% 42%,
        55% 75%;
    background-repeat: no-repeat;
}

@media (max-width: 768px) {
    .viewport-frame {
        display: none;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Animated Background ---------- */
.bg-shapes {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
}

.shape-1 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(74, 144, 217, 0.2), transparent 70%);
    top: -10%;
    right: -5%;
    animation: float-1 25s ease-in-out infinite;
}

.shape-2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(26, 58, 106, 0.15), transparent 70%);
    bottom: -15%;
    left: -10%;
    animation: float-2 30s ease-in-out infinite;
}

.shape-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(92, 160, 239, 0.08), transparent 70%);
    top: 50%;
    left: 40%;
    animation: float-3 20s ease-in-out infinite;
}

/* ==============================
   GAME STATUS SIDE MARQUEES
   ============================== */
.side-marquee {
    position: fixed;
    top: 0;
    height: 100vh;
    width: 170px;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 8%, black 92%, transparent 100%);
    transition: opacity 0.5s ease;
}

.side-marquee-left {
    left: 0;
}

.side-marquee-right {
    right: 0;
}

/* Inner edge glow */
.side-marquee-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(74, 144, 217, 0.2) 20%, rgba(106, 176, 255, 0.35) 50%, rgba(74, 144, 217, 0.2) 80%, transparent);
    z-index: 10;
    animation: edge-pulse 4s ease-in-out infinite;
}

.side-marquee-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(74, 144, 217, 0.2) 20%, rgba(106, 176, 255, 0.35) 50%, rgba(74, 144, 217, 0.2) 80%, transparent);
    z-index: 10;
    animation: edge-pulse 4s ease-in-out infinite reverse;
}

@keyframes edge-pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Scanline overlay */
.marquee-scanline {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(74, 144, 217, 0.015) 2px,
            rgba(74, 144, 217, 0.015) 4px);
    z-index: 5;
    pointer-events: none;
}

/* Scrolling track */
.marquee-track {
    display: flex;
    flex-direction: column;
    padding: 10px 10px;
    will-change: transform;
}

.marquee-up {
    animation: marquee-scroll-up 60s linear infinite;
}

.marquee-down {
    animation: marquee-scroll-down 60s linear infinite;
}

@keyframes marquee-scroll-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes marquee-scroll-down {
    0% {
        transform: translateY(-50%);
    }

    100% {
        transform: translateY(0);
    }
}

/* Individual game card */
.marquee-card {
    background: rgba(10, 22, 40, 0.7);
    border: 1px solid rgba(74, 144, 217, 0.1);
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
    box-shadow:
        0 2px 12px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(106, 176, 255, 0.05);
    margin-bottom: 12px;
    cursor: pointer;
    pointer-events: auto;

    /* Stabilization fixes for marquee hover glitch */
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform, border-color;
    transform-origin: center center;
}

.marquee-card:hover {
    border-color: rgba(74, 144, 217, 0.5);
    transform: translateY(-2px) scale(1.02) translateZ(0);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
    background: rgba(15, 32, 55, 0.85);
    z-index: 100;
}

/* Image wrapper with blue overlay */
.marquee-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.marquee-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(5, 10, 20, 0.1) 0%,
            rgba(10, 22, 40, 0.6) 60%,
            rgba(5, 10, 20, 0.9) 100%);
    mix-blend-mode: normal;
    pointer-events: none;
}

.marquee-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.65) saturate(1.3) contrast(1.1);
}

/* Game info section */
.marquee-info {
    padding: 8px 10px 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.marquee-name {
    font-family: var(--font-display);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    color: var(--text);
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 0 8px rgba(74, 144, 217, 0.3);
}

/* Status badge */
.marquee-status {
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 3px 7px;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

.marquee-status.undetected {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.2);
    text-shadow: 0 0 6px rgba(0, 255, 136, 0.4);
    animation: status-glow-green 3s ease-in-out infinite;
}

.marquee-status.detected {
    color: #ff4444;
    background: rgba(255, 68, 68, 0.08);
    border: 1px solid rgba(255, 68, 68, 0.2);
    text-shadow: 0 0 6px rgba(255, 68, 68, 0.4);
}

.marquee-status.updating {
    color: #ffaa00;
    background: rgba(255, 170, 0, 0.08);
    border: 1px solid rgba(255, 170, 0, 0.2);
    text-shadow: 0 0 6px rgba(255, 170, 0, 0.4);
    animation: status-glow-yellow 2s ease-in-out infinite;
}

@keyframes status-glow-green {

    0%,
    100% {
        box-shadow: 0 0 4px rgba(0, 255, 136, 0.1);
    }

    50% {
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
    }
}

@keyframes status-glow-yellow {

    0%,
    100% {
        box-shadow: 0 0 4px rgba(255, 170, 0, 0.1);
    }

    50% {
        box-shadow: 0 0 10px rgba(255, 170, 0, 0.25);
    }
}

/* Responsive */
@media (max-width: 1500px) {
    .side-marquee {
        width: 140px;
    }

    .marquee-name {
        font-size: 0.65rem;
    }
}

@media (max-width: 1200px) {
    .side-marquee {
        width: 110px;
    }

    .marquee-name {
        font-size: 0.6rem;
    }

    .marquee-status {
        font-size: 0.5rem;
    }
}

@media (max-width: 900px) {
    .side-marquee {
        display: none;
    }
}


/* ---------- Scroll Reveal ---------- */
.reveal {
    opacity: 0;
    transition: opacity 0.8s var(--ease);
}

.reveal.visible {
    opacity: 1;
}

/* ---------- Section Common ---------- */
.section {
    padding: 80px 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            var(--accent) 20%,
            var(--accent-2) 50%,
            var(--accent) 80%,
            transparent);
    box-shadow: 0 0 15px var(--accent-glow);
    opacity: 0.8;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 40px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--gradient-text-shimmering);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    position: relative;
    /* Premium glow effect */
    text-shadow: 0 0 30px rgba(74, 144, 217, 0.15);
}

.section-desc {
    color: var(--text-dim);
    max-width: 480px;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
}

/* ==============================
   NAVIGATION
   ============================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(5, 5, 5, 0.88);
    backdrop-filter: blur(24px) saturate(1.5);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.4s var(--spring);
}

.logo:hover {
    transform: scale(1.03);
}

.logo-mark {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: white;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.1rem;
    border-radius: 8px;
    box-shadow: 0 0 20px var(--accent-glow);
    letter-spacing: 0.02em;
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.35rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent);
    /* background: var(--gradient-accent); REMOVED GRADIENT */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* background-clip: text; */
    /* background-size: 200% auto; */
    /* animation: shimmer 4s linear infinite; REMOVED SHIMMER */
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-dim);
    transition: color 0.2s;
    position: relative;
    letter-spacing: 0.02em;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-self: end;
}

.nav-cta {
    font-size: 0.78rem;
    font-weight: 700;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    background: var(--accent);
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 16px var(--accent-glow);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

/* === LANGUAGE SWITCHER === */
.lang-switcher {
    position: relative;
}

.lang-menu-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 8px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.lang-menu-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent);
    box-shadow: 0 0 15px var(--accent-glow);
}

.lang-flag {
    width: 20px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.lang-flag svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chevron {
    opacity: 0.5;
    transition: transform 0.3s var(--ease);
}

.lang-switcher.active .chevron {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 160px;
    background: rgba(10, 22, 40, 0.95);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s var(--ease);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.lang-switcher.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-dim);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s;
    text-align: left;
}

.lang-option:hover {
    background: var(--accent-soft);
    color: var(--text);
}

.lang-option.active {
    background: rgba(74, 144, 217, 0.15);
    color: var(--accent);
}

/* ==============================
   HERO — LEFT ALIGNED
   ============================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    /* Stretch inner container to full height */
    position: relative;
    /* padding: 140px 0 0; REMOVE TOP PADDING FOR VERTICAL CENTER */
    padding: 0;
    overflow: hidden;
    align-items: center;
    /* Center vertically */
    justify-content: center;
    /* Center horizontally */
}

.hero-inner {
    display: flex;
    flex: 1;
    /* flex-direction: row-reverse; */
    /* Swapped character and text positions */
    /* Take full height */
    align-items: center;
    /* Center text and image relative to each other vertically */
    justify-content: center;
    /* Center content */
    gap: 80px;
    width: 100%;
}

.hero-image-container {
    flex: 1.5;
    max-width: 750px;
    position: relative;
    aspect-ratio: 1.2/1;
    display: none;
    /* HIDE IMAGE CONTAINER TO CENTER TEXT */
    align-self: flex-end;
    /* Pin to the absolute bottom of the section */
    align-items: flex-end;
    justify-content: center;
    opacity: 1;
    animation: reveal-up 1s var(--ease) 0.2s both;
    overflow: visible;
    /* Ensure scaled head/gun doesn't get cut by container */
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 45% 50%;
    /* Shifted 0.5cm (approx 20px) to the left (-75px -> -95px) */
    transform: scale(1.7) translateX(-95px);
    transform-origin: bottom center;

    /* Maximize sharpness */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    display: block;

    /* Stronger contrast defines edges better on scaled images */
    mix-blend-mode: lighten;
    filter: brightness(1.05) contrast(1.2) saturate(1.1);

    /* Composite Mask: Fades out all 4 edges softly */
    mask-image:
        linear-gradient(to bottom, transparent, black 15%, black 85%, transparent),
        linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image:
        linear-gradient(to bottom, transparent, black 15%, black 85%, transparent),
        linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
}

@keyframes hero-image-zoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-content {
    flex: 1.2;
    text-align: center;
    /* Center everything for symmetry */
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-overline {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    opacity: 0;
    animation: reveal-up 0.8s var(--ease) 0.3s forwards;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centered for symmetry */
    gap: 15px;
}

.hero-overline::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--accent);
    animation: line-expand 0.8s var(--ease) 0.6s both;
}

.hero-overline::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 1px;
    background: var(--accent);
    animation: line-expand 0.8s var(--ease) 0.6s both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 7.5rem);
    font-weight: 400;
    line-height: 0.95;
    /* Increased to separate lines */
    margin-bottom: 32px;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: reveal-up 1s var(--ease) 0.4s forwards;
}

.hero-line {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--gradient-text-shimmering);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    position: relative;
    /* Premium glow effect */
    text-shadow: 0 0 30px rgba(74, 144, 217, 0.15);
}

/* Clean typography for the first line */
.hero-line:first-child {
    font-size: 1em;
    opacity: 1;
    margin-bottom: 0.05em;
    letter-spacing: 0.02em;
}

.accent-line {
    /* Red Shimmer Gradient - Synchronized with Hero Line */
    background: linear-gradient(90deg,
            #3a4f6a,
            #6ab0ff,
            #4a90d9,
            #3a4f6a);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    /* Keeping the glow */
    text-shadow: 0 0 30px rgba(74, 144, 217, 0.4);
    filter: none;
}

.accent-text {
    background: linear-gradient(135deg, #4a90d9, #1a3a6a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: reveal-up 0.8s var(--ease) 0.5s forwards;
    letter-spacing: 0.05em;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 56px;
    opacity: 0;
    animation: reveal-up 0.8s var(--ease) 0.65s forwards;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.88rem;
    padding: 13px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.btn:hover::after {
    transform: translateX(100%);
}

.btn-primary {
    color: white;
    background: var(--accent);
    /* background: linear-gradient(90deg, #4a90d9, #1a3a6a, #4a90d9); REMOVED GRADIENT */
    /* background-size: 200% auto; */
    box-shadow: 0 4px 20px var(--accent-glow);
    /* animation: shimmer 4s linear infinite; REMOVED SHIMMER */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--accent-glow);
}

.btn-outline {
    color: var(--text-dim);
    background: transparent;
    border: 1px solid var(--border-hover);
}

.btn-outline:hover {
    color: var(--text);
    border-color: var(--accent);
    background: var(--accent-soft);
    transform: translateY(-2px);
}

.btn-card {
    color: white;
    background: var(--accent);
    padding: 10px 22px;
    font-size: 0.8rem;
    box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
    background: var(--accent-hover);
}

/* Hero Metrics */
.hero-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    /* justify-content: flex-start; CENTERED */
    gap: 48px;
    opacity: 0;
    animation: reveal-up 0.8s var(--ease) 1s forwards;
}


.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: 0.03em;
    color: var(--accent);
    /* background: var(--gradient-text-shimmering); REMOVED GRADIENT */
    /* background-size: 200% auto; */
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
    /* background-clip: text; */
    /* animation: shimmer 4s linear infinite; REMOVED SHIMMER */
}

.metric-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}


/* ==============================
   CHEAT SHOWCASE PREVIEW
   ============================== */
.cheat-showcase {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 60px;
    opacity: 0;
    animation: reveal-up 0.8s var(--ease) 1s forwards;
}

.showcase-window {
    width: 100%;
    max-width: 680px;
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(12, 10, 18, 0.85);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    box-shadow:
        0 8px 40px rgba(0, 0, 0, 0.4),
        0 0 80px rgba(74, 144, 217, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    animation: showcase-float 6s ease-in-out infinite;
}

@keyframes showcase-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.showcase-topbar {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border);
    gap: 12px;
}

.showcase-dots {
    display: flex;
    gap: 6px;
}

.showcase-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot-red {
    background: #ff5f57;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #28c840;
}

.showcase-title {
    font-family: var(--font-body);
    font-size: 0.72rem;
    color: var(--text-dim);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.showcase-status {
    margin-left: auto;
    font-size: 0.68rem;
    font-weight: 600;
    color: #28c840;
    letter-spacing: 0.5px;
}

.showcase-body {
    display: flex;
    min-height: 260px;
}

.showcase-sidebar {
    width: 140px;
    padding: 14px 0;
    background: rgba(255, 255, 255, 0.015);
    border-right: 1px solid var(--border);
    flex-shrink: 0;
}

.sidebar-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    font-weight: 600;
    padding: 0 16px;
    margin-bottom: 10px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    font-size: 0.78rem;
    color: var(--text-dim);
    cursor: default;
    transition: all 0.2s ease;
    border-left: 2px solid transparent;
}

.sidebar-item.active {
    color: var(--text);
    background: rgba(74, 144, 217, 0.06);
    border-left-color: var(--accent);
}

.sidebar-icon {
    font-size: 0.85rem;
    color: var(--accent);
}

.showcase-main {
    flex: 1;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.showcase-section-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.showcase-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    font-size: 0.78rem;
    color: var(--text-dim);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.toggle {
    width: 34px;
    height: 18px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    transition: background 0.3s ease;
}

.toggle.on {
    background: var(--accent);
}

.toggle-knob {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    transition: transform 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.toggle.on .toggle-knob {
    transform: translateX(16px);
}

.showcase-slider-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 6px;
    font-size: 0.78rem;
    color: var(--text-dim);
}

.showcase-slider {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-track {
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    position: relative;
}

.slider-fill {
    height: 100%;
    background: var(--gradient-accent);
    border-radius: 2px;
}

.slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
}

.slider-value {
    font-size: 0.7rem;
    color: var(--accent);
    font-weight: 600;
    min-width: 36px;
}

.showcase-footer-bar {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 18px;
    font-size: 0.68rem;
    color: var(--text-muted);
}

.footer-bar-item .accent-text {
    color: var(--accent);
    font-weight: 600;
}

.status-ok {
    margin-left: auto;
    color: #28c840;
    font-weight: 600;
}

/* Purchase Modal (PBox) */
.pbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#catalog-modal {
    z-index: 10000;
}

#purchase-modal {
    z-index: 11000;
}

.pbox-content {
    background: rgba(18, 16, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: reveal-up 0.5s var(--ease) forwards;
}

.pbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.pbox-close:hover {
    color: var(--accent);
}

.pbox-header {
    margin-bottom: 25px;
    text-align: center;
}

.pbox-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-family: var(--font-display);
    background: var(--gradient-text-shimmering);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.pbox-desc {
    color: var(--text-dim);
    text-align: center;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.tier-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tier-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.tier-card.active {
    border-color: var(--accent);
    background: rgba(224, 64, 160, 0.08);
    box-shadow: 0 0 20px rgba(224, 64, 160, 0.1);
}

.tier-time {
    display: block;
    font-size: 0.7rem;
    color: var(--text-dim);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.tier-price {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: var(--gradient-text-shimmering);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 5s linear infinite;
}

.tier-btn {
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    width: 100%;
}

.tier-card.active .tier-btn {
    background: var(--accent);
}

/* Showcase responsive */
@media (max-width: 600px) {
    .showcase-sidebar {
        display: none;
    }

    .showcase-window {
        max-width: 100%;
    }

    .showcase-main {
        padding: 14px 16px;
    }
}

/* ==============================
   CATALOG (PRODUCTS)
   ============================== */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

/* GAME CARDS */
.game-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid transparent;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
        linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)) border-box;
    padding: 30px;
    cursor: pointer;
    transition: all 0.6s var(--ease), transform 0.1s ease-out;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.game-card:hover {
    transform: translateY(-4px);
    /* Subtle lift */
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
        var(--accent) border-box;
    /* Solid accent border */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--accent-glow);
}

.game-card-banner {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.game-card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.game-card:hover .game-card-banner img {
    /* transform: scale(1.08); REMOVED ANIMATION */
    transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}


.game-card-content {
    padding: 24px;
}

.game-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 8px;
    background: var(--gradient-text-shimmering);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

/* SPA View Logic */
.app-view {
    display: none;
    width: 100%;
    min-height: 100vh;
    animation: fadeIn 0.3s ease-out;
}

/* Category View as Modal Overlay - FULL SCREEN */
#view-category.app-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5000;
    background: var(--bg);
    /* Solid background to hide home page */
    overflow-y: auto;
    display: none;
    padding: 0;
    margin: 0;
}

/* Fixed background layers container */
#view-category.app-view .grid-layer {
    position: fixed;
    inset: 0;
    z-index: 1;
    /* Above parent background */
    pointer-events: none;
}

#view-category.app-view .grid-layer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(74, 144, 217, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(74, 144, 217, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

#view-category.app-view .grid-layer::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 5%, rgba(74, 144, 217, 0.08), transparent 45%),
        radial-gradient(ellipse at 80% 20%, rgba(26, 58, 106, 0.06), transparent 45%),
        radial-gradient(ellipse at 85% 90%, rgba(92, 160, 239, 0.04), transparent 45%),
        linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.4));
}

#view-category.app-view .container {
    position: relative;
    z-index: 5;
    /* Above grid layer */
}

#view-category.active-view {
    display: block !important;
    animation: categorySlide 0.5s var(--ease) both;
}

/* Ensure View Product is an Overlay ON TOP of Category */
#view-product.app-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    overflow-y: auto;
    padding: 20px;
    display: none;
    align-items: center;
    justify-content: center;
}

/* Specific display type for product view when active */
#view-product.active-view {
    display: flex !important;
    /* Force flex for centering */
    animation: fadeIn 0.4s ease-out both;
}

#view-product.active-view .pbox-main-container {
    animation: productPop 0.5s var(--spring) 0.1s both;
}

#view-home.active-view {
    display: block !important;
    animation: fadeIn 0.4s ease-out both;
}

/* Back Button for Views -> Close Button Style for Modal */
#view-product .view-back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10001;
    /* Above modal content */
    background: var(--bg-card);
    border: 1px solid var(--border);
}

/* Back Button for Views */
.view-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 8px;
    color: var(--text-main);
    cursor: pointer;
    font-size: 0.9rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.view-back-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: black;
    transform: translateX(-5px);
}

/* Minimalist Category View - Full Width Content */
#view-category .container {
    padding: 40px !important;
    max-width: 1400px;
    margin: 0 auto;
}

#view-category .pbox-main-container {
    background: transparent !important;
    border: none !important;
    padding: 40px 0 !important;
    box-shadow: none !important;
    animation: fadeIn 0.5s ease-out;
    position: relative;
    width: 100%;
}

/* Product Modal Container Sizing */
#view-product .pbox-main-container {
    width: 1300px;
    /* Fixed width for stability */
    max-width: 95vw;
    margin: auto;
    position: relative;
    height: 85vh;
    /* Fixed height for stability */
    min-height: 600px;
    overflow: hidden;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

/* Custom Scrollbar for Modal Info Column */
.pbox-info-col::-webkit-scrollbar {
    width: 8px;
}

.pbox-info-col::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.pbox-info-col::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

.pbox-info-col::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* Product Media Scaling */
#pbox-media-container {
    text-align: center;
    background: none;
    padding: 0;
    border: none;
    margin-bottom: 25px;
}

#pbox-media-container img,
#pbox-media-container video {
    max-width: 55% !important;
    /* Scale down by ~2x */
    height: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Product Modal Content Background */
#view-product .pbox-main-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.game-desc {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 20px;
    height: 2.5rem;
    overflow: hidden;
}

.game-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.game-count {
    font-size: 0.75rem;
    color: var(--accent);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.game-price-tag {
    text-align: right;
    margin-right: 15px;
}

.price-label {
    display: block;
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.price-val {
    font-family: var(--font-display);
    font-size: 1.2rem;
    background: var(--gradient-text-shimmering);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 5s linear infinite;
    text-shadow: 0 0 15px rgba(74, 144, 217, 0.2);
}

.btn-view {
    padding: 10px 24px;
    background: var(--accent);
    /* background: var(--gradient-accent); REMOVED GRADIENT */
    /* background-size: 200% auto; */
    border: none;
    color: white;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.game-card:hover .btn-view {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--accent-glow);
    /* animation: shimmer 4s linear infinite; REMOVED SHIMMER */
}

/* CHEAT GRID & CARDS */
.cheat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 360px));
    gap: 20px;
    justify-content: start;
}

.cheat-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 100;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.52rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    pointer-events: none;
    width: max-content;
    white-space: nowrap;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 10px currentColor;
}

.badge-bestseller {
    background: rgba(255, 170, 0, 0.2);
    color: #ffaa00;
    border-color: rgba(255, 170, 0, 0.3);
}

.badge-popular {
    background: rgba(0, 170, 255, 0.2);
    color: #00aaff;
    border-color: rgba(0, 170, 255, 0.3);
}

.badge-hot {
    background: rgba(255, 60, 60, 0.2);
    color: #ff3c3c;
    border-color: rgba(255, 60, 60, 0.3);
}

.badge-new {
    background: rgba(60, 255, 100, 0.2);
    color: #3cff64;
    border-color: rgba(60, 255, 100, 0.3);
}

.badge-top {
    background: rgba(170, 0, 255, 0.2);
    color: #aa00ff;
    border-color: rgba(170, 0, 255, 0.3);
}

.cheat-card {
    background: #0d1b2e;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s var(--ease), transform 0.1s ease-out;
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    perspective: 1000px;
    perspective: 1000px;
}

.cheat-card:hover {
    transform: translateY(-8px);
    background: #112239;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.cheat-card-banner {
    height: 360px;
    position: relative;
    background: #1a1825;
    overflow: hidden;
}

.cheat-card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s var(--ease);
}

.cheat-card:hover .cheat-card-banner img {
    /* Image zoom removed to keep it static */
}



@keyframes ethereal-pulse {

    0%,
    100% {
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6), 0 0 15px rgba(74, 144, 217, 0.15);
    }

    50% {
        box-shadow: 0 25px 55px rgba(0, 0, 0, 0.7), 0 0 30px rgba(74, 144, 217, 0.25);
    }
}

@keyframes float-graceful {

    0%,
    100% {
        transform: translateY(-8px);
    }

    50% {
        transform: translateY(-14px);
    }
}

/* The previous .cheat-card:hover rule was removed as per instruction */



.badge-bestseller {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-glow);
    color: var(--accent-3);
    font-size: 0.6rem;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    border: 1px solid var(--accent-3);
}

.cheat-card-content {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
}

.cheat-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: linear-gradient(90deg, #1a3a6a, #4a90d9, #1a3a6a);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 6s linear infinite;
}

.cheat-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-cheat-view {
    background: #4a90d9;
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
    transition: all 0.3s var(--ease);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.cheat-card:hover .btn-cheat-view {
    transform: translateY(-2px);
    background: #6ab0ff;
    box-shadow: 0 8px 25px rgba(74, 144, 217, 0.4);
}

/* PURCHASE MODAL REDESIGN */
.pbox-main-container {
    width: 90%;
    max-width: 900px;
    background: linear-gradient(rgba(10, 22, 40, 0.96), rgba(10, 22, 40, 0.96)) padding-box,
        var(--gradient-text-shimmering) border-box;
    background-size: 200% auto;
    border: 1px solid transparent;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    animation: reveal-up 0.5s var(--ease), shimmer 12s linear infinite;
}

.catalog-modal-container {
    width: 100%;
    height: auto;
    /* Changed height to auto for proper scrolling */
    max-width: none;
    max-height: none;
    border-radius: 0;
    border: none;
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    background: transparent;
    /* Made transparent to show #view-category background */
    position: relative;
}

/* Custom Scrollbar for Category View */
#view-category::-webkit-scrollbar {
    width: 8px;
}

#view-category::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}

#view-category::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}

#view-category::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* Removed previous pseudo-elements from catalog-modal-container */

.catalog-modal-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.catalog-modal-header h2 {
    font-family: var(--font-display);
    font-size: 4.5rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.catalog-modal-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.catalog-modal-info span:first-child {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pbox-body {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    min-height: 500px;
    height: 100%;
    overflow: hidden;
}

.pbox-info-col {
    padding: 40px;
    border-right: 1px solid var(--border);
    overflow-y: auto;
    /* Smooth fade-out at the bottom */
    mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
}

.pbox-checkout-col {
    padding: 40px;
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pbox-header h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    /* Increased size significantly */
    text-transform: uppercase;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #3a4f6a, #6ab0ff, #4a90d9, #3a4f6a);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    text-shadow: 0 0 40px rgba(74, 144, 217, 0.3);
}

.pbox-tabs {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    border-bottom: 1px solid var(--border);
}

.tab-btn {
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 0.75rem;
    font-weight: 700;
    padding-bottom: 15px;
    cursor: pointer;
    position: relative;
}

.tab-btn.active {
    color: var(--accent);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
}

.area-title {
    font-family: var(--font-display);
    /* Use display font for titles */
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #3a4f6a, #6ab0ff, #4a90d9, #3a4f6a);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.features-list li {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: none;
    /* Allow mixed case */
}

.feat-check {
    color: var(--accent);
    font-weight: 700;
}

#pbox-desc-long,
#pbox-req-text {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-dim);
    line-height: 1.6;
    text-transform: none;
    /* Allow mixed case */
}

.checkout-card {
    background: linear-gradient(rgba(21, 19, 29, 0.94), rgba(21, 19, 29, 0.94)) padding-box,
        var(--gradient-text-shimmering) border-box;
    background-size: 200% auto;
    padding: 30px;
    border-radius: 14px;
    border: 1px solid transparent;
    animation: shimmer 10s linear infinite;
}

.checkout-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #3a4f6a, #6ab0ff, #4a90d9, #3a4f6a);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
    text-shadow: 0 0 30px rgba(74, 144, 217, 0.4);
}

.checkout-subtitle {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.plan-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}

.plan-item input {
    display: none !important;
}

.plan-item.active {
    border-color: var(--accent);
    background: var(--accent-soft);
    box-shadow: 0 0 20px var(--accent-glow);
}

.plan-circle {
    width: 14px;
    height: 14px;
    border: 1px solid var(--text-muted);
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
    transition: all 0.3s;
}

.plan-item.active .plan-circle {
    border-color: var(--accent);
}

.plan-item.active .plan-circle::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--gradient-accent);
    border-radius: 50%;
}

.plan-time {
    font-size: 0.9rem;
    font-weight: 600;
    flex: 1;
}

.plan-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    background: var(--gradient-text-shimmering);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.checkout-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.total-price {
    font-family: var(--font-display);
    font-size: 1.8rem;
    background: var(--gradient-text-shimmering);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.btn-proceed {
    width: 100%;
    margin-top: 25px;
    padding: 18px;
    background: var(--accent);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: 0 10px 30px var(--accent-glow);
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-proceed:hover {
    transform: translateY(-3px) scale(1.02);
    background: var(--accent-hover);
}

/* RESET */
.catalog-back-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.btn-back {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--text-dim);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    cursor: pointer;
}

.category-title-display {
    font-family: var(--font-display);
    font-size: 2rem;
    text-transform: uppercase;
}

/* ==============================
   WHY CHOOSE US
   ============================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.feature-item {
    padding: 32px 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    transition: all 0.4s var(--ease);
}

.feature-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.5);
}

.feature-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    color: var(--accent);
    opacity: 0.12;
    line-height: 1;
    margin-bottom: 14px;
    letter-spacing: 0.04em;
}

.feature-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--gradient-shimmer);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 5s linear infinite;
}

.feature-desc {
    font-size: 0.83rem;
    color: var(--text-dim);
    line-height: 1.7;
}


/* ==============================
   FAQ
   ============================== */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 10px;
    overflow: hidden;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    transition: all 0.3s var(--ease);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-item.open {
    border-color: rgba(233, 30, 99, 0.2);
    box-shadow: 0 0 24px rgba(233, 30, 99, 0.04);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    background: transparent;
    border: none;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-icon {
    flex-shrink: 0;
    opacity: 0.4;
    transition: all 0.35s var(--ease);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    opacity: 1;
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-item.open .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 22px 18px;
    color: var(--text-dim);
    font-size: 0.85rem;
    line-height: 1.7;
}

/* ==============================
   CTA
   ============================== */
.cta-section {
    padding: 120px 0;
}

.cta-block {
    text-align: center;
    padding: 72px 48px;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.cta-block::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233, 30, 99, 0.06), transparent 60%);
    pointer-events: none;
    animation: glow-breathe 6s ease-in-out infinite;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    margin-bottom: 14px;
    position: relative;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--gradient-text-shimmering);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.cta-desc {
    color: var(--text-dim);
    font-size: 1rem;
    max-width: 440px;
    margin-bottom: 32px;
    position: relative;
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
    position: relative;
}

.cta-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 0.72rem;
    color: var(--text-muted);
    position: relative;
}

.cta-badges span {
    transition: color 0.2s;
}

.cta-badges span:hover {
    color: var(--text-dim);
}

/* ==============================
   FOOTER
   ============================== */
.footer {
    padding: 60px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.83rem;
    margin-top: 14px;
    line-height: 1.6;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 18px;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 0.83rem;
    color: var(--text-muted);
    transition: all 0.2s;
}

.footer-col a:hover {
    color: var(--text);
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 28px;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1024px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 12, 0.95);
        backdrop-filter: blur(24px);
        padding: 20px;
        gap: 14px;
        border-bottom: 1px solid var(--border);
    }

    .hero {
        padding: 140px 24px 80px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-metrics {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .metric-divider {
        width: 32px;
        height: 1px;
    }

    .section {
        padding: 80px 0;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-block {
        padding: 48px 24px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .review-card {
        width: 280px;
    }
}

/* ==============================
   GAME CARD (Catalog)
   ============================== */
.game-card {
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s var(--ease);
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    background: rgba(15, 32, 55, 0.9);
}

.game-card-banner {
    height: 160px;
    overflow: hidden;
    position: relative;
}

.game-card-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.game-card:hover .game-card-banner img {
    transform: scale(1.05);
}

.game-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    color: var(--text);
    letter-spacing: 0.02em;
}

.game-desc {
    font-size: 0.85rem;
    color: var(--text-dim);
    margin-bottom: 20px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-footer {
    margin-top: auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    /* Count | Price (pushed right) | Button */
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.game-count {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.game-price-tag {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.1;
    margin-left: auto;
    margin-right: 5px;
}

.price-label {
    font-size: 0.55rem;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-val {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text);
    background: var(--gradient-text-shimmering);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.btn-view {
    padding: 8px 16px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-view:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--accent-glow);
}

/* ==============================
   CATALOG SEARCH BAR
   ============================== */

/* Search Bar */
.search-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    width: 100%;
}

.search-container {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.search-container input {
    width: 100%;
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(74, 144, 217, 0.2);
    padding: 16px 24px;
    padding-right: 50px;
    border-radius: 50px;
    color: var(--text);
    font-size: 1.1rem;
    font-family: var(--font-body);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.search-container input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 25px rgba(74, 144, 217, 0.25);
    background: rgba(10, 22, 40, 0.85);
    transform: scale(1.02);
}

.search-container .search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-dim);
    pointer-events: none;
    transition: color 0.3s;
}

.search-container input:focus+.search-icon {
    color: var(--accent);
}

/* ==============================
   FOOTER
   ============================== */
.site-footer {
    position: relative;
    padding: 80px 0 40px;
    background: linear-gradient(to bottom, var(--bg), var(--bg-elevated));
    border-top: 1px solid var(--border);
    margin-top: 60px;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: var(--text-dim);
    font-size: 0.92rem;
    transition: all 0.2s;
    width: fit-content;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 16px;
    max-width: 300px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 30px 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}