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 0; 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; gap: 30px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-menu-btn { display: none; position: absolute; right: 20px; top: 20px; background: none; border: none; color: white; font-size: 1.5em; }
        h1 { color: #FF6B35; text-align: center; margin-bottom: 30px; }
        h2 { color: #E85A4F; margin-top: 40px; border-bottom: 2px solid #FF6B35; padding-bottom: 5px; }
        h3 { color: #D83A34; margin-top: 30px; }
        .btn { display: inline-block; background-color: #FF6B35; color: white; padding: 12px 25px; text-decoration: none; border-radius: 5px; margin: 10px 0; font-weight: bold; transition: background-color 0.3s; }
        .btn:hover { background-color: #E85A4F; }
        .download-section, .login-section { text-align: center; margin: 30px 0; }
        .image-container { text-align: center; margin: 30px 0; }
        img { max-width: 100%; height: auto; border-radius: 8px; box-shadow: 0 4px 8px rgba(0,0,0,0.1); }
        .stats-box { background-color: #FFF; padding: 20px; border-radius: 8px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); margin: 20px 0; }
        .tag-cloud { margin: 30px 0; }
        .tag-cloud a { display: inline-block; background-color: #FFE8D6; padding: 5px 10px; margin: 5px; border-radius: 20px; text-decoration: none; color: #D83A34; }
        footer { background-color: #333; color: white; text-align: center; padding: 20px 0; margin-top: 40px; }
        .game-types { margin: 30px 0; }
        .game-types a { display: inline-block; background-color: #E85A4F; color: white; padding: 8px 15px; margin: 5px; border-radius: 5px; text-decoration: none; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            .mobile-menu-btn { display: block; }
            .nav-active { display: flex; }
            .logo { font-size: 2em; }
            h1 { font-size: 1.8em; }
            h2 { font-size: 1.5em; }
        }
