/* games/public/assets/css/game-base.css */

/* ========================================
   Base Styles & Reset
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background: #0a0a0a;
    color: #e8e8e8;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(218, 165, 32, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(184, 134, 11, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(139, 69, 19, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(218, 165, 32, 0.02) 2px, rgba(218, 165, 32, 0.02) 4px);
    pointer-events: none;
    z-index: 0;
}

/* ========================================
   Games Header
   ======================================== */
.games-header {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(20, 20, 20, 0.9));
    border-bottom: 2px solid rgba(218, 165, 32, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brand-icon {
    font-size: 2em;
    background: linear-gradient(135deg, #ffd700, #daa520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5em;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700, #daa520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
}

.brand-subtitle {
    font-size: 0.75em;
    color: #8b7355;
    font-style: italic;
    letter-spacing: 0.1em;
}

.section-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(218, 165, 32, 0.1);
    border: 1px solid rgba(218, 165, 32, 0.3);
    color: #daa520;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.9em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.header-nav {
    display: flex;
    gap: 1rem;
    flex: 1;
    justify-content: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #c9a961;
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-family: 'Cinzel', serif;
    font-size: 0.9em;
    letter-spacing: 0.05em;
}

.nav-link:hover {
    background: rgba(218, 165, 32, 0.1);
    border-color: rgba(218, 165, 32, 0.3);
    color: #daa520;
}

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

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.user-greeting {
    font-size: 0.75em;
    color: #8b7355;
    font-style: italic;
}

.user-name {
    font-weight: 700;
    color: #daa520;
    font-size: 1em;
}

.user-avatar-container {
    position: relative;
    cursor: pointer;
}

.user-avatar, .user-avatar-placeholder {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #daa520;
    transition: all 0.3s ease;
}

.user-avatar-placeholder {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2), rgba(139, 69, 19, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #daa520;
    font-size: 1.25em;
}

.user-avatar-container:hover .user-avatar,
.user-avatar-container:hover .user-avatar-placeholder {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.4);
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 1rem);
    right: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(20, 20, 20, 0.95));
    border: 2px solid rgba(218, 165, 32, 0.4);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.user-avatar-container:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: #c9a961;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05em;
}

.dropdown-item:hover {
    background: rgba(218, 165, 32, 0.1);
    color: #daa520;
}

.dropdown-item.logout {
    color: #ff6b6b;
    border-top: 1px solid rgba(218, 165, 32, 0.2);
}

.dropdown-divider {
    height: 1px;
    background: rgba(218, 165, 32, 0.2);
    margin: 0.5rem 0;
}

.guest-actions {
    display: flex;
    gap: 0.75rem;
}

.login-btn, .register-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.9em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.login-btn {
    background: transparent;
    color: #daa520;
    border: 2px solid #daa520;
}

.login-btn:hover {
    background: rgba(218, 165, 32, 0.1);
    box-shadow: 0 0 20px rgba(218, 165, 32, 0.3);
}

.register-btn {
    background: linear-gradient(135deg, #daa520, #b8860b);
    color: #0a0a0a;
    border: 2px solid transparent;
}

.register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(218, 165, 32, 0.4);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: 2px solid #daa520;
    color: #daa520;
    font-size: 1.5em;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(218, 165, 32, 0.1);
}

.mobile-menu {
    display: none;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(20, 20, 20, 0.95));
    border-top: 1px solid rgba(218, 165, 32, 0.3);
    padding: 1rem;
    backdrop-filter: blur(10px);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    color: #c9a961;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
}

.mobile-menu-item:hover {
    background: rgba(218, 165, 32, 0.1);
    color: #daa520;
}

.mobile-menu-divider {
    height: 1px;
    background: rgba(218, 165, 32, 0.2);
    margin: 0.5rem 0;
}

/* ========================================
   Container & Layout
   ======================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* ========================================
   Page Header
   ======================================== */
header.page-header {
    text-align: center;
    padding: 80px 20px 60px;
    position: relative;
    margin-bottom: 60px;
}

.header-ornament-top {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #daa520, transparent);
    margin: 0 auto 30px;
    position: relative;
}

.header-ornament-top::before,
.header-ornament-top::after {
    content: '◆';
    position: absolute;
    top: -8px;
    color: #daa520;
    font-size: 1.2em;
}

.header-ornament-top::before {
    left: -10px;
}

.header-ornament-top::after {
    right: -10px;
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: 5em;
    font-weight: 900;
    background: linear-gradient(135deg, #ffd700 0%, #daa520 50%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(218, 165, 32, 0.3);
    position: relative;
    display: inline-block;
}

h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #daa520, transparent);
}

.subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8em;
    color: #c9a961;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-top: 25px;
    text-transform: uppercase;
}

.tagline {
    font-size: 1.3em;
    color: #8b7355;
    margin-top: 15px;
    font-weight: 300;
}

.header-ornament-bottom {
    width: 300px;
    height: 40px;
    margin: 40px auto 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300 40"><path d="M0,20 Q75,5 150,20 T300,20" stroke="%23daa520" stroke-width="1" fill="none"/><circle cx="150" cy="20" r="3" fill="%23daa520"/><circle cx="50" cy="15" r="2" fill="%23daa520"/><circle cx="250" cy="15" r="2" fill="%23daa520"/></svg>') center no-repeat;
    background-size: contain;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5em;
    color: #daa520;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.section-divider {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #daa520, transparent);
    margin: 0 auto;
}

/* ========================================
   Game Cards Grid
   ======================================== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.game-card {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9), rgba(20, 20, 20, 0.8));
    border: 2px solid rgba(218, 165, 32, 0.3);
    padding: 40px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.1), transparent);
    transition: left 0.6s ease;
}

.game-card:hover::before {
    left: 100%;
}

.game-card:hover {
    transform: translateY(-10px);
    border-color: #daa520;
    box-shadow: 
        0 20px 60px rgba(218, 165, 32, 0.2),
        inset 0 0 40px rgba(218, 165, 32, 0.05);
}

.game-card.locked {
    opacity: 0.5;
    cursor: not-allowed;
}

.game-card.locked:hover {
    transform: none;
    box-shadow: none;
}

.game-icon {
    font-size: 4em;
    margin-bottom: 25px;
    filter: grayscale(50%) sepia(100%) hue-rotate(15deg) saturate(150%);
}

.game-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8em;
    color: #daa520;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.game-description {
    font-family: 'Cormorant Garamond', serif;
    color: #b8b8b8;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.15em;
}

.game-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2), rgba(139, 69, 19, 0.2));
    color: #daa520;
    padding: 8px 20px;
    border: 1px solid rgba(218, 165, 32, 0.4);
    font-size: 0.95em;
    margin-top: 15px;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 600;
}

.lock-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8em;
    color: #8b7355;
}

/* ========================================
   Footer
   ======================================== */
.games-footer {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(20, 20, 20, 0.9));
    border-top: 2px solid rgba(218, 165, 32, 0.4);
    margin-top: 80px;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Cinzel', serif;
    color: #daa520;
    font-size: 1.3em;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.footer-section p, .footer-section a {
    color: #c9a961;
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #daa520;
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(218, 165, 32, 0.2);
    text-align: center;
    color: #8b7355;
    font-size: 0.95em;
}

.footer-ornament {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #daa520, transparent);
    margin: 30px auto;
    position: relative;
}

.footer-ornament::before,
.footer-ornament::after {
    content: '◆';
    position: absolute;
    top: -8px;
    color: #daa520;
    font-size: 1em;
}

.footer-ornament::before {
    left: -10px;
}

.footer-ornament::after {
    right: -10px;
}

/* ========================================
   Mobile Bottom Navigation Drawer
   ======================================== */
.mobile-drawer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(20, 20, 20, 0.95));
    border-top: 2px solid rgba(218, 165, 32, 0.4);
    padding: 0.5rem 0;
    z-index: 999;
    backdrop-filter: blur(15px);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
}

.mobile-drawer {
    display: none;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.drawer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    text-decoration: none;
    color: #8b7355;
    transition: all 0.3s ease;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
}

.drawer-item i {
    font-size: 1.5em;
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.drawer-item span {
    font-size: 0.7em;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.drawer-item:active {
    transform: scale(0.95);
}

.drawer-item.active {
    color: #daa520;
}

.drawer-item.active::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #daa520, transparent);
}

.drawer-menu-trigger {
    position: relative;
}

/* Mobile Drawer Menu Overlay */
.drawer-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.drawer-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer-menu-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 85vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(20, 20, 20, 0.95));
    border-top: 2px solid rgba(218, 165, 32, 0.4);
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.drawer-menu-overlay.active .drawer-menu-content {
    transform: translateY(0);
}

.drawer-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid rgba(218, 165, 32, 0.2);
}

.drawer-menu-header h3 {
    font-family: 'Cinzel', serif;
    color: #daa520;
    font-size: 1.5em;
    letter-spacing: 0.05em;
}

.drawer-close-btn {
    background: none;
    border: 2px solid #daa520;
    color: #daa520;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drawer-close-btn:active {
    transform: scale(0.9);
    background: rgba(218, 165, 32, 0.1);
}

.drawer-menu-body {
    overflow-y: auto;
    padding: 1rem 1.5rem 2rem;
    flex: 1;
}

.drawer-user-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(218, 165, 32, 0.05);
    border: 1px solid rgba(218, 165, 32, 0.2);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.drawer-user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #daa520;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2), rgba(139, 69, 19, 0.2));
    overflow: hidden;
}

.drawer-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.drawer-user-avatar i {
    font-size: 1.8em;
    color: #daa520;
}

.drawer-user-info h4 {
    font-family: 'Cinzel', serif;
    color: #daa520;
    font-size: 1.2em;
    margin-bottom: 0.25rem;
}

.drawer-user-info p {
    color: #8b7355;
    font-size: 0.9em;
}

.drawer-divider {
    height: 1px;
    background: rgba(218, 165, 32, 0.2);
    margin: 1.5rem 0;
}

.drawer-menu-section {
    margin-bottom: 1rem;
}

.drawer-section-title {
    font-family: 'Cinzel', serif;
    color: #c9a961;
    font-size: 0.9em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.drawer-menu-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    color: #c9a961;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
}

.drawer-menu-link i {
    font-size: 1.3em;
    width: 24px;
    text-align: center;
}

.drawer-menu-link span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1em;
}

.drawer-menu-link:active {
    background: rgba(218, 165, 32, 0.15);
    color: #daa520;
}

.drawer-menu-link.logout-link {
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.drawer-menu-link.logout-link:active {
    background: rgba(255, 107, 107, 0.1);
}

.drawer-auth-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.drawer-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.9em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.drawer-login-btn {
    background: transparent;
    color: #daa520;
    border: 2px solid #daa520;
}

.drawer-login-btn:active {
    background: rgba(218, 165, 32, 0.1);
}

.drawer-register-btn {
    background: linear-gradient(135deg, #daa520, #b8860b);
    color: #0a0a0a;
    border: 2px solid transparent;
}

.drawer-register-btn:active {
    transform: scale(0.98);
}

.desktop-only {
    display: flex;
}

/* Games Drawer Grid */
.games-drawer-grid {
    display: grid;
    gap: 1rem;
    padding: 0.5rem 0;
}

.games-drawer-item {
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.05), rgba(139, 69, 19, 0.03));
    border: 2px solid rgba(218, 165, 32, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.games-drawer-item:active {
    transform: scale(0.98);
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.15), rgba(139, 69, 19, 0.1));
    border-color: #daa520;
}

.games-drawer-item.locked {
    opacity: 0.6;
    pointer-events: none;
}

.games-drawer-item-icon {
    font-size: 2.5em;
    min-width: 60px;
    text-align: center;
    filter: grayscale(50%) sepia(100%) hue-rotate(15deg) saturate(150%);
}

.games-drawer-item-content {
    flex: 1;
}

.games-drawer-item-title {
    font-family: 'Cinzel', serif;
    color: #daa520;
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: 0.03em;
}

.games-drawer-item-desc {
    font-family: 'Cormorant Garamond', serif;
    color: #b8b8b8;
    font-size: 0.95em;
    line-height: 1.4;
}

.games-drawer-item-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(218, 165, 32, 0.2);
    color: #daa520;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-family: 'Cinzel', serif;
    font-size: 0.7em;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

.games-drawer-item-badge.locked {
    background: rgba(139, 107, 85, 0.2);
    color: #8b7355;
}

.games-drawer-lock {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    color: #8b7355;
    font-size: 1.2em;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-drawer {
        display: grid;
    }

    .games-footer {
        display: none; /* Hide footer on mobile - drawer replaces it */
    }

    .brand-title {
        font-size: 1.2em;
    }

    .brand-subtitle {
        display: none;
    }

    .section-indicator {
        padding: 0.4rem 0.75rem;
        font-size: 0.75em;
    }

    h1 {
        font-size: 3em;
    }

    .subtitle {
        font-size: 1.3em;
    }

    .games-grid {
        grid-template-columns: 1fr;
        padding-bottom: 2rem; /* Extra space above drawer */
    }

    .container {
        padding-bottom: 2rem;
    }
}