        body {
            box-sizing: border-box;
        }
        
        @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&family=Fredoka+One:wght@400&display=swap');
        
        * {
            font-family: 'Inter', sans-serif;
        }
        
        .fun-title {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
        }
        
        .elegant-title {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }
        
        @keyframes bounce-fun {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-20px); }
            60% { transform: translateY(-10px); }
        }
        
        @keyframes wiggle {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(5deg); }
            75% { transform: rotate(-5deg); }
        }
        
        @keyframes rainbow {
            0% { background: linear-gradient(45deg, #ff6b6b, #4ecdc4); }
            25% { background: linear-gradient(45deg, #4ecdc4, #45b7d1); }
            50% { background: linear-gradient(45deg, #45b7d1, #96ceb4); }
            75% { background: linear-gradient(45deg, #96ceb4, #feca57); }
            100% { background: linear-gradient(45deg, #feca57, #ff6b6b); }
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }
        
        @keyframes slide-carousel {
            0% { transform: translateX(0); }
            100% { transform: translateX(-100%); }
        }
        
        @keyframes pop-in {
            0% { transform: scale(0) rotate(180deg); opacity: 0; }
            100% { transform: scale(1) rotate(0deg); opacity: 1; }
        }
        
        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
            20%, 40%, 60%, 80% { transform: translateX(5px); }
        }
        
        @keyframes slideInLeft {
            0% { transform: translateX(-100%); opacity: 0; }
            100% { transform: translateX(0); opacity: 1; }
        }
        
        @keyframes slideInRight {
            0% { transform: translateX(100%); opacity: 0; }
            100% { transform: translateX(0); opacity: 1; }
        }
        
        @keyframes fadeIn {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        
        .bounce-fun { animation: bounce-fun 2s infinite; }
        .wiggle { animation: wiggle 1s ease-in-out infinite; }
        .rainbow-bg { animation: rainbow 3s ease-in-out infinite; }
        .float { animation: float 3s ease-in-out infinite; }
        .pop-in { animation: pop-in 0.6s ease-out; }
        .shake { animation: shake 0.5s ease-in-out; }
        .slide-in-left { animation: slideInLeft 0.8s ease-out; }
        .slide-in-right { animation: slideInRight 0.8s ease-out; }
        .fade-in { animation: fadeIn 0.6s ease-out; }
        
        .page {
            display: none;
            min-height: 100vh;
        }
        
        .page.active {
            display: block;
        }
        
        .carousel-container {
            overflow: hidden;
            width: 100%;
        }
        
        .carousel-track {
            display: flex;
            animation: slide-carousel 20s linear infinite;
            width: 200%;
        }
        
        .carousel-track:hover {
            animation-play-state: paused;
        }
        
        .game-card {
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .game-card:hover {
            transform: scale(1.1) rotate(2deg);
        }
        
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 1000;
            animation: pop-in 0.3s ease-out;
        }
        
        .modal.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .star {
            position: absolute;
            color: #ffd700;
            animation: float 2s ease-in-out infinite;
            font-size: 20px;
        }
        
        .cloud {
            position: absolute;
            background: white;
            border-radius: 50px;
            opacity: 0.8;
            animation: float 4s ease-in-out infinite;
        }
        
        .cloud:before {
            content: '';
            position: absolute;
            background: white;
            border-radius: 50px;
        }
        
        .cloud1 {
            width: 80px;
            height: 40px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .cloud1:before {
            width: 50px;
            height: 50px;
            top: -25px;
            left: 10px;
        }
        
        .cloud2 {
            width: 60px;
            height: 30px;
            top: 15%;
            right: 15%;
            animation-delay: 1s;
        }
        
        .cloud2:before {
            width: 40px;
            height: 40px;
            top: -20px;
            right: 15px;
        }
        
        .nav-link {
            transition: all 0.3s ease;
        }
        
        .nav-link.active {
            background: rgba(147,51,234,0.1);
            border-radius: 20px;
            color: #7c3aed;
        }
        
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .loader.show {
            opacity: 1;
            visibility: visible;
        }
        
        .loader-content {
            text-align: center;
            color: white;
        }
        
        .loader-spinner {
            width: 60px;
            height: 60px;
            border: 4px solid rgba(255,255,255,0.3);
            border-top: 4px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }