/* ===================================================
   VEILVED INFERNO — SIMPLIFIED FRONTEND STYLESHEET
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Cinzel:wght@400;600;700&display=swap');

/* ─── RESET & ROOT ─────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-deep:  #0c0d10;
    --bg-dark:  #111318;
    --bg-card:  #181a22;
    --bg-card2: #1e2030;
    --border:   rgba(255, 255, 255, 0.07);

    --fire:     #e5521e;
    --fire-dim: rgba(229, 82, 30, 0.18);
    --fire-gold:#f0b942;

    --text-white: #eeeef5;
    --text-muted: #8a8fa8;
    --text-dim:   #505570;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;

    --nav-height: 64px;
    --transition: all 0.22s ease;

    /* Glow values */
    --glow-fire:   0 0 12px rgba(229, 82, 30, 0.55), 0 0 28px rgba(229, 82, 30, 0.25);
    --glow-fire-sm:0 0 6px  rgba(229, 82, 30, 0.45), 0 0 14px rgba(229, 82, 30, 0.20);
    --glow-gold:   0 0 10px rgba(240, 185, 66, 0.50), 0 0 22px rgba(240, 185, 66, 0.20);
}

html { scroll-behavior: smooth; }

body {
    background: var(--bg-deep);
    color: var(--text-white);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.65;
    font-size: 15px;
}

/* ─── SCROLLBAR ─────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--fire); border-radius: 99px; box-shadow: var(--glow-fire-sm); }

/* ─── TYPOGRAPHY ────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }

/* ─── UTILITIES ─────────────────────────────────────── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section    { padding: 64px 0; }
.section-sm { padding: 44px 0; }
.text-center { text-align: center; }

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--fire);
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(229, 82, 30, 0.5);
}

.section-title {
    font-size: clamp(22px, 3.5vw, 38px);
    color: var(--text-white);
    margin-bottom: 12px;
}

.section-title span { color: var(--fire); }

.section-sub {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 40px;
    text-align: center;
}

.fire-divider {
    width: 40px;
    height: 2px;
    background: var(--fire);
    border-radius: 99px;
    margin: 14px auto 0;
    box-shadow: var(--glow-fire);
}

/* ─── NAVBAR ────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-height);
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(12, 13, 16, 0.97);
    border-bottom-color: var(--border);
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.brand-icon { font-size: 18px; }

.brand-logo {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid rgba(229, 82, 30, 0.4);
    box-shadow: var(--glow-fire-sm);
    transition: var(--transition);
}

.brand-logo:hover {
    box-shadow: var(--glow-fire);
    border-color: var(--fire);
}

.brand-text {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-white);
    white-space: nowrap;
}

.brand-accent { color: var(--fire); }

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.nav-links li { position: relative; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 13px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
    cursor: pointer;
}

.nav-link:hover  { color: var(--text-white); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--fire); background: var(--fire-dim); text-shadow: 0 0 8px rgba(229,82,30,0.6); }

.chevron { transition: transform 0.2s ease; }
.has-dropdown:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 180px;
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 6px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 10;
}

.has-dropdown:hover .dropdown,
.has-dropdown.open  .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown li a {
    display: block;
    padding: 9px 13px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.dropdown li a:hover,
.dropdown li a.active { color: var(--fire); background: var(--fire-dim); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-white);
    border-radius: 99px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MAIN CONTENT ──────────────────────────────────── */
.main-content {
    padding-top: var(--nav-height);
    min-height: calc(100vh - var(--nav-height));
}

/* ─── HERO ──────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(12, 13, 16, 0.25) 0%,
        rgba(12, 13, 16, 0.45) 50%,
        rgba(12, 13, 16, 0.75) 100%
    );
    z-index: 1;
}

.hero-center-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--fire-dim);
    border: 1px solid rgba(229, 82, 30, 0.25);
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--fire);
    margin-bottom: 20px;
    animation: fadeInUp 0.5s ease both;
    box-shadow: var(--glow-fire-sm);
    text-shadow: 0 0 8px rgba(229, 82, 30, 0.5);
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(36px, 7vw, 72px);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    animation: fadeInUp 0.6s 0.1s ease both;
}

.hero-title .fire-word {
    color: var(--fire);
    text-shadow: 0 0 18px rgba(229, 82, 30, 0.6), 0 0 40px rgba(229, 82, 30, 0.25);
}

.hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-desc-center {
    max-width: 520px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: fadeInUp 0.6s 0.3s ease both;
}

.hero-buttons-center { justify-content: center; }

/* ─── BUTTONS ───────────────────────────────────────── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--fire);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
}

.btn-primary:hover {
    background: #cc471a;
    color: #fff;
    box-shadow: var(--glow-fire);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--text-white);
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: rgba(229, 82, 30, 0.45);
    background: rgba(229, 82, 30, 0.07);
    color: var(--text-white);
    box-shadow: 0 0 10px rgba(229, 82, 30, 0.2);
    transform: translateY(-1px);
}

/* ─── PAGE HERO (sub-pages) ─────────────────────────── */
.page-hero {
    padding: 52px 0 44px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    background: var(--bg-dark);
}

.page-hero-title {
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 10px;
}

.page-hero-title span { color: var(--fire); }

.page-hero-sub {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 440px;
    margin: 0 auto;
}

/* ─── ABOUT SUB-NAV ─────────────────────────────────── */
.about-subnav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 44px;
    padding: 5px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.about-subnav a {
    padding: 9px 20px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition);
}

.about-subnav a.active {
    background: var(--fire);
    color: #fff;
    box-shadow: var(--glow-fire-sm);
}

.about-subnav a:hover:not(.active) {
    color: var(--text-white);
    background: rgba(255,255,255,0.05);
}

/* ─── CARDS ─────────────────────────────────────────── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(229, 82, 30, 0.45);
    box-shadow: 0 0 18px rgba(229, 82, 30, 0.12), 0 4px 24px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.card-img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

.card-img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--bg-card2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.card-body { padding: 18px 20px 22px; }

.card-tag {
    display: inline-block;
    padding: 3px 9px;
    background: var(--fire-dim);
    color: var(--fire);
    font-size: 10px;
    font-weight: 700;
    border-radius: 99px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.card-title {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    color: var(--text-dim);
    font-weight: 500;
}

/* ─── NEWS ──────────────────────────────────────────── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 22px;
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: block;
}

.news-card:hover {
    border-color: rgba(229, 82, 30, 0.45);
    box-shadow: 0 0 18px rgba(229, 82, 30, 0.12), 0 4px 24px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.news-card-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.news-card-img-placeholder {
    width: 100%;
    height: 190px;
    background: var(--bg-card2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.news-card-body { padding: 18px 20px 22px; }

.news-card-date {
    font-size: 11px;
    color: var(--fire);
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-card-title {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.news-card-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ─── STORE ─────────────────────────────────────────── */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 22px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    border-color: rgba(229, 82, 30, 0.45);
    box-shadow: 0 0 18px rgba(229, 82, 30, 0.12), 0 4px 24px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 3px 9px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 700;
    z-index: 2;
}

.badge-instock {
    background: rgba(46, 211, 120, 0.12);
    color: #2ed378;
    border: 1px solid rgba(46, 211, 120, 0.25);
}

.badge-outofstock {
    background: rgba(235, 87, 87, 0.12);
    color: #eb5757;
    border: 1px solid rgba(235, 87, 87, 0.25);
}

.product-img {
    width: 100%;
    height: 205px;
    object-fit: contain;
    background: var(--bg-card2);
    display: block;
    padding: 14px;
}

.product-img-placeholder {
    width: 100%;
    height: 205px;
    background: var(--bg-card2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 46px;
}

.product-body { padding: 16px 18px 20px; }

.product-name {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 5px;
    line-height: 1.3;
}

.product-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.product-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--fire-gold);
    text-shadow: var(--glow-gold);
}

.product-stock {
    font-size: 11px;
    color: var(--text-dim);
    font-weight: 600;
}

/* WhatsApp order button */
.btn-wa-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    margin-top: 12px;
    padding: 10px 14px;
    background: #25d366;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
}

.btn-wa-order:hover { background: #1da851; color: #fff; box-shadow: 0 0 12px rgba(37, 211, 102, 0.45); transform: translateY(-1px); }

.btn-wa-disabled {
    background: var(--bg-card2);
    color: var(--text-dim);
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-wa-disabled:hover { background: var(--bg-card2); }

/* ─── COMMENT ───────────────────────────────────────── */
.comment-layout {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 40px;
    align-items: start;
}

.comment-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: sticky;
    top: calc(var(--nav-height) + 20px);
}

.form-title {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.form-group { margin-bottom: 16px; }

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 7px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.form-input,
.form-textarea {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    color: var(--text-white);
    transition: var(--transition);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--fire);
    box-shadow: 0 0 0 3px rgba(229, 82, 30, 0.12), var(--glow-fire-sm);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-dim); }

.form-textarea {
    resize: vertical;
    min-height: 110px;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: var(--fire);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
}

.btn-submit:hover { background: #cc471a; box-shadow: var(--glow-fire); transform: translateY(-1px); }

/* Alert messages */
.alert {
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alert-success {
    background: rgba(46, 211, 120, 0.08);
    border: 1px solid rgba(46, 211, 120, 0.25);
    color: #2ed378;
}

.alert-error {
    background: rgba(235, 87, 87, 0.08);
    border: 1px solid rgba(235, 87, 87, 0.25);
    color: #eb5757;
}

/* Comments list */
.comments-list { display: grid; gap: 14px; }

.comment-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px;
    transition: var(--transition);
}

.comment-item:hover { border-color: rgba(229, 82, 30, 0.4); box-shadow: 0 0 14px rgba(229, 82, 30, 0.08); }

.comment-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.comment-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--fire);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
    box-shadow: var(--glow-fire-sm);
}

.comment-author { font-weight: 700; color: var(--text-white); font-size: 14px; }
.comment-date   { font-size: 11px; color: var(--text-dim); margin-top: 2px; }
.comment-text   { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ─── CREATOR ───────────────────────────────────────── */
.creator-hero {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 48px;
}

.creator-photo-wrap { position: relative; }

.creator-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: none;
    filter: drop-shadow(0 0 8px rgba(229, 82, 30, 0.5)) drop-shadow(0 0 18px rgba(229, 82, 30, 0.25));
    transition: var(--transition);
}

.creator-photo:hover {
    filter: drop-shadow(0 0 14px rgba(229, 82, 30, 0.75)) drop-shadow(0 0 32px rgba(229, 82, 30, 0.4));
}

.creator-photo-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    gap: 10px;
    border: 1px solid var(--border);
}

.creator-info { padding-top: 8px; }

.creator-name {
    font-family: 'Cinzel', serif;
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.creator-role {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fire);
    margin-bottom: 18px;
}

.creator-desc { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

/* ─── GAME INFO ─────────────────────────────────────── */
.game-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: start;
    margin-bottom: 48px;
}

.game-image {
    width: 100%;
    border-radius: var(--radius-lg);
    object-fit: cover;
    border: none;
    filter: drop-shadow(0 0 8px rgba(229, 82, 30, 0.5)) drop-shadow(0 0 18px rgba(229, 82, 30, 0.25));
    transition: var(--transition);
}

.game-image:hover {
    filter: drop-shadow(0 0 14px rgba(229, 82, 30, 0.75)) drop-shadow(0 0 32px rgba(229, 82, 30, 0.4));
}

.game-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    gap: 10px;
    border: 1px solid var(--border);
}

.game-info-title {
    font-size: clamp(20px, 2.5vw, 30px);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 14px;
}

.game-info-desc { font-size: 14px; line-height: 1.8; color: var(--text-muted); }

/* ─── INFO ROWS ─────────────────────────────────────── */
.info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.info-row:last-child { border-bottom: none; }
.info-label { font-weight: 700; color: var(--text-muted); min-width: 150px; }
.info-value  { color: var(--text-white); }

/* ─── HIGHLIGHT QUOTE ───────────────────────────────── */
.fire-quote {
    background: var(--fire-dim);
    border-left: 3px solid var(--fire);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 16px 20px;
    margin: 24px 0;
    box-shadow: -3px 0 14px rgba(229, 82, 30, 0.25), inset 0 0 30px rgba(229, 82, 30, 0.05);
}

.fire-quote p {
    font-size: 15px;
    font-style: italic;
    color: var(--text-white);
    line-height: 1.7;
}

/* ─── FEATURE BOXES ─────────────────────────────────── */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 36px;
}

.feature-box {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    transition: var(--transition);
    text-align: center;
}

.feature-box:hover { border-color: rgba(229, 82, 30, 0.25); }

.feature-icon    { font-size: 30px; margin-bottom: 12px; }
.feature-title   { font-family: 'Cinzel', serif; font-size: 15px; color: var(--text-white); margin-bottom: 6px; }
.feature-desc    { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ─── EMPTY STATE ───────────────────────────────────── */
.empty-state { padding: 64px 20px; text-align: center; }
.empty-icon  { font-size: 52px; margin-bottom: 14px; }
.empty-title { font-size: 20px; font-family: 'Cinzel', serif; color: var(--text-white); margin-bottom: 8px; }
.empty-desc  { font-size: 14px; color: var(--text-muted); }

/* ─── PC SYSTEM REQUIREMENTS ────────────────────────── */
.spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 28px;
}

.spec-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    transition: var(--transition);
}

.spec-card-min::before { background: #6b7280; }
.spec-card-rec::before { background: var(--fire); box-shadow: var(--glow-fire); }
.spec-card:hover       { border-color: rgba(229, 82, 30, 0.4); box-shadow: 0 0 18px rgba(229, 82, 30, 0.10); }

.spec-card-header {
    padding: 22px 22px 16px;
    border-bottom: 1px solid var(--border);
}

.spec-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.spec-badge-min { background: rgba(107,114,128,0.12); color: #9ca3af; border: 1px solid rgba(107,114,128,0.25); }
.spec-badge-rec { background: var(--fire-dim); color: var(--fire); border: 1px solid rgba(229,82,30,0.25); }

.spec-card-title { font-family: 'Cinzel', serif; font-size: 19px; font-weight: 700; color: var(--text-white); margin-bottom: 4px; }
.spec-card-sub   { font-size: 12px; color: var(--text-dim); }

.spec-list {
    padding: 18px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    background: var(--bg-dark);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.04);
}

.spec-icon  { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.spec-label { font-size: 10px; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 3px; }
.spec-value { font-size: 13px; font-weight: 600; color: var(--text-white); line-height: 1.4; }

.spec-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: var(--fire-dim);
    border: 1px solid rgba(229, 82, 30, 0.18);
    border-radius: var(--radius-md);
    margin-top: 6px;
}

.spec-note-icon { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.spec-note p    { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.spec-note strong { color: var(--fire); }

/* ─── GALLERY SLIDER ────────────────────────────────── */
.gallery-section { background: var(--bg-deep); }

.gallery-slider-wrap {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    user-select: none;
}

.gallery-track-wrap {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--bg-card);
    cursor: grab;
}

.gallery-track-wrap:active { cursor: grabbing; }

.gallery-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.gallery-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

/* Arrow buttons */
.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(12, 13, 16, 0.75);
    border: 1px solid rgba(229, 82, 30, 0.35);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(6px);
}

.gallery-btn:hover {
    background: var(--fire);
    border-color: var(--fire);
    box-shadow: var(--glow-fire);
}

.gallery-btn-prev { left: -58px; }
.gallery-btn-next { right: -58px; }

/* Dots */
.gallery-dots {
    position: absolute;
    bottom: -36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 7px;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.gallery-dot.active {
    background: var(--fire);
    box-shadow: var(--glow-fire-sm);
    transform: scale(1.3);
}

.gallery-dot:hover:not(.active) { background: rgba(255,255,255,0.4); }

/* Counter */
.gallery-counter {
    position: absolute;
    top: 14px;
    right: 16px;
    background: rgba(12,13,16,0.7);
    border: 1px solid rgba(229,82,30,0.25);
    border-radius: 99px;
    padding: 3px 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    backdrop-filter: blur(6px);
    font-family: 'Outfit', sans-serif;
}

/* Responsive */
@media (max-width: 1060px) {
    .gallery-btn-prev { left: 8px; }
    .gallery-btn-next { right: 8px; }
    .gallery-btn { background: rgba(12,13,16,0.85); }
}

@media (max-width: 600px) {
    .gallery-slider-wrap { padding-bottom: 44px; }
    .gallery-btn { width: 38px; height: 38px; }
}

/* ─── FOOTER ────────────────────────────────────────── */
.site-footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 44px 0 0;
    margin-top: 60px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 36px;
    display: grid;
    grid-template-columns: 1.6fr 1fr 1.4fr;
    gap: 40px;
    border-bottom: 1px solid var(--border);
}

.footer-col-brand .footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.footer-tagline {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.6;
}

.footer-col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fire);
    margin-bottom: 14px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-col a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links-col a:hover { color: var(--text-white); }

/* Social links */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    word-break: break-all;
}

.footer-social-link:hover { color: var(--fire); text-shadow: 0 0 8px rgba(229, 82, 30, 0.5); }

.footer-social-link svg { flex-shrink: 0; }

/* Footer bottom bar */
.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 20px;
    text-align: center;
}

.footer-copy { font-size: 12px; color: var(--text-dim); }

/* Responsive footer */
@media (max-width: 768px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
    .footer-col-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
}

/* ─── ANIMATIONS ────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: var(--glow-fire-sm); }
    50%       { box-shadow: var(--glow-fire); }
}

@keyframes glowPulseText {
    0%, 100% { text-shadow: 0 0 8px rgba(229, 82, 30, 0.4); }
    50%       { text-shadow: 0 0 18px rgba(229, 82, 30, 0.75), 0 0 36px rgba(229, 82, 30, 0.3); }
}

.fade-in-up { animation: fadeInUp 0.5s ease both; }
.glow-pulse { animation: glowPulse 2.4s ease-in-out infinite; }

/* ─── NEWS DETAIL ───────────────────────────────────── */
.news-detail-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 36px;
    align-items: start;
}

.news-detail-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 28px;
    border: 1px solid var(--border);
}

.news-detail-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 14px;
    line-height: 1.25;
}

.news-detail-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    font-size: 12px;
    color: var(--text-dim);
    font-weight: 600;
}

.news-detail-body {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
}

.news-sidebar-title {
    font-family: 'Cinzel', serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.news-sidebar-item {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.news-sidebar-item:last-child { border-bottom: none; }
.news-sidebar-item:hover .news-sidebar-item-title { color: var(--fire); }

.news-sidebar-item-title {
    font-weight: 700;
    font-size: 13px;
    color: var(--text-white);
    margin-bottom: 4px;
    line-height: 1.3;
    transition: var(--transition);
}

.news-sidebar-item-date {
    font-size: 11px;
    color: var(--text-dim);
}

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 900px) {
    .creator-hero     { grid-template-columns: 1fr; }
    .game-showcase    { grid-template-columns: 1fr; }
    .comment-layout   { grid-template-columns: 1fr; }
    .spec-grid        { grid-template-columns: 1fr; }
    .news-detail-layout { grid-template-columns: 1fr; }

    .comment-form-card { position: static; }

    .creator-photo-wrap {
        max-width: 220px;
        margin: 0 auto;
    }

    /* Mobile nav */
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: var(--nav-height);
        left: 0; right: 0;
        background: rgba(12, 13, 16, 0.98);
        padding: 16px;
        gap: 4px;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.open { display: flex; }

    .hamburger { display: flex; }

    .dropdown {
        position: static;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: var(--bg-card);
        display: none;
        padding: 6px 6px 6px 18px;
    }

    .has-dropdown.open .dropdown { display: block; }
}

@media (max-width: 600px) {
    .section    { padding: 48px 0; }
    .card-grid  { grid-template-columns: 1fr; }
 