/* ===================================================
   MUSTIKA LINGGA — FRONTEND STYLESHEET
   =================================================== */

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

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

:root {
    --bg-deep: #ffffff;
    --bg-dark: #f8f9fa;
    --bg-card: #ffffff;
    --bg-card2: #f1f3f4;
    --border: rgba(0, 0, 0, 0.1);
    --border-glow: rgba(139, 69, 19, 0.35);

    --header-brown: #3e2723;
    --header-brown-dark: #2e1a17;
    --fire-1: #1976d2;
    --fire-2: #1565c0;
    --fire-3: #2196f3;
    --fire-gold: #64b5f6;
    --fire-soft: rgba(25, 118, 210, 0.12);

    --text-white: #212121;
    --text-muted: #757575;
    --text-dim: #9e9e9e;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-fire: 0 8px 40px rgba(25, 118, 210, 0.2);
    --shadow-glow: 0 0 60px rgba(25, 118, 210, 0.15), 0 0 120px rgba(25, 118, 210, 0.07);

    --nav-height: 72px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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.6;
}

/* ─── SCROLLBAR ─────────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--fire-2);
    border-radius: 99px;
}

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

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

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

.section {
    padding: 90px 0;
}

.section-sm {
    padding: 60px 0;
}

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--fire-1);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 48px);
    color: #757575;
    margin-bottom: 16px;
}

.section-title span {
    color: #757575;
}

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

.fire-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--fire-1), var(--fire-gold));
    border-radius: 99px;
    margin: 16px auto 0;
}

.text-center {
    text-align: center;
}

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

.navbar.scrolled {
    background: rgba(10, 11, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

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

.brand-text {
    font-family: 'Cinzel', serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #757575;
    white-space: nowrap;
}

.brand-accent {
    color: #757575;
}

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

.nav-links li {
    position: relative;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
    background: var(--fire-soft);
}

.nav-link.active {
    color: var(--fire-1);
}

.chevron {
    transition: transform 0.25s ease;
}

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

/* Dropdown */
.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 200px;
    background: var(--bg-card2);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 8px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    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: 10px 14px;
    font-size: 14px;
    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-1);
    background: var(--fire-soft);
}

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

.hamburger span {
    display: block;
    width: 24px;
    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;
    background-image: url("gambar/1681389446_Screenshot 2023-04-13 193007.png");
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

/* Centered hero variant — game image as background */
.hero-bg-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    pointer-events: none;
}

.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(10, 11, 15, 0.60) 0%,
        rgba(10, 11, 15, 0.70) 50%,
        rgba(10, 11, 15, 0.90) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Centered hero content block */
.hero-center-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

.hero-stats-center {
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--fire-1);
    animation: float-particle linear infinite;
    opacity: 0;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.3;
    }

    100% {
        transform: translateY(-20px) scale(1);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(229, 82, 30, 0.15);
    border: 1px solid rgba(229, 82, 30, 0.3);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fire-1);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease both;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(38px, 6vw, 76px);
    font-weight: 900;
    line-height: 1.05;
    color: #757575;
    margin-bottom: 20px;
    animation: fadeInUp 0.7s 0.1s ease both;
}

.hero-title .fire-word {
    color: #757575;
    background: none;
    -webkit-background-clip: unset;
    background-clip: text;
}

.hero-desc {
    font-size: 17px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
    animation: fadeInUp 0.7s 0.2s ease both;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--fire-1), var(--fire-3));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(229, 82, 30, 0.4);
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(229, 82, 30, 0.55);
    color: #fff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--text-white);
    font-size: 15px;
    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 {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s 0.2s ease both;
}

.hero-img-wrap {
    position: relative;
    width: 440px;
    max-width: 100%;
}

.hero-img-wrap::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: var(--radius-xl);
    background: radial-gradient(ellipse, rgba(229, 82, 30, 0.25) 0%, transparent 70%);
    z-index: 0;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.hero-img-wrap img {
    width: 100%;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 1;
    object-fit: cover;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-fire), inset 0 0 0 1px rgba(229, 82, 30, 0.2);
}

.hero-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card2) 100%);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 64px;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-fire);
}

.hero-placeholder p {
    font-size: 16px;
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
}

/* Hero stats */
.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    animation: fadeInUp 0.7s 0.4s ease both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 28px;
    font-weight: 900;
    color: var(--fire-1);
    font-family: 'Cinzel', serif;
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ─── CARD GRID ─────────────────────────────────────── */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* ─── GLASS CARD ────────────────────────────────────── */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--fire-1), transparent);
    opacity: 0;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-fire);
}

.glass-card:hover::before {
    opacity: 1;
}

/* Card image */
.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: 42px;
}

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

.card-tag {
    display: inline-block;
    padding: 4px 10px;
    background: var(--fire-soft);
    color: var(--fire-1);
    font-size: 11px;
    font-weight: 700;
    border-radius: 99px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

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

.card-desc {
    font-size: 14px;
    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: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-dim);
    font-weight: 500;
}

/* ─── PAGE HERO (sub-pages) ─────────────────────────── */
.page-hero {
    padding: 72px 0 60px;
    text-align: center;
    background:
        radial-gradient(ellipse 70% 80% at 50% 0%, rgba(229, 82, 30, 0.1) 0%, transparent 70%),
        var(--bg-deep);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--fire-1), transparent);
    opacity: 0.4;
}

.page-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: #757575;
    margin-bottom: 12px;
}

.page-hero-title span {
    color: #757575;
}

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

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

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

.about-subnav a.active {
    background: linear-gradient(135deg, var(--fire-1), var(--fire-3));
    color: #fff;
    box-shadow: 0 4px 16px rgba(229, 82, 30, 0.4);
}

.about-subnav a:hover:not(.active) {
    color: var(--text-white);
    background: var(--fire-soft);
}

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

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

.creator-photo-wrap::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--fire-1), var(--fire-3));
    z-index: 0;
    opacity: 0.3;
}

.creator-photo {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-xl);
    position: relative;
    z-index: 1;
    border: 3px solid rgba(229, 82, 30, 0.4);
    box-shadow: var(--shadow-fire);
}

.creator-photo-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    gap: 12px;
    border: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

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

.creator-name {
    font-family: 'Cinzel', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 8px;
    line-height: 1.1;
}

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

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

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

.game-image {
    width: 100%;
    border-radius: var(--radius-xl);
    object-fit: cover;
    box-shadow: var(--shadow-fire);
    border: 1px solid var(--border-glow);
}

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

.game-info-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 16px;
}

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

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

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

.news-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-fire);
}

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

.news-card-img-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--bg-card2), var(--bg-card));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

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

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

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

.news-card-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    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(260px, 1fr));
    gap: 28px;
}

.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 {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: var(--shadow-fire);
}

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

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

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

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

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

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

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

.product-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 14px;
    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: 14px;
    border-top: 1px solid var(--border);
}

.product-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--fire-gold);
}

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

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

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

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

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

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

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--fire-1), var(--fire-3));
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 4px 20px rgba(229, 82, 30, 0.35);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(229, 82, 30, 0.5);
}

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

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

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

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

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

.comment-item:hover {
    border-color: var(--border-glow);
}

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

.comment-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--fire-1), var(--fire-3));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
}

.comment-author {
    font-weight: 700;
    color: var(--text-white);
    font-size: 15px;
}

.comment-date {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 2px;
}

.comment-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ─── EMPTY STATE ───────────────────────────────────── */
.empty-state {
    padding: 80px 20px;
    text-align: center;
}

.empty-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.empty-title {
    font-size: 22px;
    font-family: 'Cinzel', serif;
    color: var(--text-white);
    margin-bottom: 8px;
}

.empty-desc {
    font-size: 15px;
    color: var(--text-muted);
}

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

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

.feature-box:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
    box-shadow: var(--shadow-fire);
}

.feature-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.feature-title {
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: var(--text-white);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 700;
    color: var(--text-muted);
    min-width: 160px;
}

.info-value {
    color: var(--text-white);
}

/* ─── HIGHLIGHT QUOTE ───────────────────────────────── */
.fire-quote {
    background: var(--fire-soft);
    border-left: 4px solid var(--fire-1);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 20px 24px;
    margin: 32px 0;
}

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

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
}

.footer-links a {
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--fire-1);
}

.footer-copy {
    font-size: 13px;
    color: #757575;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(32px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease both;
}

/* ─── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 900px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .creator-hero {
        grid-template-columns: 1fr;
    }

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

    .game-showcase {
        grid-template-columns: 1fr;
    }

    .comment-layout {
        grid-template-columns: 1fr;
    }

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

    /* Mobile nav */
    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(10, 11, 15, 0.98);
        backdrop-filter: blur(20px);
        padding: 20px;
        gap: 8px;
        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: 8px 8px 8px 20px;
    }

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

@media (max-width: 600px) {
    .section {
        padding: 60px 0;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .store-grid {
        grid-template-columns: 1fr 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 400px) {
    .store-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

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

.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: 3px;
    transition: var(--transition);
}

.spec-card-min::before {
    background: linear-gradient(90deg, #6b7280, #9ca3af);
}

.spec-card-rec::before {
    background: linear-gradient(90deg, var(--fire-1), var(--fire-gold));
}

.spec-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-fire);
}

.spec-card-rec:hover {
    border-color: var(--border-glow);
}

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

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

.spec-badge-min {
    background: rgba(107, 114, 128, 0.15);
    color: #9ca3af;
    border: 1px solid rgba(107, 114, 128, 0.3);
}

.spec-badge-rec {
    background: rgba(229, 82, 30, 0.15);
    color: var(--fire-1);
    border: 1px solid rgba(229, 82, 30, 0.3);
}

.spec-card-title {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 6px;
}

.spec-card-sub {
    font-size: 13px;
    color: var(--text-dim);
}

.spec-list {
    padding: 20px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.spec-row:hover {
    border-color: rgba(229, 82, 30, 0.2);
    background: rgba(229, 82, 30, 0.04);
}

.spec-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

.spec-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.spec-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-white);
    line-height: 1.4;
}

.spec-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(229, 82, 30, 0.06);
    border: 1px solid rgba(229, 82, 30, 0.2);
    border-radius: var(--radius-md);
    margin-top: 8px;
}

.spec-note-icon {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

.spec-note p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

.spec-note strong {
    color: var(--fire-1);
}

/* Responsive spec-grid */
@media (max-width: 900px) {
    .spec-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .spec-list {
        padding: 16px 18px 20px;
    }

    .spec-card-header {
        padding: 20px 18px 16px;
    }
}