* {margin: 0; padding: 0; box-sizing: border-box; font-family: 'Arial', sans-serif;}
        body {background: #f5f5f5; color: #333; line-height: 1.8; padding-bottom: 50px;}
        .header {background: #1a365d; padding: 15px 20px; color: white;}
        .nav-container {max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center;}
        .logo {font-size: 1.8rem; font-weight: bold; color: #ffcc00; text-decoration: none;}
        .nav-links {display: flex; gap: 25px;}
        .nav-links a {color: white; text-decoration: none; font-size: 1.1rem; transition: 0.3s;}
        .nav-links a:hover {color: #ffcc00;}
        .mobile-menu-btn {display: none; font-size: 1.5rem; background: none; border: none; color: white; cursor: pointer;}
        .container {max-width: 1200px; margin: 30px auto; padding: 0 20px;}
        h1 {color: #1a365d; margin: 30px 0 20px; font-size: 2.5rem; text-align: center;}
        h2 {color: #2b6cb0; margin: 40px 0 15px; font-size: 2rem; border-bottom: 2px solid #2b6cb0; padding-bottom: 8px;}
        h3 {color: #4299e1; margin: 25px 0 12px; font-size: 1.5rem;}
        p {margin-bottom: 18px; font-size: 1.1rem;}
        .highlight {font-weight: bold; color: #e53e3e;}
        .btn {display: inline-block; padding: 12px 25px; margin: 15px 10px 25px; background: #38a169; color: white; text-decoration: none; border-radius: 5px; font-weight: bold; transition: 0.3s; text-align: center;}
        .btn:hover {background: #2f855a; transform: scale(1.05);}
        .btn-login {background: #ed8936;}
        .btn-login:hover {background: #dd6b20;}
        .image-container {margin: 30px 0; text-align: center;}
        .game-image {max-width: 100%; height: auto; border-radius: 10px; box-shadow: 0 4px 12px rgba(0,0,0,0.15);}
        .stats-box {background: white; border-radius: 10px; padding: 20px; margin: 25px 0; box-shadow: 0 4px 12px rgba(0,0,0,0.1);}
        .stats-box p {margin: 12px 0;}
        .tag {display: inline-block; background: #4299e1; color: white; padding: 6px 14px; border-radius: 20px; margin: 6px; text-decoration: none; font-size: 0.9rem;}
        .tag:hover {background: #3182ce;}
        .game-type {display: inline-block; margin: 10px 8px; text-decoration: none; color: #2b6cb0; font-weight: bold;}
        .game-type:hover {text-decoration: underline;}
        .footer {background: #1a365d; color: white; padding: 40px 20px; margin-top: 60px;}
        .footer-container {max-width: 1200px; margin: 0 auto;}
        .footer-section {margin-bottom: 30px;}
        .copyright {text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid #4a5568;}
        @media (max-width: 768px) {
            .nav-links {display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: #1a365d; padding: 20px; gap: 15px; z-index: 100;}
            .nav-links.active {display: flex;}
            .mobile-menu-btn {display: block;}
            h1 {font-size: 2rem;}
            h2 {font-size: 1.7rem;}
            h3 {font-size: 1.3rem;}
            p {font-size: 1rem;}
            .btn {width: 90%; margin: 10px auto; display: block;}
        }
