body {
            font-family: 'Arial', 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: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav ul {
            list-style: none;
            padding: 0;
            display: flex;
            gap: 20px;
        }
        nav a {
            color: white;
            text-decoration: none;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 20px;
        }
        h1 {
            color: #cc6600;
            border-bottom: 2px solid #ff9900;
            padding-bottom: 10px;
        }
        h2 {
            color: #ff6600;
            margin-top: 30px;
        }
        h3 {
            color: #ff9933;
        }
        .download-btn {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 12px 24px;
            text-align: center;
            text-decoration: none;
            font-size: 16px;
            margin: 20px 0;
            border-radius: 5px;
        }
        .login-btn {
            display: inline-block;
            background-color: #2196F3;
            color: white;
            padding: 12px 24px;
            text-align: center;
            text-decoration: none;
            font-size: 16px;
            margin: 20px 0;
            border-radius: 5px;
        }
        .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;
        }
        .tags {
            margin: 20px 0;
        }
        .tag {
            display: inline-block;
            background-color: #666;
            color: white;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 15px;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                display: none;
            }
            .mobile-nav-toggle {
                display: block;
            }
            nav.active ul {
                display: flex;
            }
            body {
                padding: 10px;
            }
        }
