/*
 * Main Stylesheet (Legacy)
 *
 * ==========================================
 * CSS MIGRATION COMPLETE - Phase 4
 * ==========================================
 *
 * This file has been minimized from 7,554 lines to ~50 lines.
 * All styles have been migrated to the modular CSS architecture.
 *
 * Migration History:
 * - Phase 2: Theme variables → css/tokens/colors.css
 * - Phase 3: CSS reset → css/base/reset.css
 * - Phase 4A: Sound, Hints, Footer → css/components/
 * - Phase 4B: Language Switcher → css/components/language-switcher.css
 * - Phase 4C: PWA styles → css/components/pwa.css
 * - Phase 4D: Card styles → css/components/cards.css
 * - Phase 4E: Win Modal → css/components/win-modal.css
 * - Phase 4F: Preferences Modal → css/components/preferences-modal.css
 * - Phase 4G: Profile Dashboard → css/components/profile-dashboard.css
 * - Phase 4H: Gamification → css/components/gamification.css
 * - Phase 4I: Game Selection → css/components/game-selection-overlay.css
 * - Phase 4J: Daily Challenge → css/components/daily-challenge.css
 * - Phase 4K-4P: Layout components → css/layout/
 * - Phase 4Q: Preferences Popup Mobile → css/components/preferences-modal.css
 * - Phase 4R: Breadcrumb → css/components/breadcrumb.css
 * - Phase 4S: Game Layouts → css/games/game-layouts.css
 * - Phase 4T: Responsive Design → css/layout/responsive.css
 * - Phase 4U: Forty Thieves, Pyramid, Stats Table → css/games/, css/components/
 *
 * Entry point is now css/styles-bridge.css which loads all modules.
 * This file is kept for backward compatibility with standalone HTML pages.
 *
 * New styles should be added to appropriate component files, not here.
 */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-primary);
    background-image:
        radial-gradient(ellipse at top, var(--bg-gradient-top) 0%, transparent 50%),
        radial-gradient(ellipse at bottom, var(--bg-gradient-bottom) 0%, transparent 50%);
    min-height: 100vh;
    overflow-x: hidden;
    transition: background 0.3s ease;
}
