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

/* --- THEME VARIABLES --- */
:root {
    /* Deep Dark Theme (Default) */
    --bg-base: #06080F;
    --bg-surface: rgba(18, 22, 33, 0.6);
    --bg-surface-hover: rgba(28, 34, 51, 0.8);
    --bg-header: rgba(6, 8, 15, 0.75);
    
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-focus: rgba(184, 93, 245, 0.5);
    
    --accent-1: #B85DF5;
    --accent-2: #F52D3A;
    --accent-gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    --accent-gradient-hover: linear-gradient(135deg, #d285ff, #ff5762);
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(184, 93, 245, 0.3);
}

[data-theme="light"] {
    /* Crisp Light Theme */
    --bg-base: #F8FAFC;
    --bg-surface: rgba(255, 255, 255, 0.7);
    --bg-surface-hover: rgba(255, 255, 255, 0.95);
    --bg-header: rgba(248, 250, 252, 0.85);
    
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-muted: #94A3B8;
    
    --border-subtle: rgba(0, 0, 0, 0.08);
    --border-focus: rgba(184, 93, 245, 0.6);
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 20px rgba(184, 93, 245, 0.2);
}

/* Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transition: background-color 0.4s ease, color 0.4s ease;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    margin: 0;
}

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

a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 2px solid var(--border-focus);
    outline-offset: 2px;
    border-radius: 4px;
}

common-header, common-footer {
    display: contents;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--bg-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

/* --- HEADER / NAVBAR --- */
header {
    background: var(--bg-header);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.75rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.header-logo:hover {
    transform: scale(1.02);
    filter: drop-shadow(0px 4px 10px rgba(245, 45, 58, 0.4));
}

.header-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.icon-btn {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.icon-btn:hover {
    background: var(--bg-surface-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.icon-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.mobile-menu-btn {
    display: flex;
}

@media (min-width: 900px) {
    .nav-links { display: flex; }
    .mobile-menu-btn { display: none; }
}

/* Mobile Menu */
.mobile-nav {
    position: fixed;
    top: 65px; /* height of header approx */
    left: 0;
    width: 100%;
    background: var(--bg-surface);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.5rem 5%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-sizing: border-box;
    transform: translateY(-150%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
}

.mobile-nav.open {
    transform: translateY(0);
}

.mobile-nav a {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    padding: 6rem 5% 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    max-width: 800px;
    max-height: 800px;
    background: radial-gradient(circle, rgba(184, 93, 245, 0.15) 0%, rgba(245, 45, 58, 0.05) 40%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-badge {
    background: rgba(184, 93, 245, 0.1);
    border: 1px solid rgba(184, 93, 245, 0.3);
    color: var(--accent-1);
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: var(--text-primary); /* Fallback */
    background: linear-gradient(to right, var(--text-primary), var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* Search and Filters */
.search-filter-bar {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 10;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-input-wrapper svg {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    fill: var(--text-muted);
}

.search-input-wrapper input {
    width: 100%;
    padding: 1.25rem 1.25rem 1.25rem 3.5rem;
    border-radius: 999px;
    border: 1px solid var(--border-subtle);
    background: var(--bg-surface);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    box-sizing: border-box;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--accent-1);
    box-shadow: var(--shadow-glow);
    background: var(--bg-base);
}

.category-pills {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.category-pills::-webkit-scrollbar {
    display: none;
}

.cat-pill {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary);
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.cat-pill:hover {
    background: var(--bg-surface-hover);
    color: var(--text-primary);
}

.cat-pill.active {
    background: var(--accent-gradient);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(245, 45, 58, 0.3);
}

/* --- GAMES GRID --- */
.games-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 5%;
    box-sizing: border-box;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 500px) { .games-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .games-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .games-grid { grid-template-columns: repeat(5, 1fr); gap: 2rem; } }
@media (min-width: 1280px) { .games-grid { grid-template-columns: repeat(6, 1fr); } }

/* Game Card 2026 */
.game-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(20px);
}

.game-card.show {
    animation: cardEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.game-card:hover, .game-card:focus-visible {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-color: rgba(184, 93, 245, 0.4);
    z-index: 2;
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    box-sizing: border-box;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.game-card:hover .card-content {
    transform: translateY(0);
    opacity: 1;
}

.card-category {
    font-size: 0.65rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent-1);
    margin-bottom: 0.25rem;
}

.game-title {
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.play-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-glow);
}

.game-card:hover .play-icon-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.play-icon-overlay svg {
    width: 24px;
    height: 24px;
    fill: white;
    margin-left: 4px;
}

/* Empty State */
.empty-state {
    display: none; /* hidden by default */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
    width: 100%;
    grid-column: 1 / -1;
}

.empty-state svg {
    width: 80px;
    height: 80px;
    fill: var(--border-subtle);
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-size: 1.75rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* --- FOOTER 2026 --- */
footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    padding: 4rem 5% 2rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-brand .logo {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 300px;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-base);
    border: 1px solid var(--border-subtle);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--text-primary);
    background: var(--accent-1);
    border-color: var(--accent-1);
    transform: translateY(-3px);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-links h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* --- LOADER --- */
.global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-base);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.global-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-subtle);
    border-top-color: var(--accent-1);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1.5rem;
}

@keyframes spin { 
    to { transform: rotate(360deg); } 
}

.global-loader h2 {
    font-size: 2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Base button */
.btn-primary {
    background: var(--accent-gradient);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 45, 58, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 45, 58, 0.5);
    background: var(--accent-gradient-hover);
}

/* Cookie Banner & AdSense Placeholders */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--bg-header);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    flex-wrap: wrap;
    gap: 15px;
}
.cookie-content p { margin: 0; color: var(--text-secondary); }
.cookie-content a { color: var(--text-primary); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; }
.btn-secondary { background: var(--bg-surface-hover); color: var(--text-primary); border: 1px solid rgba(255,255,255,0.1); padding: 0.8rem 1.5rem; border-radius: 12px; cursor: pointer; transition: all 0.3s ease; }
.btn-secondary:hover { background: rgba(255,255,255,0.1); }
@media (max-width: 768px) {
    .cookie-banner { flex-direction: column; text-align: center; }
    .cookie-buttons { width: 100%; justify-content: center; }
}
.ad-slot {
    width: 100%;
    min-height: 90px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.9rem;
    margin: 2rem 0;
    text-align: center;
}
.ad-slot::after { content: "Advertisement Space"; }

/* GAME DETAILS PREMIUM REDESIGN */

/* Layout & Reading Width */
.game-info-section { max-width: 1400px; }
.game-description-box {
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    font-size: 18px;
    line-height: 1.8;
}
.game-description-content {
    max-width: 800px; /* Ideal reading width */
    text-align: left;
}
.game-description-box h2, .game-description-box h3 {
    margin-top: 48px;
    margin-bottom: 18px;
    font-weight: 700;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
}
.game-description-box h3 { font-size: 1.4rem; }
.game-description-box p { margin-bottom: 20px; color: var(--text-secondary); }

/* Action Header */
.game-action-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}
.game-logo-large {
    width: 96px;
    height: 96px;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
}
.game-title-group h1 { font-size: 2.5rem; margin-bottom: 8px; font-weight: 800; }
.game-actions-bar { display: flex; gap: 12px; margin-top: 16px; }
.action-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.action-btn:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.action-btn svg { width: 20px; height: 20px; fill: currentColor; }
.action-btn.favorite:hover svg { fill: #ef4444; }

/* Sticky Play on Mobile */
.mobile-sticky-play { display: none; }

/* Info & Stats Grids */
.stats-info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}
.stats-card {
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.05);
}
.stats-card h4 {
    color: var(--text-primary);
    margin-bottom: 24px;
    font-size: 1.2rem;
    font-family: 'Outfit', sans-serif;
}
.stats-grid, .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
}
.stat-item { display: flex; flex-direction: column; gap: 4px; }
.stat-label { font-size: 0.85rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; }
.stat-value { font-size: 1.1rem; color: var(--text-primary); font-weight: 600; }

/* FAQ Accordion */
.faq-section { margin-top: 48px; }
details.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}
details.faq-item:hover { background: rgba(255,255,255,0.05); }
details.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    list-style: none;
    position: relative;
    font-size: 1.1rem;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-1);
}
details.faq-item[open] summary::after { content: '-'; }
.faq-answer { padding: 0 20px 20px 20px; color: var(--text-secondary); line-height: 1.6; }

/* Tags */
.tags-container { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.tag-pill {
    background: rgba(184, 93, 245, 0.1);
    color: var(--accent-1);
    border: 1px solid rgba(184, 93, 245, 0.2);
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.tag-pill:hover {
    background: var(--accent-gradient);
    color: #fff;
    transform: scale(1.05);
    border-color: transparent;
}

/* Responsive Rules */
@media (max-width: 1024px) {
    .stats-info-container { grid-template-columns: 1fr; }
    .game-description-box { padding: 32px; font-size: 17px; }
    .ad-sidebar { display: none; }
}
@media (max-width: 768px) {
    .game-description-box { padding: 24px; font-size: 16px; }
    .game-title-group h1 { font-size: 1.8rem; }
    .game-logo-large { width: 72px; height: 72px; }
    .game-action-header { gap: 16px; }
    .stats-grid, .info-grid { grid-template-columns: 1fr 1fr; }
    
    /* Sticky Play Mobile */
    .mobile-sticky-play {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(6, 8, 15, 0.95);
        backdrop-filter: blur(16px);
        padding: 16px;
        box-sizing: border-box;
        border-top: 1px solid rgba(255,255,255,0.1);
        z-index: 100;
        box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    }
    .mobile-sticky-play .btn-primary { width: 100%; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 16px; font-size: 1.2rem; }
    
    .game-play-container { padding-bottom: 80px; }
}