body { font-family: 'Arial', sans-serif; line-height: 1.6; margin: 0; padding: 0; color: #333; background-color: #FFF9E6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #FF4500; color: white; padding: 15px 0; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; letter-spacing: 2px; }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; font-weight: 500; }
        .mobile-nav-btn { display: none; position: absolute; right: 20px; top: 15px; background: none; border: none; color: white; font-size: 24px; }
        h1 { font-size: 32px; margin-top: 30px; color: #FF4500; }
        h2 { font-size: 24px; margin-top: 25px; color: #E67E22; }
        h3 { font-size: 20px; margin-top: 20px; color: #2980B9; }
        p { margin-bottom: 15px; }
        .download-btn, .login-btn { display: inline-block; background-color: #2ECC71; color: white; padding: 12px 25px; text-decoration: none; border-radius: 5px; margin: 15px 0; font-weight: bold; }
        .login-btn { background-color: #3498DB; }
        .image-container { text-align: center; margin: 25px 0; }
        img { max-width: 100%; height: auto; border-radius: 8px; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background-color: #F1C40F; color: #333; padding: 5px 10px; border-radius: 15px; margin-right: 8px; margin-bottom: 8px; text-decoration: none; }
        footer { background-color: #333; color: white; text-align: center; padding: 20px 0; margin-top: 30px; }
        .game-types { margin: 20px 0; }
        .game-type { display: inline-block; background-color: #9B59B6; color: white; padding: 5px 15px; border-radius: 20px; margin-right: 10px; text-decoration: none; }
        @media (max-width: 768px) {
            nav { display: none; flex-direction: column; align-items: center; }
            nav.active { display: flex; }
            .mobile-nav-btn { display: block; }
            .container { padding: 10px; }
            h1 { font-size: 26px; }
            h2 { font-size: 20px; }
            h3 { font-size: 18px; }
        }
