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;
            text-align: center;
            position: relative;
        }
        .logo {
            font-size: 2.5em;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: center;
            margin-top: 15px;
        }
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-weight: bold;
        }
        .mobile-menu {
            display: none;
            position: absolute;
            top: 20px;
            right: 20px;
            background: #333;
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
        }
        h1 {
            color: #FF6600;
            border-bottom: 3px solid #FF9900;
            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: none;
            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: none;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 8px;
        }
        footer {
            background-color: #333;
            color: white;
            text-align: center;
            padding: 20px;
            margin-top: 40px;
        }
        .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 {
                display: none;
                flex-direction: column;
                align-items: center;
                width: 100%;
                position: absolute;
                top: 80px;
                left: 0;
                background-color: #FF9900;
                padding: 10px 0;
            }
            nav.active {
                display: flex;
            }
            .mobile-menu {
                display: block;
            }
            .logo {
                font-size: 2em;
            }
        }
