body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #fff9e6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #ff6b35; color: white; padding: 15px; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-transform: uppercase; }
        nav ul { list-style-type: none; padding: 0; display: flex; justify-content: center; }
        nav ul li { margin: 0 15px; }
        nav ul li a { color: white; text-decoration: none; }
        .mobile-nav-toggle { display: none; position: absolute; top: 15px; right: 15px; cursor: pointer; }
        h1 { color: #ff6b35; margin-top: 0; }
        h2 { color: #ff9f1c; border-bottom: 2px solid #ff9f1c; padding-bottom: 5px; }
        h3 { color: #2ec4b6; }
        .download-btn, .login-btn { display: inline-block; background-color: #ff6b35; color: white; padding: 10px 20px; margin: 10px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .image-container { text-align: center; margin: 20px 0; }
        .image-container img { max-width: 100%; height: auto; border: 2px solid #ff9f1c; }
        footer { background-color: #ff6b35; color: white; text-align: center; padding: 15px; margin-top: 30px; }
        .game-types { margin: 20px 0; }
        .game-tags { margin: 20px 0; }
        @media (max-width: 768px) {
            nav ul { display: none; flex-direction: column; }
            nav ul.active { display: flex; }
            .mobile-nav-toggle { display: block; }
        }
