/* Gaming Blog - Main Styles with Dark/Light Mode Support */

/* CSS Custom Properties for Theming */
:root {
    /* Light Theme Colors */
    --bg-primary: #f1f5f9;
    --bg-secondary: #ffffff;
    --bg-tertiary: #edf2f7;
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-inverse: #ffffff;
    --border-color: #e2e8f0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
    --accent-primary: #4299e1;
    --accent-secondary: #48bb78;
    --accent-tertiary: #667eea;
    --accent-quaternary: #764ba2;
    --danger: #e53e3e;
    --warning: #d69e2e;
    --success: #38a169;
}

/* Dark Theme Colors */
[data-theme="dark"] {
    --bg-primary: #1a202c;
    --bg-secondary: #2d3748;
    --bg-tertiary: #4a5568;
    --text-primary: #f7fafc;
    --text-secondary: #e2e8f0;
    --text-muted: #a0aec0;
    --text-inverse: #1a202c;
    --border-color: #4a5568;
    --shadow-color: rgba(0, 0, 0, 0.3);
    --shadow-hover: rgba(0, 0, 0, 0.4);
    --accent-primary: #63b3ed;
    --accent-secondary: #68d391;
    --accent-tertiary: #7c3aed;
    --accent-quaternary: #9f7aea;
    --danger: #fc8181;
    --warning: #f6e05e;
    --success: #68d391;
}

* {
    box-sizing: border-box;
    border-radius: 0px !important;
}

/* Prevent flash of unstyled content (FOUC) */
html {
    background-color: var(--bg-primary);
    transition: background-color 0.2s ease;
}

/* Ensure smooth theme transitions */
html, body, * {
    transition: background-color 1s ease, color 1s ease, border-color 1s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* Header */
.site-header {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo Styles */
.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.1rem;
}

/* Option 1: Futuristic Gaming Style (Orbitron) - High Contrast */
.logo-xp {
    color: #1e40af; /* Darker blue for better contrast */
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    text-shadow: 0 0 15px rgba(30, 64, 175, 0.6);
}

.logo-wiz {
    color: #374151; /* Dark gray for better contrast */
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(55, 65, 81, 0.4);
}

/* Dark theme overrides for better contrast */
[data-theme="dark"] .logo-xp {
    color: #60a5fa; /* Lighter blue for dark theme */
    text-shadow: 0 0 15px rgba(96, 165, 250, 0.6);
}

[data-theme="dark"] .logo-wiz {
    color: #d1d5db; /* Light gray for dark theme */
    text-shadow: 0 0 10px rgba(209, 213, 219, 0.4);
}

/* Option 2: Modern Tech Style (Rajdhani) - Comment out above and uncomment below */
/*
.logo-xp {
    color: #00d4ff; /* Cyan blue */
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo-wiz {
    color: #ff3366; /* Pink-red */
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
}
*/

/* Option 3: Sci-Fi Style (Exo 2) - Comment out above and uncomment below */
/*
.logo-xp {
    color: #7c3aed; /* Purple */
    font-family: 'Exo 2', sans-serif;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(124, 58, 237, 0.6);
}

.logo-wiz {
    color: #f59e0b; /* Amber */
    font-family: 'Exo 2', sans-serif;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
}
*/

.main-nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--text-primary);
    text-decoration: none;
    padding: 0.4rem 0.8rem;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    background: var(--bg-secondary);
    color: var(--accent-primary);
    transform: translateY(-1px);
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    color: var(--text-primary);
    padding: 0.5rem;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.theme-toggle:hover {
    background: none;
    opacity: 0.8;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* Mobile Search Toggle Button */
.mobile-search-toggle {
    display: none;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: all 0.2s ease;
    align-items: center;
    justify-content: center;
}

.mobile-search-toggle i {
    font-size: 1.2rem;
    color: inherit;
}

.mobile-search-toggle:hover {
    color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--text-secondary);
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    box-shadow: -5px 0 15px var(--shadow-color);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-nav-overlay.active .mobile-nav {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
}

.mobile-nav-header h2 {
    font-size: 1.2rem;
    margin: 0;
}

.mobile-nav-close {
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: background 0.2s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-nav-links {
    padding: 0;
}

.mobile-nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: var(--accent-primary);
    color: var(--text-primary);
    padding-left: 2rem;
}

/* Mobile Theme Toggle */
.mobile-theme-toggle {
    margin-top: 1rem;
    padding: 0 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}


/* Search Page Styles */
.search-results .game-info {
    padding: 0.5rem;
}

.search-form {
    margin-bottom: 2rem;
}

.search-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 2px rgba(var(--accent-primary-rgb), 0.2);
}

.search-type-select {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1rem;
    min-width: 120px;
}

.search-button {
    padding: 0.75rem 1.5rem;
    background: var(--accent-primary);
    color: var(--text-primary);
    border: none;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

.search-button:hover {
    background: var(--accent-secondary);
}

.results-header {
    margin-bottom: 2rem;
}

.results-header h2 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.results-count {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: normal;
}

.results-section {
    margin-bottom: 3rem;
}

.results-section h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.no-results {
    text-align: center;
    padding: 3rem 0;
}

.no-results h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.no-results p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.no-results a {
    color: var(--accent-primary);
    text-decoration: none;
}

.no-results a:hover {
    text-decoration: underline;
}

.search-tips {
    padding: 2rem 0;
}

.search-tips h2 {
    text-align: center;
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.tip-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    text-align: center;
}

.tip-card h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.tip-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.pagination-info {
    color: var(--text-secondary);
    font-size: 1rem;
    margin: 0 1rem;
}

/* Mobile Search Styles */
@media (max-width: 768px) {
    .search-input-group {
        flex-direction: column;
    }
    
    .search-input,
    .search-type-select,
    .search-button {
        width: 100%;
    }
    
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
}

.mobile-theme-toggle .theme-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-theme-toggle .theme-toggle:hover {
    background: var(--accent-primary);
    color: var(--text-primary);
    border-color: var(--accent-primary);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    
    .header-container {
        padding: 0 1rem;
    }
    
    .site-header {
        padding: 0;
    }
}

/* Header container - same as .container for alignment */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .header-content {
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        align-items: center;
        gap: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
        justify-self: start;
    }
    
    .logo {
        justify-self: center;
    }
    
    .mobile-search-toggle {
        display: flex;
        justify-self: end;
    }
    
    .main-nav {
        display: none;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo-xp, .logo-wiz {
        font-size: inherit;
    }
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--accent-tertiary) 0%, var(--accent-quaternary) 100%);
    color: var(--text-primary);
    padding: 4rem 0;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 0.25rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.75rem 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-secondary);
    color: var(--text-primary);
}

.btn-primary:hover {
    background: var(--success);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255,255,255,0.2);
    color: var(--text-primary);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.section-header h2 {
    font-size: 2rem;
    color: var(--text-primary);
}

.view-all {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.view-all:hover {
    color: var(--accent-tertiary);
}

/* Games Grid */
.featured-games {
    padding: 2rem 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: stretch;
}

/* Game Card Link */
.game-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}


.game-card {
    background: var(--bg-secondary);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--shadow-hover);
}


.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-tertiary) 0%, var(--accent-quaternary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-secondary);
    color: var(--text-primary);
    padding: 0.25rem 0.5rem;
    font-weight: bold;
    font-size: 0.875rem;
}

.game-content {
    padding: 0.4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-content h3 {
    margin: 0 0 0.15rem 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 2.6rem; /* 2 lines * 1.3 line-height */
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.3;
    font-weight: 600;
}

.game-meta {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.15rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.publisher, .platform {
    background: var(--bg-tertiary);
    padding: 0.25rem 0.5rem;
    color: var(--text-secondary);
}

/* Platform and Publisher Badges */

.publisher-badge {
    display: inline-block;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Platform-specific colors */
.platform-badge[data-platform="PC"] {
    background: #007acc;
}

.platform-badge[data-platform="PlayStation"] {
    background: #003791;
}

.platform-badge[data-platform="Xbox"] {
    background: #107c10;
}

.platform-badge[data-platform="Nintendo"] {
    background: #e60012;
}

.platform-badge[data-platform="Mobile"] {
    background: #ff6b35;
}

.game-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Home Categories */
.home-categories {
    padding: 2rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary) 100%);
    color: var(--text-primary);
    padding: 2rem 1.5rem;
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px var(--shadow-color);
}

.category-card:hover {
    transform: translateY(-3px);
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.game-count {
    opacity: 0.8;
    font-size: 0.875rem;
}

/* Articles */
.featured-articles {
    padding: 2rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
}

.article-card {
    background: var(--bg-secondary);
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow-color);
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color);
}

/* External article styling */
.article-card.external-article {
    border-left: 4px solid var(--accent-primary);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(var(--accent-primary-rgb), 0.05) 100%);
}

/* Internal article styling */
.article-card:not(.external-article) {
    border-left: 4px solid var(--accent-tertiary);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(var(--accent-tertiary-rgb), 0.05) 100%);
}

.external-link-icon {
    font-size: 0.8em;
    margin-left: 0.25rem;
    opacity: 0.7;
}

.external-badge {
    background: var(--accent-primary);
    color: var(--text-primary);
    padding: 0.125rem 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.article-card:hover {
    transform: translateY(-3px);
}

.article-image {
    height: 65px;
    overflow: hidden;
    float: left;
    width: 65px;
    margin: 0 1rem 0 0;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 1rem;
}

.article-content h2, .article-content h3 {
    margin: 0 0 0.375rem 0;
    line-height: 1;
}

/* Progressive image loading styles */
.progressive-image-container {
    width: 100%;
    margin: 0 auto 1rem;
    position: relative;
}

.progressive-image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Progressive loading effects */
.progressive-image {
    filter: blur(0.1em);
    transition: filter 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0.8;
}

.progressive-image.loaded-medium {
    filter: blur(0.05em);
    opacity: 0.9;
}

.progressive-image.loaded-original {
    filter: blur(0em);
    opacity: 1;
}

.article-content h3 a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
}

.article-content h3 a:hover {
    color: var(--accent-primary);
}

.article-excerpt {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
    line-height: normal;
}

.article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Footer */
.site-footer {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 0.25rem;
}

.footer-categories {
    line-height: 1.6;
}

.footer-categories a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-categories a:hover {
    color: var(--accent-primary);
}

/* About Page Styles */
.contact-info {
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--accent-primary);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 0.25rem;
    color: var(--text-secondary);
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.25rem;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
    text-align: center;
    color: var(--text-muted);
}

/* Empty States */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .games-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* ========================================
   PAGE-SPECIFIC STYLES
   ======================================== */

/* Games Page Styles */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.stat-card {
    padding: 0.75rem;
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent-primary);
}

.stat-value.secondary {
    color: var(--accent-secondary);
}

.stat-value.tertiary {
    color: var(--accent-tertiary);
}

.stat-value.quaternary {
    color: var(--accent-quaternary);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.website-stats {
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

.website-stats h3 {
    margin: 0 0 0.5rem 0 !important;
    color: var(--text-primary) !important;
    font-size: 1.25rem !important;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
}

.filters {
    background: var(--bg-secondary);
    padding: 1rem;
    margin-bottom: 0.25rem;
    box-shadow: 0 2px 10px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.filter-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    color: var(--text-primary);
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 0.4rem;
    border: 1px solid var(--border-color);
    font-size: 0.875rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.filter-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.375rem;
}

.btn-filter {
    background: var(--accent-primary);
    color: var(--text-primary);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: 500;
}

.btn-clear {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: 500;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.pagination a {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination a.active {
    background: var(--accent-primary);
    color: var(--text-primary);
    border-color: var(--accent-primary);
}

.results-info {
    margin-bottom: 0.25rem;
    color: var(--text-muted);
}

/* Games Layout Styles */
.mobile-filter-toggle {
    display: none;
    margin-bottom: 0.25rem;
}

.games-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1rem;
    align-items: start;
}

.games-content {
    min-width: 0;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.results-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.order-by {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-by label {
    font-size: 0.875rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.order-by select {
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.875rem;
}

.pagination-info {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Filter Form Styles */
.filter-form {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-form .search-box {
    position: relative;
    min-width: 200px;
}

.filter-form .search-box input {
    padding: 0.5rem 0.75rem 0.5rem 2.5rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.875rem;
    width: 100%;
    transition: border-color 0.3s ease;
}

.filter-form .search-box input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(var(--accent-primary-rgb), 0.1);
}

.filter-form .search-box i {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.875rem;
}

.filter-form .filter-select {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.875rem;
    min-width: 120px;
    transition: border-color 0.3s ease;
}

.filter-form .filter-select:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(var(--accent-primary-rgb), 0.1);
}

/* Pagination Container */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border-color);
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.375rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.pagination-btn:hover:not(.disabled):not(.active) {
    background: var(--bg-secondary);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.pagination-btn.active {
    background: var(--accent-primary);
    color: var(--text-primary);
    border-color: var(--accent-primary);
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--bg-secondary);
    color: var(--text-muted);
}

.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .filter-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-form .search-box {
        min-width: auto;
    }
    
    .filter-form .filter-select {
        min-width: auto;
    }
    
    .pagination-container {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Sidebar Filters */
.filters-sidebar {
    background: transparent;
    padding: 1rem;
    border: 1px solid var(--border-color);
    position: sticky;
    top: 2rem;
    height: fit-content;
    margin-top: 2rem;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.375rem;
}

.filters-sidebar h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.clear-filters-btn {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    transition: all 0.2s ease;
}

.clear-filters-btn:hover {
    color: var(--accent-primary);
    background: var(--bg-secondary);
}

.filter-group {
    margin-bottom: 0.375rem;
}

.filter-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.875rem;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 0.4rem;
    border: 1px solid var(--border-color);
    font-size: 0.875rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.filter-actions {
    margin-top: 0.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.btn-filter {
    background: var(--accent-primary);
    color: var(--text-primary);
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-weight: 500;
    width: 100%;
}

.btn-clear {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    display: block;
}

/* Mobile Filter Drawer */
.filter-drawer {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: var(--bg-primary);
    border-left: 1px solid var(--border-color);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 1rem;
}

.filter-drawer.open {
    right: 0;
}

.filter-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.375rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.filter-drawer-header h3 {
    margin: 0;
    color: var(--text-primary);
}

.close-filters {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
}

.filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.filter-overlay.open {
    opacity: 1;
    visibility: visible;
}



.game-meta {
    margin: 0;
}

/* Platform badges now use dynamic colors from database */
.platform-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-primary);
    color: var(--text-primary);
    padding: 0.4rem;
    width: 2rem;
    height: 2rem;
    cursor: help;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin-right: 0.25rem;
    flex-shrink: 0;
}

.platform-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 2px 8px var(--shadow-hover);
}

.platform-badge i {
    font-size: 0.9rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.publisher-badge {
    display: inline-block;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Game Show Page Styles */
.game-header {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 1rem 0;
    margin-bottom: 0.25rem;
}

.game-header-content {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 1rem;
    align-items: start;
}

.game-info-card {
    background: var(--bg-secondary);
    padding: 0.75rem;
    box-shadow: 0 4px 20px var(--shadow-color);
    border: 1px solid var(--border-color);
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 1rem;
    align-items: start;
}

.game-info-content {
    grid-column: 1;
}

.game-image-card {
    background: var(--bg-tertiary);
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 250px;
    grid-column: 2;
}

.game-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-tertiary) 0%, var(--accent-quaternary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-primary);
}

.game-info-card h1 {
    color: var(--text-primary);
    margin-bottom: 0;
    font-size: 2rem;
    line-height: 1.2;
}

.game-meta {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.15rem;
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.meta-item {
    color: var(--text-secondary);
    font-weight: 500;
}

.game-categories {
    margin-top: 0;
}

.game-categories h3 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.categories-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.game-categories .category-badge {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    font-size: 0.8rem;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    background-color: var(--bg-tertiary);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.game-categories .category-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    background-color: var(--accent-primary);
    color: var(--text-primary);
}

.game-tags {
    margin-top: 0;
}

.game-tags h3 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.game-tags .tag-badge {
    display: inline-block;
    padding: 0.2rem 0.8rem;
    font-size: 0.8rem;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    background-color: var(--bg-tertiary);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.game-tags .tag-badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    background-color: var(--accent-primary);
    color: var(--text-primary);
}


.game-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 0.25rem;
}

.game-description {
    line-height: 1.8;
    font-size: 1.1rem;
}

.categories-tags {
    margin: 1rem 0;
}

.category-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    font-size: 0.875rem;
    text-decoration: none;
    color: white;
}

.tag-badge {
    display: inline-block;
    background: #e2e8f0;
    color: #4a5568;
    padding: 0.25rem 0.75rem;
    margin: 0.25rem;
    font-size: 0.75rem;
    text-decoration: none;
}

.tag-badge:hover {
    background: #cbd5e0;
}

.related-section {
    padding: 3rem 0;
    margin-top: 1.5rem;
}

.related-section h2 {
    text-align: center;
    margin-bottom: 0.25rem;
}

.breadcrumb {
    margin-bottom: 0.375rem;
    color: var(--text-secondary);
}

.breadcrumb a {
    color: var(--accent-primary);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--accent-tertiary);
}

/* Breadcrumb in article content (same as game header) */
.article-content .breadcrumb {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.article-content .breadcrumb a {
    color: var(--accent-primary);
}

.article-content .breadcrumb a:hover {
    color: var(--accent-tertiary);
}

/* Breadcrumb in game header (light background) */
.game-header .breadcrumb {
    color: var(--text-secondary);
}

.game-header .breadcrumb a {
    color: var(--accent-primary);
}

.game-header .breadcrumb a:hover {
    color: var(--accent-tertiary);
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.25rem 0;
}

.stars {
    color: #fbbf24;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #10b981;
}


.platform-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.platform-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 0.75rem;
    margin: 0.25rem 0;
}

.platform-card h3 {
    color: var(--accent-primary);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.platform-info {
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.platform-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.375rem;
}

.platform-stat {
    text-align: center;
    padding: 0.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
}

.stat-value {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--accent-primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 0.075rem;
}

.platform-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.6rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.2s;
    background: #1b2838;
    color: white;
}

.platform-link:hover {
    background: #2a475e;
}



/* Articles Page Styles */

.game-badge {
    display: inline-block;
    background: transparent;
    color: var(--accent-primary);
    border: 1px solid var(--accent-primary);
    padding: 0.2rem 0.4rem;
    font-size: 0.75rem;
    text-decoration: none;
    margin-top: 0.25rem;
    transition: all 0.2s ease;
}

.game-badge:hover {
    background: var(--accent-primary);
    color: var(--text-primary);
}

/* Article Show Page Styles */
.article-header {
    background: linear-gradient(135deg, var(--accent-tertiary) 0%, var(--accent-quaternary) 100%);
    color: var(--text-primary);
    padding: 1.5rem 0;
    margin-bottom: 0.25rem;
}

.article-meta {
    display: flex;
    gap: 0.75rem;
    margin: 0.375rem 0;
    font-size: 0.875rem;
    opacity: 0.8;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
    padding: 1rem;
}

.article-content h1 {
    margin: 0 0 0.75rem 0;
    color: var(--text-primary);
    font-size: 2.5rem;
    line-height: 1.2;
}

.article-content h2,
.article-content h3 {
    margin: 0 0 0.375rem 0;
    color: var(--text-primary);
}

.article-content p {
    margin-bottom: 0.25rem;
}

/* Markdown Content Styling */
.content h1, .content h2, .content h3 {
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.content h1 {
    font-size: 2rem;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.content h2 {
    font-size: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.25rem;
}

.content h3 {
    font-size: 1.25rem;
}

.content ul, .content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content li {
    margin: 0.5rem 0;
    line-height: 1.6;
}

.content strong {
    font-weight: 600;
    color: var(--text-primary);
}

.content em {
    font-style: italic;
    color: var(--text-secondary);
}

.content p {
    margin: 1rem 0;
    line-height: 1.6;
}

.related-articles {
    padding: 2rem 0;
    margin-top: 0.25rem;
}

.related-articles h2 {
    text-align: center;
    margin-bottom: 0.25rem;
}


.game-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: normal;
}

.game-link:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

/* Universal Page Header Styles */
.page-header {
    text-align: left;
    margin-bottom: 0;
    padding: 0;
}


/* Welcome Section for Home Page */
.welcome-section {
    text-align: left;
    margin-bottom: 0;
    padding: 0;
}

.welcome-section h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.welcome-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 0;
    opacity: 0.9;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: 0;
    opacity: 0.9;
}

.content-section {
    line-height: 1.8;
}

.content-section h2 {
    color: var(--text-secondary);
    font-size: 1.8rem;
    margin: 0.75rem 0 0.375rem 0;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.25rem;
}

.content-section h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin: 0.5rem 0 0.25rem 0;
}

.content-section h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin: 0.375rem 0 0.125rem 0;
}

.content-section p {
    margin-bottom: 0.375rem;
    color: var(--text-primary);
}

.content-section ul, .content-section ol {
    margin: 0.375rem 0;
    padding-left: 2rem;
}

.content-section li {
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.content-section strong {
    color: var(--text-primary);
}

.privacy-note {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    padding: 1rem;
    margin: 0.375rem 0;
}

.privacy-note h4 {
    color: var(--text-primary);
    margin-top: 0;
}

/* 404 Page Styles */
.error-page {
    text-align: center;
    padding: 3rem 0;
}

/* ========================================
   RESPONSIVE DESIGN - PAGE SPECIFIC
   ======================================== */

/* Games Page Responsive */
@media (max-width: 1023px) {
    .games-layout {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filters-sidebar {
        display: none;
    }
    
    .mobile-filter-toggle {
        display: block;
    }
    
    .results-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .results-controls {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 575px) {
    .filter-drawer {
        width: 100%;
        right: -100%;
    }
    
    .results-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Responsive grid adjustments */
@media (max-width: 1199px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1023px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Game Show Page Responsive */
@media (max-width: 480px) {
    .game-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .game-info-card {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.5rem;
    }
    
    .game-image-card {
        height: 200px;
        width: 100% !important;
        margin: 0;
        grid-column: 1;
    }
    
    .game-info-card h1 {
        font-size: 1.5rem;
    }
    
    .game-meta {
        gap: 0.1rem;
    }
    
    .meta-item {
        font-size: 0.8rem;
    }
    
    .game-categories h3 {
        font-size: 0.9rem;
    }
    
    .game-categories .category-badge {
        font-size: 0.75rem;
        padding: 0.15rem 0.6rem;
    }
    
    .game-tags h3 {
        font-size: 0.9rem;
        margin-bottom: 0.075rem;
    }
    
    .game-tags .tag-badge {
        font-size: 0.75rem;
        padding: 0.15rem 0.6rem;
    }
    
    .platform-cards {
        gap: 0.5rem;
    }
    
    .platform-card {
        padding: 0.5rem;
        margin: 0.075rem 0;
    }
}

/* Terms Page Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .content-section h3 {
        font-size: 1.2rem;
    }
}


/* ========================================== */
/* CONTENT STYLES */
/* ========================================== */

/* Blockquote styling for article content */
blockquote {
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    border-left: 4px solid var(--accent-primary);
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-style: italic;
    border-radius: 0 4px 4px 0;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
