* {margin: 0; padding: 0; box-sizing: border-box; font-family: 'Arial', sans-serif;}
        body {background: #f0f4f8; color: #2d3748; line-height: 1.8; padding-bottom: 60px;}
        .header {background: #0f4c81; padding: 18px 20px; color: white;}
        .nav-container {max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center;}
        .logo {font-size: 2rem; font-weight: bold; color: #ffd166; text-decoration: none; letter-spacing: 0.5px;}
        .nav-links {display: flex; gap: 28px;}
        .nav-links a {color: white; text-decoration: none; font-size: 1.15rem; transition: 0.3s; padding: 5px 0;}
        .nav-links a:hover {color: #ffd166; border-bottom: 2px solid #ffd166;}
        .mobile-menu-btn {display: none; font-size: 1.6rem; background: none; border: none; color: white; cursor: pointer;}
        .container {max-width: 1200px; margin: 35px auto; padding: 0 20px;}
        h1 {color: #0f4c81; margin: 35px 0 25px; font-size: 2.7rem; text-align: center;}
        h2 {color: #1a73e8; margin: 45px 0 18px; font-size: 2.1rem; border-bottom: 2px solid #1a73e8; padding-bottom: 10px;}
        h3 {color: #3399ff; margin: 30px 0 15px; font-size: 1.6rem;}
        p {margin-bottom: 20px; font-size: 1.15rem;}
        .highlight {font-weight: bold; color: #e63946;}
        .btn {display: inline-block; padding: 14px 28px; margin: 18px 12px 30px; background: #06d6a0; color: white; text-decoration: none; border-radius: 6px; font-weight: bold; transition: 0.3s; text-align: center; font-size: 1.1rem;}
        .btn:hover {background: #05b88c; transform: scale(1.05); box-shadow: 0 4px 8px rgba(0,0,0,0.1);}
        .btn-login {background: #ff9f1c;}
        .btn-login:hover {background: #e68a00;}
        .image-container {margin: 35px 0; text-align: center;}
        .game-image {max-width: 100%; height: auto; border-radius: 12px; box-shadow: 0 6px 15px rgba(0,0,0,0.15);}
        .stats-box {background: white; border-radius: 12px; padding: 25px; margin: 30px 0; box-shadow: 0 5px 15px rgba(0,0,0,0.08);}
        .stats-box p {margin: 15px 0; font-size: 1.2rem;}
        .tag {display: inline-block; background: #3399ff; color: white; padding: 7px 16px; border-radius: 25px; margin: 8px; text-decoration: none; font-size: 0.95rem; transition: 0.3s;}
        .tag:hover {background: #1a73e8; transform: translateY(-2px);}
        .game-type {display: inline-block; margin: 12px 10px; text-decoration: none; color: #1a73e8; font-weight: bold; font-size: 1.05rem;}
        .game-type:hover {text-decoration: underline;}
        .footer {background: #0f4c81; color: white; padding: 45px 20px; margin-top: 70px;}
        .footer-container {max-width: 1200px; margin: 0 auto;}
        .footer-section {margin-bottom: 35px;}
        .copyright {text-align: center; margin-top: 45px; padding-top: 25px; border-top: 1px solid #2c5282; font-size: 1rem;}
        @media (max-width: 768px) {
            .nav-links {display: none; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: #0f4c81; padding: 25px; gap: 20px; z-index: 100;}
            .nav-links.active {display: flex;}
            .mobile-menu-btn {display: block;}
            h1 {font-size: 2.2rem;}
            h2 {font-size: 1.8rem;}
            h3 {font-size: 1.4rem;}
            p {font-size: 1.05rem;}
            .btn {width: 92%; margin: 12px auto; display: block;}
            .stats-box {padding: 20px;}
            .stats-box p {font-size: 1.1rem;}
        }
