/*
Theme Name: GameZone
Theme URI: https://gamezone.com
Author: Antigravity
Author URI: https://gamezone.com
Description: A premium, highly optimized WordPress theme designed for gaming APK download directories. Works with Elementor. Features a custom zigzag homepage game grid, rating widgets, system requirements specs, and player review cards. Combine playyonogames.com and allnewyonoapps.com styles.
Version: 1.3.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gamezone
Tags: dark, responsive-layout, custom-menu, featured-images, translation-ready, custom-background
*/

/* ==========================================================================
   1. CSS VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
    --color-bg: #0a0a0f;
    --color-surface: #12121a;
    --color-surface-2: #1a1a28;
    --color-border: #2a2a3a;
    --color-accent: #FFD700; /* Gold */
    --color-accent-hover: #e6c200;
    --color-green: #00e676; /* Neon Green */
    --color-green-hover: #00c860;
    --color-text: #e0e0e0;
    --color-muted: #888899;
    --accent-red: #ff3344;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --glow: 0 0 20px rgba(255,215,0,0.25);
    --download-glow: 0 0 20px rgba(0, 230, 118, 0.4);
    --max-width: 1200px;
    --transition: all 0.3s ease;
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-accent);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; border-bottom: 2px solid var(--color-border); padding-bottom: 0.5rem; margin-bottom: 1.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   3. LAYOUT STRUCTURE
   ========================================================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title h2 {
    display: inline-block;
    border-bottom: 3px solid var(--color-accent);
    padding-bottom: 0.5rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ==========================================================================
   4. NAVIGATION & HEADER
   ========================================================================== */
.sticky-header {
    position: sticky;
    top: 0;
    background-color: rgba(13, 13, 21, 0.95);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.sticky-header.scrolled {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
}

.announcement-bar {
    background: linear-gradient(90deg, #120e2e, #1a0f1a);
    color: var(--color-accent);
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 1.5px;
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.main-navigation a {
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: var(--transition);
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
    color: var(--color-accent);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after {
    width: 100%;
}

.hamburger-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* ==========================================================================
   5. HERO BANNER
   ========================================================================== */
.hero-banner {
    position: relative;
    padding: 7rem 0;
    background: linear-gradient(135deg, #07070a 0%, #12121e 50%, #1c0828 100%);
    background-size: 200% 200%;
    animation: hero-gradient 12s ease infinite;
    border-bottom: 1px solid var(--color-border);
    text-align: center;
    overflow: hidden;
}

@keyframes hero-gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
        radial-gradient(rgba(255, 215, 0, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.5;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--color-muted);
    margin-bottom: 2.5rem;
    font-weight: 500;
}

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

.hero-stats-row {
    display: inline-flex;
    justify-content: center;
    gap: 3.5rem;
    margin-top: 4rem;
    padding: 1.2rem 3rem;
    background-color: rgba(18, 18, 26, 0.8);
    border: 1px solid var(--color-border);
    border-radius: 50px;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-stat-item {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-stat-item strong {
    color: var(--color-accent);
    font-size: 1.5rem;
    margin-right: 5px;
}

/* ==========================================================================
   6. FEATURED GAME SPOTLIGHT
   ========================================================================== */
.featured-spotlight {
    background-color: var(--color-surface);
    border: 2px solid var(--color-accent);
    border-radius: var(--radius);
    padding: 3rem;
    box-shadow: var(--glow);
    position: relative;
    overflow: hidden;
}

.featured-label-above {
    font-family: var(--font-heading);
    color: var(--color-accent);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: block;
    letter-spacing: 1px;
}

.spotlight-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: center;
}

.spotlight-logo {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    border: 2px solid var(--color-border);
    aspect-ratio: 1/1;
    background-color: #050508;
}

.spotlight-info h3 {
    font-size: 2.5rem;
    margin-bottom: 0.4rem;
    color: #fff;
}

.spotlight-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
    align-items: center;
}

.spotlight-desc {
    color: var(--color-muted);
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
    line-height: 1.7;
}

.spotlight-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.8rem;
    background-color: var(--color-surface-2);
    padding: 1.2rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.spotlight-specs .spec-cell {
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
    color: var(--color-muted);
    text-transform: uppercase;
}

.spotlight-specs .spec-cell strong {
    color: #fff;
    font-size: 1.05rem;
    margin-top: 0.2rem;
    font-family: var(--font-heading);
}

/* ==========================================================================
   7. ZIGZAG GAME GRID (KEY HOMEPAGE SECTION)
   ========================================================================== */
.zigzag-section {
    padding: 6rem 0;
    background-color: rgba(18, 18, 26, 0.3);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.zigzag-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 40px 0;
    position: relative;
}

/* Alternate Heights for W Shape */
.zigzag-grid .game-card:nth-child(odd) {
    margin-top: 0px;      /* HIGH position */
}

.zigzag-grid .game-card:nth-child(even) {
    margin-top: 80px;     /* LOW position — creates W shape */
}

/* Decorative SVG lines inside zigzag grid */
.zigzag-grid-lines {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    stroke: rgba(255, 215, 0, 0.15);
    stroke-width: 2;
    stroke-dasharray: 6 6;
}

/* ==========================================================================
   8. GAME CARD DESIGN
   ========================================================================== */
.game-card {
    width: 200px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

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

.game-card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    background-color: #0c0c12;
}

.game-card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.game-card:hover .game-card-img-wrapper img {
    transform: scale(1.08);
}

.game-card-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.game-card-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-card-title a {
    color: #fff;
}

.game-card-title a:hover {
    color: var(--color-accent);
}

.game-card .card-stats {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--color-muted);
    padding: 0 0 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 8px;
}

.game-card .card-stats-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    color: var(--color-muted);
    margin-bottom: 12px;
}

.game-card .card-stats-row span strong {
    color: #fff;
}

.game-card .card-bonus {
    background: rgba(255,215,0,0.1);
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 12px;
    border: 1.5px dashed rgba(255, 215, 0, 0.3);
}

.game-card .btn-download {
    background: var(--color-green);
    color: #000;
    display: block;
    text-align: center;
    padding: 10px 5px;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 0 0 var(--radius) var(--radius);
    margin-top: auto;
    font-family: var(--font-heading);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.game-card .btn-download:hover {
    background: var(--color-green-hover);
    box-shadow: var(--download-glow);
}

/* ==========================================================================
   9. QUICK STATS BAR
   ========================================================================== */
.stats-bar {
    background: var(--color-surface-2);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 2.5rem;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    gap: 2rem;
}

.stats-bar-item {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.stats-bar-item span {
    color: var(--color-accent);
    text-shadow: 0 0 10px rgba(255,215,0,0.3);
}

/* ==========================================================================
   10. SECURITY BADGES
   ========================================================================== */
.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge-item {
    text-align: center;
    padding: 2rem;
    background: var(--color-surface);
    border-radius: var(--radius);
    border: 1px solid var(--color-border);
    min-width: 180px;
    transition: var(--transition);
}

.badge-item:hover {
    border-color: var(--color-green);
    transform: translateY(-4px);
}

.badge-icon {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    display: block;
}

.badge-item h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
}

/* ==========================================================================
   11. PLAYER REVIEWS (TESTIMONIALS)
   ========================================================================== */
.review-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2.5rem 2rem 2rem;
    position: relative;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--color-accent);
}

.review-card::before {
    content: '"';
    font-size: 70px;
    color: var(--color-accent);
    opacity: 0.15;
    position: absolute;
    top: -5px;
    left: 20px;
    font-family: serif;
    line-height: 1;
}

.review-stars {
    color: var(--color-accent);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.review-text {
    color: var(--color-text);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.review-author {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.1rem;
    border-top: 1px solid var(--color-border);
    padding-top: 0.8rem;
}

/* ==========================================================================
   12. FAQ ACCORDION
   ========================================================================== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 1.3rem 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    user-select: none;
}

.faq-question::after {
    content: '+';
    font-size: 1.6rem;
    color: var(--color-accent);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    padding: 0 1.8rem;
    overflow: hidden;
    color: var(--color-muted);
    transition: all 0.3s ease-out;
}

.faq-item.active {
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.05);
}

.faq-item.active .faq-question {
    color: var(--color-accent);
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.8rem 1.8rem;
}

/* ==========================================================================
   13. SINGLE GAME DETAIL PAGE components
   ========================================================================== */
.game-detail-layout {
    margin: 3rem 0;
}

.breadcrumbs {
    padding: 1.5rem 0;
    font-size: 0.9rem;
    color: var(--color-muted);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 3rem;
}

.breadcrumbs a {
    color: var(--color-muted);
}

.breadcrumbs a:hover {
    color: var(--color-accent);
}

.breadcrumbs span {
    margin: 0 0.5rem;
}

.game-detail-header {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 3rem;
}

.game-detail-logo {
    border-radius: var(--radius);
    overflow: hidden;
    border: 2px solid var(--color-border);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    aspect-ratio: 1/1;
    background-color: #000;
}

.game-detail-info h1 {
    font-size: 3.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.game-detail-rating {
    margin-bottom: 1.5rem;
}

.game-detail-rating .numeric-rating {
    font-size: 1.1rem;
}

.single-stats-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
}

.single-stats-badge {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

.single-cta-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.btn-telegram {
    background-color: #0088cc;
    color: #fff;
}

.btn-telegram:hover {
    background-color: #0077b3;
    box-shadow: 0 0 20px rgba(0, 136, 204, 0.4);
    transform: translateY(-2px);
}

.game-short-desc {
    color: var(--color-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 1.5rem;
}

/* Quick Stats Box style */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.8rem;
    margin-bottom: 4rem;
    text-align: center;
    gap: 1.5rem;
}

.quick-stats-cell {
    display: flex;
    flex-direction: column;
}

.quick-stats-cell span {
    font-size: 0.8rem;
    color: var(--color-muted);
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.quick-stats-cell strong {
    font-size: 1.4rem;
    color: #fff;
    font-family: var(--font-heading);
}

/* Typography styles for game guides */
.game-content-guide {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 3rem;
    margin-bottom: 4rem;
}

.game-content-guide h2 {
    font-size: 2.2rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.game-content-guide h3 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    color: #fff;
}

.game-content-guide p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--color-text);
}

.game-content-guide ul, .game-content-guide ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.game-content-guide li {
    margin-bottom: 0.6rem;
}

/* How to Download Steps styling */
.how-to-download-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.download-step-card {
    background-color: var(--color-surface-2);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.8rem;
    text-align: center;
    transition: var(--transition);
}

.download-step-card:hover {
    border-color: var(--color-green);
}

.download-step-num {
    background-color: rgba(0, 230, 118, 0.1);
    color: var(--color-green);
    border: 2px solid var(--color-green);
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    margin: 0 auto 1rem;
    font-weight: 800;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.download-step-card h4 {
    color: #fff;
    margin-bottom: 0.5rem;
}

.download-step-card p {
    font-size: 0.85rem;
    color: var(--color-muted);
}

/* System Requirements Table styling */
.requirements-container {
    margin-bottom: 4rem;
}

.sys-req-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.sys-req-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--color-border);
}

.sys-req-table tr:last-child td {
    border-bottom: none;
}

.sys-req-table td:first-child {
    color: var(--color-muted);
    font-weight: 700;
    width: 40%;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.sys-req-table td:last-child {
    color: #fff;
    font-weight: 600;
}

/* ==========================================================================
   14. STANDARD PAGE AND WIDGETS
   ========================================================================== */
.main-sidebar-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.standard-page-container {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 3rem;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.page-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.widget {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2rem;
}

.widget-title {
    font-size: 1.35rem;
    margin-bottom: 1.2rem;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 0.4rem;
}

.widget ul {
    list-style: none;
}

.widget li {
    margin-bottom: 0.8rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.widget li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget a {
    color: var(--color-text);
}

.widget a:hover {
    color: var(--color-accent);
}

/* ==========================================================================
   15. STANDARD ARCHIVE & CATEGORY STYLES
   ========================================================================== */
.archive-header {
    background: linear-gradient(180deg, #12121a 0%, #0a0a0f 100%);
    padding: 4.5rem 0;
    border-bottom: 1px solid var(--color-border);
    text-align: center;
    margin-bottom: 4rem;
}

.archive-header h1 {
    font-size: 3.2rem;
    margin-bottom: 0.6rem;
}

.archive-description {
    max-width: 750px;
    margin: 0 auto;
    color: var(--color-muted);
    font-size: 1.1rem;
}

.category-navigation {
    margin-bottom: 4.5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.category-badge-btn {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    border: 1.5px solid var(--color-accent);
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    background-color: transparent;
    transition: var(--transition);
    cursor: pointer;
}

.category-badge-btn:hover,
.category-badge-btn.active {
    background-color: var(--color-accent);
    color: #000;
    box-shadow: var(--glow);
    transform: translateY(-2px);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 5rem;
}

.pagination a, .pagination span {
    display: inline-block;
    padding: 0.7rem 1.4rem;
    border: 1px solid var(--color-border);
    background-color: var(--color-surface);
    color: var(--color-text);
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.pagination .current, .pagination a:hover {
    background-color: var(--color-accent);
    color: #000;
    border-color: var(--color-accent);
}

/* ==========================================================================
   16. FOOTER
   ========================================================================== */
.site-footer {
    background-color: #06060a;
    border-top: 1px solid var(--color-border);
    padding-top: 5rem;
    margin-top: 6rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 1.3rem;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 0.4rem;
}

.footer-widget p {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    color: var(--color-accent);
    font-weight: 700;
    font-family: var(--font-heading);
}

.social-icon:hover {
    background-color: var(--color-accent);
    color: #000;
    transform: translateY(-3px);
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 0.7rem;
}

.footer-links-list a {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.footer-links-list a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-contact-info {
    font-size: 0.95rem;
    color: var(--color-muted);
}

.footer-contact-info p {
    margin-bottom: 0.6rem;
}

.footer-bottom-bar {
    background-color: #030305;
    border-top: 1px solid var(--color-border);
    padding: 2rem 0;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--color-accent);
}

.footer-alert-18 {
    margin-top: 0.8rem;
    color: var(--accent-red);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   17. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
    .grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 992px) {
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .spotlight-layout {
        grid-template-columns: 180px 1fr;
        gap: 2rem;
    }
    .main-sidebar-layout {
        grid-template-columns: 1fr;
    }
    .how-to-download-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.4rem; }
    h2 { font-size: 1.8rem; }
    .hero-title { font-size: 3rem; }
    
    .grid-4, .grid-3, .grid-2 {
        grid-template-columns: 1fr;
    }
    
    /* Disable Zigzag heights on mobile, show normal responsive 2-column grid */
    .zigzag-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .zigzag-grid .game-card {
        width: 100%;
    }
    .zigzag-grid .game-card:nth-child(even),
    .zigzag-grid .game-card:nth-child(odd) {
        margin-top: 0 !important;
    }
    .zigzag-grid-lines {
        display: none;
    }
    
    /* Mobile Hamburger Nav menu */
    .hamburger-toggle {
        display: block;
    }
    
    .main-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #0d0d15;
        border-bottom: 1px solid var(--color-border);
        padding: 2rem 1.5rem;
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .main-navigation a {
        display: block;
        padding: 0.5rem;
    }
    
    .hero-banner {
        padding: 5rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1.5rem;
    }
    
    .hero-stats-row {
        flex-direction: column;
        gap: 1.2rem;
        border-radius: 12px;
        padding: 1.5rem;
        width: 100%;
        margin-top: 2.5rem;
    }
    
    .spotlight-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .spotlight-logo {
        margin: 0 auto;
        width: 160px;
    }
    
    .spotlight-meta {
        justify-content: center;
    }
    
    .spotlight-specs {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .game-detail-header {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .game-detail-logo {
        width: 150px;
        margin: 0 auto;
    }
    
    .single-stats-row, .single-cta-buttons {
        justify-content: center;
    }
    
    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .how-to-download-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }
    
    .standard-page-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.4rem; }
    .zigzag-grid {
        grid-template-columns: 1fr;
    }
    .footer-columns {
        grid-template-columns: 1fr;
    }
    .spotlight-specs {
        grid-template-columns: 1fr;
    }
    .quick-stats {
        grid-template-columns: 1fr;
    }
    .sys-req-table td {
        padding: 10px 12px;
    }
    .sys-req-table td:first-child {
        width: 50%;
    }
}
