body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%); padding: 20px; border-radius: 10px; margin-bottom: 30px; }
        .logo { font-size: 2.5em; font-weight: bold; color: #2c3e50; text-shadow: 2px 2px 4px rgba(0,0,0,0.1); }
        nav { display: flex; justify-content: space-between; align-items: center; }
        .mobile-menu { display: none; font-size: 1.5em; cursor: pointer; }
        .menu-items { display: flex; gap: 20px; }
        @media (max-width: 768px) {
            .menu-items { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; width: 100%; background: rgba(255,255,255,0.9); padding: 20px; }
            .menu-items.active { display: flex; }
            .mobile-menu { display: block; }
        }
        h1 { color: #2c3e50; margin: 40px 0 20px; }
        h2 { color: #e74c3c; margin: 30px 0 15px; }
        h3 { color: #3498db; margin: 25px 0 10px; }
        .download-btn { display: inline-block; background: #2ecc71; color: white; padding: 12px 25px; margin: 15px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .login-btn { display: inline-block; background: #3498db; color: white; padding: 12px 25px; margin: 15px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        footer { background: #2c3e50; color: white; padding: 20px; margin-top: 40px; border-radius: 10px; }
        .tags { margin: 20px 0; }
        .tag { background: #3498db; color: white; padding: 5px 10px; margin: 5px; border-radius: 3px; display: inline-block; }
