/**
 * GameHubJS Main Stylesheet
 * Professional, modern design with dark gaming theme.
 * Mobile-first with RTL support.
 * 
 * NOTE: Chat-specific styles live in chat.css (loaded by chat pages).
 * 
 * Filename: app/static/css/main.css
 * Signed: admin@thepandadev.com
 */

/* ============================================
   CSS Variables / Custom Properties
   ============================================ */
:root {
    /* Colors - Dark Theme */
    --bg-primary: #0f0f1a;
    --bg-secondary: #1a1a2e;
    --bg-card: #16213e;
    --bg-input: #1a1a2e;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    
    /* Brand Colors */
    --brand-primary: #6c63ff;
    --brand-secondary: #ff6584;
    --brand-success: #48bb78;
    --brand-warning: #ed8936;
    --brand-danger: #fc8181;
    --brand-info: #63b3ed;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6c63ff, #ff6584);
    --gradient-dark: linear-gradient(135deg, #1a1a2e, #16213e);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 30px rgba(108, 99, 255, 0.15);
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Font */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-gaming: 'Orbitron', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-size-3xl: 3rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .ms-auto {
    margin-right: auto !important;
    margin-left: 0 !important;
}

[dir="rtl"] .me-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}

[dir="rtl"] .ms-2 {
    margin-right: 0.5rem !important;
    margin-left: 0 !important;
}

[dir="rtl"] .me-2 {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: var(--brand-primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--brand-secondary);
}

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

.text-gradient-secondary {
    background: linear-gradient(135deg, #4facfe, #00d2d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Glass Card Effect
   ============================================ */
.glass-card {
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: var(--radius-xl);
    padding: 1.25rem;
    transition: all 0.3s ease;
    height: 100%;
}

.glass-card:hover {
    border-color: rgba(108, 99, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Navigation Bar
   ============================================ */
.navbar {
    background: var(--bg-secondary) !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0.75rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: var(--font-size-lg);
    color: var(--text-primary) !important;
}

.navbar-brand i {
    color: var(--brand-primary);
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    padding: 0.5rem 1rem;
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: color 0.2s;
    border-radius: var(--radius-md);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--text-primary) !important;
    background: rgba(255,255,255,0.03);
}

.navbar-nav .nav-link i {
    font-size: var(--font-size-md);
}

.navbar-toggler {
    border-color: rgba(255,255,255,0.1);
    padding: 0.25rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Dropdown Menu - Dark Theme */
.dropdown-menu {
    background: var(--bg-secondary);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 0.4rem;
    box-shadow: var(--shadow-lg);
}

.dropdown-item {
    color: var(--text-secondary);
    padding: 0.4rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(108, 99, 255, 0.08);
    color: var(--text-primary);
}

.dropdown-item.active {
    background: rgba(108, 99, 255, 0.15);
    color: var(--brand-primary);
}

.dropdown-item .check-icon {
    opacity: 0;
    transition: opacity 0.2s ease;
    color: var(--brand-primary);
}

.dropdown-item.active .check-icon {
    opacity: 1;
}

.dropdown-item i {
    width: 18px;
    text-align: center;
}

.dropdown-divider {
    border-color: rgba(255,255,255,0.05);
    margin: 0.2rem 0;
}

/* Donation Button in Nav */
.btn-donation-nav {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    background: linear-gradient(135deg, #ff6584, #f5576c);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 101, 132, 0.15);
}

.btn-donation-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 101, 132, 0.25);
    color: #fff;
}

.btn-donation-nav i {
    font-size: 0.7rem;
}

.btn-donation-nav:active {
    transform: translateY(0);
}

/* ============================================
   Buttons
   ============================================ */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    border-radius: 2rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.3);
}

.btn-outline-secondary {
    border-color: rgba(255,255,255,0.1);
    color: var(--text-secondary);
}

.btn-outline-secondary:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
    color: var(--text-primary);
}

.btn-sm {
    padding: 0.35rem 0.8rem;
    font-size: var(--font-size-xs);
}

/* ============================================
   Cards
   ============================================ */
.card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-body {
    padding: var(--spacing-md);
}

/* ============================================
   Forms
   ============================================ */
.form-control {
    background: var(--bg-input);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
}

.form-control:focus {
    background: var(--bg-input);
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.15);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-label {
    font-weight: 500;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

.form-check-input {
    background-color: var(--bg-input);
    border-color: rgba(255,255,255,0.1);
}

.form-check-input:checked {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
}

/* ============================================
   Alerts
   ============================================ */
.alert {
    border: none;
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    background: var(--bg-card);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
    border-left: 3px solid transparent;
}

.alert-success {
    border-left-color: var(--brand-success);
}

.alert-danger {
    border-left-color: var(--brand-danger);
}

.alert-warning {
    border-left-color: var(--brand-warning);
}

.alert-info {
    border-left-color: var(--brand-info);
}

/* ============================================
   Main Content
   ============================================ */
.main-content {
    flex: 1;
    padding-bottom: var(--spacing-xl);
}

/* ============================================
   Footer
   ============================================ */
.app-footer {
    background: rgba(10, 10, 26, 0.95);
    border-top: 1px solid rgba(255,255,255,0.02);
    padding: 1.5rem 0;
    margin-top: auto;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-gaming);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-brand i {
    font-size: 1.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--bg-hover);
    border-color: rgba(108, 99, 255, 0.2);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.footer-copy {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.65rem;
    color: var(--text-muted);
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.02);
}

/* ============================================
   Bottom Navigation (Mobile)
   ============================================ */
.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.05rem;
    padding: 0.2rem 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.55rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0.5rem;
}

.bottom-nav-item i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.bottom-nav-item:hover {
    color: var(--text-secondary);
}

.bottom-nav-item.active {
    color: var(--brand-primary) !important;
}

.bottom-nav-item.active i {
    transform: translateY(-2px);
}

.bottom-nav-item.donation-nav {
    color: var(--brand-secondary) !important;
}

.bottom-nav-item.donation-nav:hover {
    color: var(--brand-secondary) !important;
    transform: scale(1.05);
}

.bottom-nav-item .nav-badge {
    position: absolute;
    top: 0;
    right: 2px;
    font-size: 0.4rem;
    font-weight: 700;
    padding: 0.05rem 0.25rem;
    background: var(--gradient-primary);
    border-radius: 10px;
    color: #fff;
}

.bottom-nav-item .online-dot {
    position: absolute;
    top: 2px;
    right: 4px;
    width: 4px;
    height: 4px;
    background: var(--brand-success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.bottom-nav-item.register-nav {
    color: #fff;
    background: var(--gradient-primary);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.15);
}

.bottom-nav-item.register-nav:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================
   Utilities
   ============================================ */
.text-muted {
    color: var(--text-muted) !important;
}

.bg-dark-custom {
    background: var(--bg-secondary);
}

.border-custom {
    border-color: rgba(255,255,255,0.05) !important;
}

/* ============================================
   Animations
   ============================================ */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.5s ease-out;
}

/* ============================================
   Scrollbar Styling
   ============================================ */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-primary);
}

/* ============================================
   Responsive Breakpoints
   ============================================ */

/* Mobile (Small screens) */
@media (max-width: 576px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .navbar-brand {
        font-size: var(--font-size-md);
    }
    
    .navbar-nav .nav-link {
        padding: 0.3rem 0.6rem;
        font-size: var(--font-size-xs);
    }
    
    .dropdown-menu {
        min-width: 180px;
    }
    
    .btn-lg {
        font-size: var(--font-size-sm);
        padding: 0.6rem 1.2rem;
    }
    
    h1.display-4 {
        font-size: var(--font-size-2xl);
    }
    
    .lead {
        font-size: var(--font-size-md);
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.75rem;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .btn-donation-nav span {
        display: none;
    }
    
    .btn-donation-nav {
        padding: 0.3rem 0.6rem;
    }
}

/* Tablet */
@media (min-width: 577px) and (max-width: 768px) {
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .footer-copy {
        grid-column: 1 / -1;
    }
}

/* Desktop */
@media (min-width: 769px) and (max-width: 992px) {
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-copy {
        grid-column: 1 / -1;
    }
}

/* Large Desktop */
@media (min-width: 993px) {
    .container {
        max-width: 1200px;
    }
}

@media (max-width: 768px) {
    .navbar-nav .nav-link {
        padding: 0.4rem 0.75rem;
    }
    
    .dropdown-menu {
        background: var(--bg-secondary);
        border: 1px solid rgba(255,255,255,0.05);
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .navbar,
    .app-footer,
    .bottom-nav,
    .btn {
        display: none !important;
    }
    
    .card {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }
}

/* ============================================
   Game Lobby Specific
   ============================================ */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.game-card:hover {
    transform: translateY(-6px);
    border-color: rgba(108, 99, 255, 0.2);
    box-shadow: var(--shadow-lg);
}

.game-card .game-thumbnail {
    width: 100%;
    height: 150px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.game-card .game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card .game-thumbnail .game-icon {
    font-size: 3rem;
    opacity: 0.3;
}

.game-card .game-type-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.15rem 0.6rem;
    border-radius: 20px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(0,0,0,0.7);
    color: white;
}

.game-card .game-type-badge.type-2d {
    background: rgba(108, 99, 255, 0.8);
}

.game-card .game-type-badge.type-3d {
    background: rgba(255, 101, 132, 0.8);
}

.game-card .game-body {
    padding: 0.75rem 1rem;
}

.game-card .game-body h6 {
    margin-bottom: 0.15rem;
    font-weight: 600;
}

.game-card .game-body .game-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.game-card .game-body .game-stats {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.game-card .game-body .game-stats i {
    margin-right: 0.2rem;
}

/* ============================================
   Admin Dashboard Specific
   ============================================ */
.metric-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    height: 100%;
}

.metric-card:hover {
    border-color: rgba(108, 99, 255, 0.15);
    transform: translateY(-2px);
}

.metric-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.metric-icon.blue { background: rgba(108, 99, 255, 0.15); color: #6c63ff; }
.metric-icon.green { background: rgba(72, 187, 120, 0.15); color: #48bb78; }
.metric-icon.purple { background: rgba(168, 85, 247, 0.15); color: #a855f7; }
.metric-icon.pink { background: rgba(255, 101, 132, 0.15); color: #ff6584; }
.metric-icon.orange { background: rgba(255, 159, 67, 0.15); color: #ff9f43; }
.metric-icon.cyan { background: rgba(79, 172, 254, 0.15); color: #4facfe; }
.metric-icon.yellow { background: rgba(255, 217, 61, 0.15); color: #ffd93d; }
.metric-icon.red { background: rgba(255, 107, 107, 0.15); color: #ff6b6b; }

.metric-info {
    flex: 1;
    min-width: 0;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.metric-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.metric-change {
    font-size: 0.65rem;
    padding: 0.1rem 0.5rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

.metric-change.up {
    color: #48bb78;
    background: rgba(72, 187, 120, 0.1);
}

.metric-change.down {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.1);
}

.metric-change.neutral {
    color: #ffd93d;
    background: rgba(255, 217, 61, 0.1);
}

/* ============================================
   Leaderboard Specific
   ============================================ */
.leaderboard-table-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.leaderboard-table {
    width: 100%;
    border-collapse: collapse;
}

.leaderboard-table thead {
    background: rgba(255,255,255,0.02);
}

.leaderboard-table thead th {
    padding: 0.6rem 1rem;
    text-align: left;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
}

.leaderboard-table tbody tr {
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.02);
}

.leaderboard-table tbody tr:last-child {
    border-bottom: none;
}

.leaderboard-table tbody tr:hover {
    background: rgba(255,255,255,0.02);
}

.leaderboard-table tbody tr.top-1 {
    background: rgba(255, 217, 61, 0.05);
}

.leaderboard-table tbody tr.top-2 {
    background: rgba(160, 174, 192, 0.05);
}

.leaderboard-table tbody tr.top-3 {
    background: rgba(205, 127, 50, 0.05);
}

.leaderboard-table tbody tr.user-row {
    background: rgba(108, 99, 255, 0.08);
    border-left: 3px solid var(--brand-primary);
}

.leaderboard-table tbody td {
    padding: 0.5rem 1rem;
    vertical-align: middle;
}

/* ============================================
   NOTE: Chat styles moved to app/static/css/chat.css
   Loaded only on chat pages via chat/room.html
   ============================================ */

/* ============================================
   Media Queries for Components
   ============================================ */
@media (max-width: 768px) {
    .game-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 0.75rem;
    }
    
    .metric-card {
        padding: 0.75rem;
    }
    
    .metric-value {
        font-size: 1.2rem;
    }
    
    .metric-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .leaderboard-table thead {
        display: none;
    }
    
    .leaderboard-table tbody tr {
        display: block;
        padding: 0.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .leaderboard-table tbody td {
        display: flex;
        justify-content: space-between;
        padding: 0.2rem 0;
        border: none;
    }
    
    .leaderboard-table tbody td::before {
        content: attr(data-label);
        color: var(--text-muted);
        font-size: 0.65rem;
        font-weight: 500;
    }
}

@media (max-width: 576px) {
    .game-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .game-card .game-thumbnail {
        height: 100px;
    }
    
    .metric-value {
        font-size: 1rem;
    }
    
    .metric-label {
        font-size: 0.65rem;
    }
}

/* End of file: app/static/css/main.css */
/* Signed: admin@thepandadev.com */