body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #fff9e6;
        }
        header {
            background-color: #ff9900;
            color: white;
            padding: 15px;
            border-radius: 5px;
            margin-bottom: 20px;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .mobile-menu {
            display: none;
            position: absolute;
            right: 20px;
            top: 20px;
            background: #fff;
            color: #ff9900;
            border: none;
            padding: 5px 10px;
            border-radius: 3px;
        }
        nav ul {
            display: flex;
            list-style: none;
            padding: 0;
        }
        nav ul li {
            margin-right: 20px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
        }
        h1 {
            color: #ff6600;
            border-bottom: 2px solid #ffcc00;
            padding-bottom: 10px;
        }
        h2 {
            color: #cc6600;
            margin-top: 30px;
        }
        h3 {
            color: #996633;
        }
        .download-btn {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 12px 24px;
            margin: 10px 0;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            text-decoration: none;
            font-size: 16px;
        }
        .login-btn {
            display: inline-block;
            background-color: #2196F3;
            color: white;
            padding: 12px 24px;
            margin: 10px 0;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            text-decoration: none;
            font-size: 16px;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 8px;
        }
        footer {
            margin-top: 40px;
            padding: 20px;
            background-color: #333;
            color: white;
            border-radius: 5px;
        }
        .tag {
            display: inline-block;
            background-color: #666;
            color: white;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 3px;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
            }
            .mobile-menu {
                display: block;
            }
            nav.active ul {
                display: flex;
                position: absolute;
                right: 20px;
                top: 60px;
                background: #ff9900;
                padding: 10px;
            }
            body {
                padding: 10px;
            }
        }
