* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f0f8ff;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        .header {
            background-color: #1a73e8;
            padding: 15px 20px;
            position: relative;
        }
        .logo {
            color: white;
            font-size: 1.8rem;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
        }
        .logo span {
            color: #ffd700;
        }
        .nav {
            display: flex;
            gap: 20px;
            align-items: center;
            margin-top: 10px;
        }
        .nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .nav a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            color: white;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            color: #0a4b8c;
            margin: 20px 0;
            font-size: 2.2rem;
            text-align: center;
        }
        h2 {
            color: #1a73e8;
            margin: 30px 0 15px;
            font-size: 1.8rem;
            border-left: 4px solid #ffd700;
            padding-left: 10px;
        }
        h3 {
            color: #0d47a1;
            margin: 20px 0 10px;
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 15px;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: bold;
            color: #d35400;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #2ecc71;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 10px 5px;
            transition: background 0.3s;
        }
        .btn:hover {
            background-color: #27ae60;
        }
        .btn-login {
            background-color: #3498db;
        }
        .btn-login:hover {
            background-color: #2980b9;
        }
        .image-container {
            margin: 20px 0;
            text-align: center;
        }
        .game-img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            border: 1px solid #e0e0e0;
        }
        .stats-box {
            background-color: white;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        }
        .review {
            background-color: #fff8e1;
            border-left: 4px solid #ffc107;
            padding: 15px;
            margin: 15px 0;
            border-radius: 4px;
        }
        .tag {
            display: inline-block;
            background-color: #e3f2fd;
            padding: 5px 10px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            color: #1565c0;
            font-size: 0.9rem;
        }
        .tag:hover {
            background-color: #bbdefb;
        }
        .game-type {
            display: inline-block;
            margin: 10px 5px;
            text-decoration: none;
            color: #2c3e50;
            font-weight: 500;
        }
        .game-type:hover {
            color: #1a73e8;
            text-decoration: underline;
        }
        .footer {
            background-color: #263238;
            color: white;
            padding: 30px 20px;
            margin-top: 50px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-links {
            margin: 20px 0;
        }
        .copyright {
            margin-top: 30px;
            font-size: 0.9rem;
            color: #b0bec5;
        }
        @media (max-width: 768px) {
            .nav {
                display: none;
                flex-direction: column;
                gap: 10px;
                background-color: #1a73e8;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                padding: 20px;
                z-index: 100;
            }
            .nav.show {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.2rem;
            }
            .btn {
                display: block;
                width: 100%;
                text-align: center;
                margin: 10px 0;
            }
        }
