:root {
    --bg-primary: #07070d;
    --bg-secondary: #0f0f1a;
    --bg-card: #16161f;
    --bg-card-hover: #1f1f2e;
    --text-primary: #eef0f8;
    --text-secondary: #9aa0b8;
    --accent-red: #ff2d55;
    --accent-orange: #ff6b35;
    --accent-purple: #8b5cf6;
    --accent-blue: #3b82f6;
    --accent-green: #10b981;
    --accent-yellow: #fbbf24;
    --accent-cyan: #22d3ee;
    --gradient: linear-gradient(135deg, #ff2d55, #ff6b35, #fbbf24);
    --gradient-cool: linear-gradient(135deg, #3b82f6, #8b5cf6, #22d3ee);
    --gradient-hot: linear-gradient(135deg, #ff2d55, #8b5cf6);
    --border: rgba(255, 45, 85, 0.18);
    --border-cool: rgba(59, 130, 246, 0.18);
    --glow: 0 0 22px rgba(255, 45, 85, 0.35);
    --glow-blue: 0 0 22px rgba(59, 130, 246, 0.3);
    --glow-green: 0 0 22px rgba(16, 185, 129, 0.3);
    --radius: 14px;
    --rev-badge-bg: linear-gradient(135deg, #ff2d55, #ff6b35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

a { color: inherit; }
button { font-family: inherit; }

#pc-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== Revision badge ===== */
.rev-badge {
    position: fixed;
    bottom: 14px; right: 14px;
    z-index: 9999;
    background: var(--rev-badge-bg);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    box-shadow: var(--glow);
    opacity: 0.9;
    user-select: none;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed; top: 0; width: 100%;
    padding: 0.9rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
    background: rgba(7, 7, 13, 0.88);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
}

.nav-brand {
    display: flex; align-items: center; gap: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem; font-weight: 800;
}

.logo-icon {
    font-size: 1.7rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links { display: flex; gap: 1.6rem; align-items: center; }
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -8px; left: 0;
    width: 100%; height: 2px;
    background: var(--gradient);
    border-radius: 2px;
}

.nav-toggle {
    display: none;
    background: none; border: none; color: var(--text-primary);
    font-size: 1.6rem; cursor: pointer;
}

/* ===== Hero ===== */
.hero {
    position: relative; z-index: 1;
    min-height: 92vh;
    padding: 9rem 2rem 4rem;
    display: flex; flex-direction: column; align-items: center;
}
.hero-content { text-align: center; max-width: 860px; margin-bottom: 1.5rem; }

.hero-eyebrow {
    display: inline-block;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    border: 1px solid rgba(34, 211, 238, 0.4);
    padding: 0.35rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.25rem;
    background: rgba(34, 211, 238, 0.08);
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem; font-weight: 900;
    line-height: 1.08; margin-bottom: 1.25rem;
}
.hero-title span { display: block; }
.gradient-text { font-size: 4rem; }

.glitch { position: relative; }
.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute; left: 0;
    width: 100%; height: 100%;
}
.glitch::before {
    animation: glitch-1 2s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    -webkit-text-fill-color: var(--accent-red);
    opacity: 0.35;
}
.glitch::after {
    animation: glitch-2 2s infinite linear alternate-reverse;
    clip-path: polygon(0 60%, 100% 60%, 100% 100%, 0 100%);
    -webkit-text-fill-color: var(--accent-purple);
    opacity: 0.35;
}
@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-3px, 3px); }
    40% { transform: translate(-3px, -3px); }
    60% { transform: translate(3px, 3px); }
    80% { transform: translate(3px, -3px); }
}
@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(3px, -3px); }
    40% { transform: translate(3px, 3px); }
    60% { transform: translate(-3px, -3px); }
    80% { transform: translate(-3px, 3px); }
}

.hero-subtitle {
    font-size: 1.12rem;
    color: var(--text-secondary);
    max-width: 640px; margin: 0 auto 2rem;
    line-height: 1.65;
}

.hero-buttons { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.85rem 1.4rem;
    border-radius: 10px;
    font-weight: 600; text-decoration: none;
    transition: all 0.25s;
    border: none; cursor: pointer;
}
.btn-primary { background: var(--gradient); color: white; box-shadow: var(--glow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(255, 45, 85, 0.55); }
.btn-secondary { background: var(--bg-card); color: var(--text-primary); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--accent-red); box-shadow: var(--glow); transform: translateY(-2px); }
.btn-cool { background: var(--gradient-cool); color: white; box-shadow: var(--glow-blue); }
.btn-cool:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(59, 130, 246, 0.5); }
.btn-green { background: linear-gradient(135deg, #10b981, #22d3ee); color: #06281f; box-shadow: var(--glow-green); }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 0 28px rgba(16, 185, 129, 0.5); }

/* ===== News ticker ===== */
.news-ticker {
    display: flex; align-items: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    margin-bottom: 2.5rem;
    max-width: 900px; width: 100%;
    overflow: hidden;
}
.ticker-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem; font-weight: 700;
    color: var(--accent-red);
    margin-right: 1rem;
    white-space: nowrap;
    flex-shrink: 0;
}
.ticker-content { overflow: hidden; white-space: nowrap; flex: 1; }
.ticker-content span {
    display: inline-block;
    animation: ticker 32s linear infinite;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-left: 100%;
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* ===== Feature cards ===== */
.section { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 2.5rem 2rem; }
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem; margin-bottom: 1.75rem;
    text-align: center;
    letter-spacing: 0.5px;
}
.section-title .st-sub { display: block; font-family: 'Inter'; font-size: 0.85rem; color: var(--text-secondary); font-weight: 400; margin-top: 0.35rem; }

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.4rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.8rem;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-5px); border-color: var(--accent-red); box-shadow: var(--glow); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon { font-size: 2.3rem; margin-bottom: 0.9rem; }
.feature-card h3 { font-family: 'Orbitron', sans-serif; font-size: 1.05rem; margin-bottom: 0.6rem; }
.feature-card p { color: var(--text-secondary); line-height: 1.6; margin-bottom: 0.9rem; font-size: 0.92rem; }
.feature-link { color: var(--accent-orange); font-weight: 600; font-size: 0.9rem; }

/* ===== Game cards / featured ===== */
.featured-section { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 2.5rem 2rem 3rem; }

.spotlight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.4rem;
    margin-bottom: 2rem;
}
.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.6rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}
.game-card:hover { transform: translateY(-4px); box-shadow: var(--glow); border-color: var(--accent-purple); }
.game-card.special { border-color: rgba(139, 92, 246, 0.5); background: linear-gradient(160deg, #16161f, #171126); }
.game-badge {
    display: inline-block;
    padding: 0.2rem 0.55rem;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 5px;
    font-size: 0.68rem; font-weight: 600;
    color: var(--accent-purple);
    margin-bottom: 0.75rem;
    font-family: 'Orbitron', sans-serif;
}
.game-card h3 { font-family: 'Orbitron', sans-serif; font-size: 1.05rem; margin-bottom: 0.5rem; }
.game-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.55; margin-bottom: 0.8rem; }
.game-status { display: inline-block; padding: 0.2rem 0.55rem; border-radius: 5px; font-size: 0.72rem; font-weight: 700; margin-right: 0.4rem; }
.game-status.upcoming { background: rgba(251, 191, 36, 0.15); color: var(--accent-yellow); }
.game-status.play { background: rgba(16, 185, 129, 0.15); color: var(--accent-green); }
.game-status.released { background: rgba(34, 211, 238, 0.15); color: var(--accent-cyan); }
.game-link { display: inline-block; margin-top: 0.4rem; color: var(--accent-cyan); font-weight: 600; font-size: 0.9rem; }

/* ===== Deal card ===== */
.deal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-cool);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.deal-card:hover { transform: translateY(-4px); border-color: var(--accent-cyan); box-shadow: var(--glow-blue); }
.deal-tag {
    align-self: flex-start;
    padding: 0.25rem 0.6rem;
    border-radius: 5px;
    font-size: 0.68rem; font-weight: 800;
    text-transform: uppercase;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 0.75rem;
    background: rgba(255, 45, 85, 0.18); color: #ff5c7a;
}
.deal-card h3 { font-family: 'Orbitron', sans-serif; font-size: 0.98rem; margin-bottom: 0.5rem; }
.deal-card p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.55; margin-bottom: 0.75rem; flex: 1; }
.deal-price { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.85rem; }
.deal-price .now { font-size: 1.35rem; font-weight: 800; color: var(--accent-green); }
.deal-price .was { color: var(--text-secondary); text-decoration: line-through; font-size: 0.85rem; }
.deal-price .save { background: rgba(251, 191, 36, 0.18); color: var(--accent-yellow); padding: 0.15rem 0.45rem; border-radius: 5px; font-size: 0.75rem; font-weight: 700; }
.deal-retailer { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--text-secondary); margin-bottom: 0.9rem; }
.deal-btn { text-align: center; padding: 0.6rem; border-radius: 8px; background: var(--gradient-cool); color: white; font-weight: 700; text-decoration: none; transition: all 0.25s; }
.deal-btn:hover { box-shadow: var(--glow-blue); transform: translateY(-2px); }

.affiliate-note {
    max-width: 760px; margin: 2rem auto 0;
    background: var(--bg-card);
    border: 1px dashed var(--border-cool);
    border-radius: 12px;
    padding: 1.1rem 1.4rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.6;
}

/* ===== Tools / system check ===== */
.tools-wrap { max-width: 900px; margin: 0 auto; }
.tool-card {
    background: var(--bg-card);
    border: 1px solid var(--border-cool);
    border-radius: var(--radius);
    padding: 1.8rem;
    margin-bottom: 1.6rem;
}
.tool-card h3 { font-family: 'Orbitron', sans-serif; font-size: 1.1rem; margin-bottom: 1rem; }

.speed-display {
    display: flex; gap: 1.5rem; flex-wrap: wrap;
    justify-content: center; margin: 1.5rem 0;
}
.speed-stat { text-align: center; }
.speed-stat .snum { font-size: 2.4rem; font-weight: 900; font-family: 'Orbitron', sans-serif; color: var(--accent-cyan); }
.speed-stat .snum small { font-size: 1.1rem; color: var(--text-secondary); }
.speed-stat .slbl { font-size: 0.8rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 1px; }

.sys-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 1rem;
}
.sys-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-cool);
    border-radius: 10px;
    padding: 0.9rem 1rem;
}
.sys-item .k { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-secondary); margin-bottom: 0.25rem; }
.sys-item .v { font-size: 0.98rem; font-weight: 600; word-break: break-word; }

.progress-ring-box { text-align: center; }
progress { width: 100%; height: 12px; border-radius: 6px; overflow: hidden; appearance: none; }
progress::-webkit-progress-bar { background: var(--bg-secondary); border-radius: 6px; }
progress::-webkit-progress-value { background: var(--gradient-cool); border-radius: 6px; }
progress::-moz-progress-bar { background: var(--gradient-cool); border-radius: 6px; }

.note-inline { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.5; margin-top: 0.9rem; }

/* ===== News page (shared) ===== */
.page-header {
    padding: 8.5rem 2rem 2.5rem;
    text-align: center;
    position: relative; z-index: 1;
}
.page-header h1 { font-family: 'Orbitron', sans-serif; font-size: 2.4rem; margin-bottom: 0.5rem; }
.page-header p { color: var(--text-secondary); font-size: 1.05rem; }
.page-body { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto; padding: 0 2rem 4rem; }

.highlight-card {
    background: var(--bg-card);
    border: 1px solid var(--accent-purple);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2rem;
    align-items: center;
}
.highlight-card .hl-visual { background: var(--bg-secondary); border-radius: 12px; min-height: 220px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.hl-badge { display: inline-block; padding: 0.3rem 0.8rem; background: rgba(255, 45, 85, 0.2); border: 1px solid var(--accent-red); border-radius: 6px; font-size: 0.8rem; font-weight: 600; color: var(--accent-red); margin-bottom: 0.75rem; }
.highlight-card h2 { font-family: 'Orbitron', sans-serif; font-size: 1.5rem; margin-bottom: 0.75rem; }
.highlight-card p { color: var(--text-secondary); line-height: 1.7; margin-bottom: 1rem; }

.news-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.4rem; margin-bottom: 2.5rem; }
.news-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all 0.3s; }
.news-card:hover { transform: translateY(-4px); border-color: var(--accent-red); box-shadow: var(--glow); }
.news-img { height: 170px; background: var(--bg-secondary); display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; }
.news-img .tag { position: absolute; top: 0.75rem; left: 0.75rem; padding: 0.2rem 0.6rem; border-radius: 4px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; font-family: 'Orbitron', sans-serif; }
.tag-breaking { background: var(--accent-red); color: white; }
.tag-update { background: var(--accent-orange); color: white; }
.tag-review { background: var(--accent-purple); color: white; }
.tag-rumor { background: var(--accent-blue); color: white; }
.tag-release { background: var(--accent-green); color: white; }
.news-body { padding: 1.2rem; }
.news-body h3 { font-family: 'Orbitron', sans-serif; font-size: 0.95rem; margin-bottom: 0.5rem; line-height: 1.4; }
.news-body p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.6; margin-bottom: 0.7rem; }
.news-meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.75rem; color: var(--text-secondary); }
.news-meta a.article-link { color: var(--accent-cyan); text-decoration: none; font-weight: 600; }
.news-meta a.article-link:hover { text-decoration: underline; }

/* ===== Footer ===== */
.footer {
    position: relative; z-index: 1;
    padding: 2rem;
    border-top: 1px solid var(--border);
    background: rgba(7, 7, 13, 0.92);
}
.footer-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-brand { font-family: 'Orbitron', sans-serif; font-size: 1.2rem; font-weight: 800; }
.footer-copy { color: var(--text-secondary); font-size: 0.85rem; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .nav-toggle { display: inline-block; }
    .nav-links {
        position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; align-items: stretch;
        gap: 0.5rem;
        background: rgba(7, 7, 13, 0.97);
        padding: 1rem 2rem 1.5rem;
        border-bottom: 1px solid var(--border);
        display: none;
    }
    .nav-links.open { display: flex; }
    .nav-links a.active::after { display: none; }
    .nav-links a { padding: 0.6rem 0; font-size: 1.05rem; }
    .navbar { flex-wrap: wrap; }
    .hero { padding-top: 8rem; }
    .hero-title { font-size: 2rem; }
    .gradient-text { font-size: 2.4rem; }
    .hero-buttons { flex-direction: column; align-items: stretch; display: flex; }
    .page-header h1 { font-size: 1.8rem; }
    .highlight-card { grid-template-columns: 1fr; }
    .sys-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 1.2rem; }
}

/* ===== Game Hub pages ===== */
.game-hero {
    position: relative; z-index: 1;
    padding: 8.5rem 2rem 2.5rem;
    text-align: center;
    max-width: 1000px; margin: 0 auto;
}
.game-hero .gh-badge { display:inline-block; padding:0.35rem 1rem; border-radius:30px; font-family:'Orbitron',sans-serif; font-size:0.75rem; font-weight:700; letter-spacing:2px; text-transform:uppercase; margin-bottom:1rem; }
.game-hero h1 { font-family:'Orbitron',sans-serif; font-size:2.6rem; font-weight:900; margin-bottom:0.5rem; }
.game-hero .gh-tag { color:var(--text-secondary); font-size:1.05rem; max-width:600px; margin:0 auto 1.5rem; }
.gh-status-bar { display:flex; justify-content:center; gap:1.5rem; flex-wrap:wrap; font-size:0.85rem; }
.gh-status { display:inline-flex; align-items:center; gap:0.4rem; padding:0.4rem 0.95rem; background:var(--bg-card); border:1px solid var(--border); border-radius:30px; }
.gh-status .dot { width:9px; height:9px; border-radius:50%; background:var(--accent-green); box-shadow:0 0 8px var(--accent-green); }
.gh-status .dot.amber { background:var(--accent-yellow); box-shadow:0 0 8px var(--accent-yellow); }
.gh-status .dot.red { background:var(--accent-red); box-shadow:0 0 8px var(--accent-red); }
.gh-countdown { margin-top:1.25rem; font-size:0.9rem; color:var(--text-secondary); }
.gh-countdown b { color:var(--accent-cyan); font-size:1.15rem; }

.hub-wrap { position:relative; z-index:1; max-width:1000px; margin:0 auto; padding:1rem 2rem 4rem; }
.hub-section { margin-bottom:2.5rem; }
.hub-title { font-family:'Orbitron',sans-serif; font-size:1.3rem; margin-bottom:1rem; padding-bottom:0.5rem; border-bottom:2px solid var(--accent-purple); display:inline-block; }
.hub-title.cool { border-color:var(--accent-cyan); }
.hub-title.hot { border-color:var(--accent-red); }

/* Latest news (feed) block */
.news-feed { background:var(--bg-card); border:1px solid var(--border-cool); border-radius:14px; padding:1.25rem; }
.news-feed-item { display:flex; justify-content:space-between; gap:1rem; padding:0.8rem 0; border-bottom:1px solid var(--border); }
.news-feed-item:last-child { border-bottom:none; }
.news-feed-item a { text-decoration:none; font-weight:600; color:var(--text-primary); }
.news-feed-item a:hover { color:var(--accent-cyan); }
.news-feed-item .nf-date { color:var(--text-secondary); font-size:0.78rem; white-space:nowrap; }
.news-feed-empty { color:var(--text-secondary); font-size:0.88rem; padding:0.5rem 0; }

/* Requirements table */
.req-table { width:100%; border-collapse:collapse; background:var(--bg-card); border-radius:12px; overflow:hidden; }
.req-table th { background:var(--bg-secondary); padding:0.75rem; text-align:left; font-family:'Orbitron',sans-serif; font-size:0.78rem; }
.req-table td { padding:0.7rem 0.75rem; border-top:1px solid var(--border); font-size:0.88rem; }
.req-table tr:hover td { background:rgba(139,92,246,0.05); }

/* Known issues / FAQ */
.faq-item { background:var(--bg-card); border:1px solid var(--border); border-radius:12px; margin-bottom:0.75rem; overflow:hidden; }
.faq-q { width:100%; text-align:left; background:transparent; border:none; color:var(--text-primary); font-weight:700; font-size:0.95rem; padding:0.95rem 1.1rem; cursor:pointer; display:flex; justify-content:space-between; align-items:center; }
.faq-q .faq-icon { color:var(--accent-cyan); transition:transform 0.25s; }
.faq-item.open .faq-icon { transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height 0.3s ease; }
.faq-item.open .faq-a { max-height:400px; }
.faq-a-inner { padding:0 1.1rem 1.1rem; color:var(--text-secondary); font-size:0.9rem; line-height:1.7; }
.faq-a-inner .fix { display:block; margin-top:0.5rem; padding:0.55rem 0.8rem; background:rgba(16,185,129,0.1); border-left:3px solid var(--accent-green); border-radius:6px; color:var(--text-primary); font-size:0.85rem; }
.faq-a-inner .fix b { color:var(--accent-green); }

/* Dev updates timeline */
.timeline { border-left:2px solid var(--border-cool); margin-left:0.5rem; padding-left:1.3rem; }
.tl-item { position:relative; margin-bottom:1.3rem; }
.tl-item::before { content:''; position:absolute; left:-1.75rem; top:0.3rem; width:11px; height:11px; border-radius:50%; background:var(--accent-cyan); box-shadow:0 0 8px var(--accent-cyan); }
.tl-date { font-family:'Orbitron',sans-serif; font-size:0.72rem; color:var(--accent-cyan); text-transform:uppercase; letter-spacing:1px; }
.tl-title { font-weight:700; font-size:0.95rem; margin:0.2rem 0 0.25rem; }
.tl-body { color:var(--text-secondary); font-size:0.85rem; line-height:1.6; }

/* Community chips */
.comm-chip { display:inline-flex; align-items:center; gap:0.5rem; padding:0.55rem 1rem; background:var(--bg-card); border:1px solid var(--border); border-radius:30px; text-decoration:none; font-weight:600; font-size:0.85rem; margin:0 0.4rem 0.4rem 0; transition:all 0.2s; }
.comm-chip:hover { border-color:var(--accent-cyan); color:var(--accent-cyan); transform:translateY(-2px); }

.hub-quick { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1rem; }
.quick-card { background:var(--bg-card); border:1px solid var(--border-cool); border-radius:12px; padding:1.2rem; text-decoration:none; transition:all 0.25s; }
.quick-card:hover { border-color:var(--accent-cyan); box-shadow:var(--glow-blue); transform:translateY(-3px); }
.quick-card .q-icon { font-size:1.6rem; margin-bottom:0.5rem; }
.quick-card h4 { font-family:'Orbitron',sans-serif; font-size:0.9rem; margin-bottom:0.3rem; }
.quick-card p { color:var(--text-secondary); font-size:0.78rem; line-height:1.5; }

@media (max-width:768px){
    .game-hero h1{font-size:1.9rem;}
    .gh-status-bar{flex-direction:column;align-items:center;}
    .hub-title{font-size:1.1rem;}
}
