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: #FF6B35;
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-decoration: none;
            color: white;
        }
        nav ul {
            list-style-type: none;
            padding: 0;
            display: flex;
            gap: 20px;
            margin-top: 10px;
        }
        nav a {
            color: white;
            text-decoration: none;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 20px;
        }
        h1 {
            color: #FF6B35;
            border-bottom: 3px solid #FFD700;
            padding-bottom: 10px;
        }
        h2 {
            color: #FF8C00;
            margin-top: 30px;
        }
        h3 {
            color: #FFA500;
        }
        .download-btn {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 12px 24px;
            margin: 15px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }
        .login-btn {
            display: inline-block;
            background-color: #2196F3;
            color: white;
            padding: 12px 24px;
            margin: 15px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 8px;
        }
        footer {
            margin-top: 50px;
            padding: 20px;
            background-color: #333;
            color: white;
            border-radius: 10px;
        }
        .tag {
            display: inline-block;
            background-color: #666;
            color: white;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 20px;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                display: none;
            }
            nav.active ul {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            body {
                padding: 10px;
            }
        }
