/* Global Styles */
:root {
    --primary-color: #28a745;
    --primary-dark: #1e7e34;
    --secondary-color: #6c757d;
    --dark-bg: #1a1a1a;
    --darker-bg: #0d1117;
    --light-text: #ffffff;
    --gray-text: #adb5bd;
    --border-color: #343a40;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--light-text);
    background-color: var(--dark-bg);
}

/* Header Styles */
.header {
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    color: var(--light-text) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    margin: 0 0.5rem;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%2328a745" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%2328a745" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%2328a745" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%2328a745" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%2328a745" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), #20c997);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), #20c997);
    border: none;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.btn-outline-light {
    border: 2px solid var(--light-text);
    color: var(--light-text);
}

.btn-outline-light:hover {
    background: var(--light-text);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--light-text);
}

/* Games Section */
.games-section {
    background: var(--darker-bg);
    min-height: 100vh;
}

.category-filter {
    margin-bottom: 3rem;
}

.category-btn {
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Games Grid 优化卡片尺寸和布局 */
#games-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.8rem;
    padding-bottom: 2.5rem;
}
.game-card {
    width: 100%;
    background: var(--dark-bg);
    border: 1.5px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.2s;
    margin-bottom: 0;
    cursor: pointer;
    min-height: 210px;
    height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 2px 8px rgba(40,167,69,0.07);
}
.game-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 24px rgba(40,167,69,0.13);
    border-color: var(--primary-color);
}
.game-thumbnail {
    position: relative;
    overflow: hidden;
    height: 90px;
}
.game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s;
}
.game-card:hover .game-thumbnail img {
    transform: scale(1.05);
}
.game-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(40, 167, 69, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}
.game-card:hover .game-overlay {
    opacity: 1;
}
.play-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}
.play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
}
.game-info {
    padding: 0.7rem 1rem 0.7rem 1rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.game-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--light-text);
    line-height: 1.2;
}
.game-category {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
}
/* 响应式：平板4列，窄平板3列，手机2列，极窄1列 */
@media (max-width: 1200px) {
    #games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 992px) {
    #games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    #games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .game-card {
        min-height: 160px;
        height: 160px;
    }
    .game-thumbnail {
        height: 60px;
    }
    .game-title {
        font-size: 0.95rem;
    }
    .game-category {
        font-size: 0.75rem;
    }
}
@media (max-width: 480px) {
    #games-grid {
        grid-template-columns: 1fr;
    }
    .game-card {
        min-height: 120px;
        height: 120px;
    }
    .game-thumbnail {
        height: 40px;
    }
    .game-title {
        font-size: 0.85rem;
    }
}

/* Game Modal */
.modal-content {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
}

.modal-header {
    border-bottom: 1px solid var(--border-color);
    background: var(--darker-bg);
}

.modal-title {
    color: var(--light-text);
}

.btn-close {
    filter: invert(1);
}

.game-iframe-container {
    position: relative;
    width: 100%;
    height: 70vh;
    background: var(--darker-bg);
}

#gameIframe {
    width: 100%;
    height: 100%;
    border: none;
}

.modal-footer {
    border-top: 1px solid var(--border-color);
    background: var(--darker-bg);
}

/* Features Section */
.feature-card {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
}

.feature-card h4 {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray-text);
}

/* What is Section */
.what-is-section {
    background: var(--dark-bg);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 0.5rem;
    color: var(--gray-text);
}

.what-is-image img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* How to Play Section */
.step-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-card h4 {
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--secondary-color);
}

/* FAQ Section */
.accordion-item {
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    border-radius: 10px;
}

.accordion-button {
    background: var(--darker-bg);
    color: var(--light-text);
    border: none;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-body {
    background: var(--dark-bg);
    color: var(--gray-text);
}

/* Download Section */
.download-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.download-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    border-top: 1px solid var(--border-color);
}

.footer h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color) !important;
}

.social-links a {
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .game-iframe-container {
        height: 50vh;
    }
    
    .category-btn {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .game-card {
        margin-bottom: 1rem;
    }
    
    .feature-card,
    .step-card {
        padding: 1.5rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

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

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

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

/* Featured Game Card (Hero) */
.featured-game-card {
    background: linear-gradient(120deg, #232a2f 60%, #28a745 100%);
    border-radius: 2rem;
    box-shadow: 0 8px 32px 0 rgba(40,167,69,0.25), 0 1.5px 8px 0 rgba(0,0,0,0.12);
    color: #fff;
    margin-top: 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    width: 90%;
    max-width: 1200px;
    min-height: 480px;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    left: 50%;
    transform: translateX(-50%);
}

.featured-game-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.featured-game-desc {
    font-size: 1.3rem;
    color: #e0ffe0;
    font-weight: 400;
    margin-bottom: 2.5rem;
}

.btn-featured-play {
    background: #111;
    color: #fff;
    border-radius: 2.5rem;
    font-size: 1.7rem;
    box-shadow: 0 4px 24px 0 rgba(40,167,69,0.18);
    transition: all 0.2s;
    border: none;
    letter-spacing: 1px;
    padding: 1rem 3.5rem;
}
.btn-featured-play:hover {
    background: #28a745;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px 0 rgba(40,167,69,0.25);
}

.featured-game-img {
    width: 240px;
    height: 240px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #28a745;
    background: #fff;
    box-shadow: 0 4px 24px 0 rgba(40,167,69,0.18);
    margin: 0 auto;
}

@media (max-width: 992px) {
    .featured-game-card {
        height: 400px;
        min-height: 340px;
        padding: 2.5rem 1rem;
    }
    .featured-game-img {
        width: 160px;
        height: 160px;
    }
}

@media (max-width: 768px) {
    .featured-game-card {
        flex-direction: column !important;
        height: auto;
        min-height: 0;
        padding: 1.5rem 0.5rem;
        width: 98%;
        max-width: 98vw;
    }
    .featured-game-title {
        font-size: 2rem;
    }
    .featured-game-img {
        width: 120px;
        height: 120px;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .featured-game-title {
        font-size: 1.5rem;
    }
    .featured-game-desc {
        font-size: 1rem;
    }
    .featured-game-img {
        width: 90px;
        height: 90px;
    }
    .featured-game-card {
        padding: 1rem 0.2rem;
    }
} 

/* Main Game Area 样式 */
.main-game-area {
    background: radial-gradient(circle at 70% 30%, #28a74522 0%, #232a2f 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
}
.main-game-card {
    background: rgba(30,40,40,0.92);
    border-radius: 2.2rem;
    box-shadow: 0 8px 32px 0 rgba(40,167,69,0.18), 0 1.5px 8px 0 rgba(0,0,0,0.12);
    color: #fff;
    width: 100%;
    max-width: 1100px;
    min-height: 600px;
    margin: 0 auto;
    padding: 4.5rem 3rem 4.5rem 4rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.main-game-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 100%;
}
.main-game-title {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 3.5rem;
    margin-top: 1.5rem;
    text-align: left;
}
.main-game-desc {
    font-size: 1.2rem;
    color: #e0ffe0;
    margin-bottom: 2.2rem;
}
.main-game-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.main-game-img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 50%;
    border: 10px solid #28a745;
    background: #fff;
    box-shadow: 0 16px 48px 0 rgba(40,167,69,0.18);
    margin: 0 0 0 3.5rem;
    display: block;
}
.main-game-iframe-container {
    margin-top: 2rem;
    width: 100%;
}
.main-game-iframe-container iframe {
    width: 100%;
    height: 480px;
    border-radius: 1rem;
    border: none;
}
.btn-featured-play {
    background: #111;
    color: #fff;
    border-radius: 2.5rem;
    font-size: 2.2rem;
    box-shadow: 0 4px 24px 0 rgba(40,167,69,0.18);
    transition: all 0.2s;
    border: none;
    letter-spacing: 1px;
    padding: 1.4rem 4.5rem;
}
.btn-featured-play:hover {
    background: #28a745;
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px 0 rgba(40,167,69,0.25);
}

/* Main Game Info Area 样式 */
.main-game-info-area {
    background: rgba(30,40,40,0.98);
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px 0 rgba(40,167,69,0.10);
    color: #fff;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 2rem auto;
    padding: 2rem 2rem 1.5rem 2rem;
}
.main-game-info-area h3 {
    color: #28a745;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.main-game-info-area ul {
    margin-left: 1.2rem;
}
@media (max-width: 1200px) {
    .main-game-card {
        max-width: 98vw;
        padding: 3rem 1.5rem 3rem 1.5rem;
    }
    .main-game-img {
        width: 180px;
        height: 180px;
        margin: 0 0 0 2rem;
    }
    .main-game-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        margin-top: 1rem;
    }
    .btn-featured-play {
        font-size: 1.3rem;
        padding: 1rem 2.5rem;
        margin-bottom: 2rem;
    }
}
@media (max-width: 992px) {
    .main-game-area {
        min-height: 60vh;
    }
    .main-game-card {
        flex-direction: column;
        align-items: center;
        padding: 2rem 0.5rem;
        min-height: 320px;
    }
    .main-game-content {
        align-items: center;
        text-align: center;
    }
    .main-game-title {
        font-size: 2rem;
        margin-bottom: 1.2rem;
        margin-top: 0.5rem;
        text-align: center;
    }
    .btn-featured-play {
        align-self: center;
        margin-bottom: 1.5rem;
    }
    .main-game-img {
        width: 120px;
        height: 120px;
        margin: 2rem 0 0 0;
        border-width: 6px;
    }
    .main-game-iframe-container iframe {
        height: 320px;
    }
}
@media (max-width: 576px) {
    .main-game-area {
        min-height: 30vh;
    }
    .main-game-title {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        margin-top: 0.2rem;
    }
    .main-game-desc {
        font-size: 1rem;
    }
    .main-game-img {
        width: 70px;
        height: 70px;
        border-width: 4px;
    }
    .main-game-card {
        padding: 1rem 0.2rem;
        min-height: 100px;
    }
    .btn-featured-play {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
        margin-bottom: 1rem;
    }
    .main-game-iframe-container iframe {
        height: 200px;
    }
} 

/* 缩小介绍区间距 */
.main-game-info-area {
    margin-top: 0 !important;
}
/* 缩小分隔间距 */
#main-game-info-area {
    margin-top: 40px !important;
} 

.games-flex-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 0.8rem;
    justify-content: flex-start;
}
.game-card {
    flex: 0 0 19.2%;
    max-width: 19.2%;
    min-width: 180px;
    margin-bottom: 0;
    background: var(--dark-bg);
    border: 1.5px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.2s;
    cursor: pointer;
    min-height: 210px;
    height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 2px 8px rgba(40,167,69,0.07);
}
.game-card:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 24px rgba(40,167,69,0.13);
    border-color: var(--primary-color);
}
.game-thumbnail {
    position: relative;
    overflow: hidden;
    height: 90px;
}
.game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s;
}
.game-card:hover .game-thumbnail img {
    transform: scale(1.05);
}
.game-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(40, 167, 69, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}
.game-card:hover .game-overlay {
    opacity: 1;
}
.play-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}
.play-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 2px 8px rgba(0,0,0,0.13);
}
.game-info {
    padding: 0.7rem 1rem 0.7rem 1rem;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.game-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: var(--light-text);
    line-height: 1.2;
}
.game-category {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 500;
}
@media (min-width: 1200px) {
    .game-card {
        flex: 0 0 19.2%;
        max-width: 19.2%;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
    .game-card {
        flex: 0 0 24%;
        max-width: 24%;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .game-card {
        flex: 0 0 32%;
        max-width: 32%;
    }
}
@media (max-width: 767px) {
    .game-card {
        flex: 0 0 48%;
        max-width: 48%;
        min-height: 160px;
        height: 160px;
    }
}
@media (max-width: 480px) {
    .game-card {
        flex: 0 0 98%;
        max-width: 98%;
        min-height: 120px;
        height: 120px;
    }
} 

/* 游戏卡片美观风格：正方形卡片，block+aspect-ratio方案 */
.game-card {
    background: var(--dark-bg, #181b1f);
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(40,167,69,0.08);
    overflow: hidden;
    aspect-ratio: 1/1;
    display: block;
    transition: box-shadow 0.2s, transform 0.2s;
    padding: 0;
}
.game-card:hover {
    box-shadow: 0 8px 32px rgba(40,167,69,0.18);
    transform: translateY(-4px) scale(1.03);
}
.game-thumbnail {
    width: 100%;
    height: 75%;
    background: #222;
    display: block;
    overflow: hidden;
}
.game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
    transition: transform 0.2s;
    display: block;
}
.game-card:hover .game-thumbnail img {
    transform: scale(1.05);
}
.game-info {
    width: 100%;
    height: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: none;
    text-align: center;
}
.game-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--light-text, #fff);
    margin: 0;
}
.game-category {
    display: none;
}

/* 响应式适配 */
@media (max-width: 992px) {
    #games-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
    #games-grid { grid-template-columns: repeat(2, 1fr); }
    .game-title { font-size: 0.95rem; }
}
@media (max-width: 480px) {
    #games-grid { grid-template-columns: 1fr; }
    .game-title { font-size: 0.85rem; }
} 