/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0f;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ff006e, #00f5ff, #39ff14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 0, 110, 0.5);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #ff006e, #ff4081, #e91e63);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(255, 0, 110, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, #00f5ff, #0099cc, #006699);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 245, 255, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.5);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover .btn-glow {
    left: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 0, 110, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 4px 20px rgba(255, 0, 110, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo, .brand-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff006e, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
    margin: 0;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff006e, #00f5ff);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #00f5ff;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: linear-gradient(135deg, #ff006e, #00f5ff);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, #1a0033 0%, #0a0a0f 70%);
}

/* Animated Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00f5ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00f5ff;
    animation: float 6s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    background: #ff006e;
    box-shadow: 0 0 10px #ff006e;
}

.particle:nth-child(3) {
    top: 40%;
    left: 60%;
    animation-delay: 4s;
    background: #39ff14;
    box-shadow: 0 0 10px #39ff14;
}

.particle:nth-child(4) {
    top: 80%;
    left: 30%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    top: 10%;
    left: 70%;
    animation-delay: 3s;
    background: #ff006e;
    box-shadow: 0 0 10px #ff006e;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 1;
    }
    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.8;
    }
}

/* Neon Pulse Effect */
.neon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.8;
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff006e, #00f5ff, #39ff14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 0, 110, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 30px rgba(255, 0, 110, 0.5);
    }
    to {
        text-shadow: 0 0 40px rgba(255, 0, 110, 0.8), 0 0 50px rgba(0, 245, 255, 0.3);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    font-size: 1.2rem;
    padding: 15px 40px;
    margin-top: 1rem;
}

/* ===== GAMES SECTION ===== */
.games {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #0f0f23 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.game-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 110, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

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

.game-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    border-color: rgba(0, 245, 255, 0.5);
    box-shadow: 0 20px 40px rgba(255, 0, 110, 0.2);
}

.game-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #ff006e, #00f5ff);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.game-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #00f5ff;
}

.game-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.game-btn {
    width: 100%;
    max-width: 200px;
}

/* ===== LEADERBOARD SECTION ===== */
.leaderboard {
    background: linear-gradient(135deg, #1a0033 0%, #0a0a0f 50%, #1a0033 100%);
}

.leaderboard-table {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 110, 0.2);
}

.leaderboard-header {
    display: grid;
    grid-template-columns: 100px 1fr 120px;
    padding: 1rem;
    background: linear-gradient(135deg, #ff006e, #e91e63);
    font-weight: 600;
    text-align: center;
}

.leaderboard-row {
    display: grid;
    grid-template-columns: 100px 1fr 120px;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    align-items: center;
}

.leaderboard-row:hover {
    background: rgba(255, 0, 110, 0.1);
    transform: translateX(5px);
}

.leaderboard-row.champion {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 140, 0, 0.1));
}

.rank-col {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.badge {
    font-size: 1.5rem;
}

.player-name {
    font-weight: 600;
    color: #00f5ff;
}

.score-col {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: #39ff14;
}

/* ===== HOW TO PLAY SECTION ===== */
.how-to-play {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #0f0f23 100%);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(57, 255, 20, 0.5);
    box-shadow: 0 15px 30px rgba(0, 245, 255, 0.1);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.step-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #39ff14;
}

.step-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #1a0033 0%, #0a0a0f 100%);
    border-top: 1px solid rgba(255, 0, 110, 0.2);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ff006e, #00f5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #00f5ff;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #39ff14;
    text-shadow: 0 0 5px rgba(57, 255, 20, 0.5);
}

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

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 0, 110, 0.2);
    border-radius: 10px;
    text-align: center;
    line-height: 40px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #ff006e, #00f5ff);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 110, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ===== RESPONSIBLE GAMING BADGES ===== */
.responsible-gaming-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rg-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 60px;
    min-height: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.rg-badge:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.rg-badge.age-restriction {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.2), rgba(255, 0, 110, 0.1));
    border-color: rgba(255, 0, 110, 0.3);
}

.rg-badge.age-restriction:hover {
    border-color: rgba(255, 0, 110, 0.6);
}

.rg-badge.begambleaware {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.2), rgba(0, 245, 255, 0.1));
    border-color: rgba(0, 245, 255, 0.3);
}

.rg-badge.begambleaware:hover {
    border-color: rgba(0, 245, 255, 0.6);
}

.rg-badge.gambling-therapy {
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.2), rgba(57, 255, 20, 0.1));
    border-color: rgba(57, 255, 20, 0.3);
}

.rg-badge.gambling-therapy:hover {
    border-color: rgba(57, 255, 20, 0.6);
}

.rg-badge.entertainment-only {
    background: linear-gradient(135deg, rgba(254, 202, 87, 0.2), rgba(254, 202, 87, 0.1));
    border-color: rgba(254, 202, 87, 0.3);
}

.rg-badge.entertainment-only:hover {
    border-color: rgba(254, 202, 87, 0.6);
}

.rg-number {
    font-size: 1.2rem;
    font-weight: 900;
    color: #ff006e;
    font-family: 'Orbitron', monospace;
}

.rg-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.rg-text-small {
    font-size: 0.6rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    line-height: 1;
}

.rg-text-main {
    font-size: 0.8rem;
    font-weight: 700;
    color: #00f5ff;
    text-transform: uppercase;
    font-family: 'Orbitron', monospace;
}

.rg-text-tiny {
    font-size: 0.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.rg-icon {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.rg-disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.4;
    font-style: italic;
    text-align: center;
}

/* ===== FOOTER DISCLAIMER ===== */
.footer-disclaimer {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 0, 110, 0.05);
}

.credits-disclaimer {
    color: #ff006e;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 0 5px rgba(255, 0, 110, 0.3);
}

/* ===== PAGE CONTENT STYLES ===== */
.page-content {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #0f0f23 100%);
    min-height: 80vh;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff006e, #00f5ff, #39ff14);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin: 0;
}

.terms-content, .privacy-content, .contact-content, .support-content {
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.terms-content h2, .privacy-content h2, .contact-content h2, .support-content h2 {
    color: #00f5ff;
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 245, 255, 0.2);
}

.terms-content h3, .privacy-content h3, .contact-content h3, .support-content h3 {
    color: #39ff14;
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
}

.terms-content p, .privacy-content p, .contact-content p, .support-content p {
    margin-bottom: 1rem;
}

.terms-content ul, .privacy-content ul, .support-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-content li, .privacy-content li, .support-content li {
    margin-bottom: 0.5rem;
}

.text-link {
    color: #ff006e;
    text-decoration: none;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: #00f5ff;
    text-shadow: 0 0 5px rgba(0, 245, 255, 0.5);
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-method {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 245, 255, 0.2);
}

.contact-detail {
    color: #39ff14;
    font-weight: 600;
    font-size: 1.1rem;
}

.response-info, .contact-note {
    background: rgba(255, 0, 110, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 110, 0.2);
    margin: 2rem 0;
}

.faq-section, .troubleshooting-section {
    margin: 3rem 0;
}

.faq-item, .trouble-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 15px;
    border: 1px solid rgba(57, 255, 20, 0.2);
}

.faq-item h3, .trouble-item h3 {
    color: #ff006e;
    margin-top: 0;
}

.support-contact {
    text-align: center;
    margin: 3rem 0;
}

.support-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.responsible-gaming-section {
    background: rgba(255, 165, 0, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 165, 0, 0.2);
    margin: 2rem 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.3s ease;
    }
    
    .nav-menu.show {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 3rem;
    }
    
    .nav-link {
        font-size: 1.2rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .leaderboard-header,
    .leaderboard-row {
        grid-template-columns: 80px 1fr 100px;
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .responsible-gaming-icons {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .rg-badge {
        min-width: 50px;
        min-height: 40px;
        padding: 0.3rem;
    }
    
    .rg-number {
        font-size: 1rem;
    }
    
    .rg-text-main {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .game-card {
        padding: 1rem;
    }
}
