/* Add these new styles for animations */
        .animated-element {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .animated-element.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Smooth scrolling behavior */
        html {
            scroll-behavior: smooth;
        }
        
        /* Ensure body has proper background */
        body {
            background-color: #050509;
            margin: 0;
            padding: 0;
            min-height: 100vh;
            color: white;
        }
        
        /* Ensure content1 has proper background */
        .content1 {
            background-color: #050509;
            min-height: 100vh;
            position: relative;
            z-index: 1;
            display: block !important;
        }
        
        /* Particle background animation */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }
        
        /* Floating consoles animation */
        .floating-consoles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }
        
        /* Button hover effects */
        .button {
            transition: all 0.3s ease;
            transform: scale(1);
        }
        
        .button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        
        /* Header animation */
        .game-header {
            transition: all 0.4s ease;
        }
        
        .game-header.scrolled {
            background-color: rgba(0, 0, 0, 0.9);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }
        
        /* Card hover effects */
        .course-card {
            transition: all 0.3s ease;
            transform: translateY(0);
        }
        
        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Scroll to top button animation */
        #scrollToTopBtn {
            transition: all 0.3s ease;
            opacity: 0.7;
        }
        
        #scrollToTopBtn:hover {
            opacity: 1;
            transform: translateY(-5px);
        }


        .welcome-message {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: #050509;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
        }
        .welcome-message.hide {
            opacity: 0;
            filter: blur(18px);
            pointer-events: none;
        }
        .welcome-text {
            font-size: clamp(1.2rem, 8vw, 4rem);
            font-weight: 900;
            background: linear-gradient(90deg, #FF4D4D, #00FFCC);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
            opacity: 1;
            text-align: center;
            padding: 0 1rem;
        }
        .main-blur {
            filter: blur(18px) brightness(0.7);
            opacity: 0.5;
            pointer-events: none;
            transition: filter 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
        }
        @media (max-width: 1024px) {
            main {
                padding: 1rem;
            }
        }
        @media (max-width: 768px) {
            .welcome-text {
                font-size: 2.2rem;
            }
            main {
                padding: 0.5rem;
            }
        }
        @media (max-width: 480px) {
            .welcome-text {
                font-size: 1.2rem;
            }
        }
        /* Hamburger icon lines for menu-toggle */
        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 2rem;
            color: #fff;
            position: absolute;
            right: 2rem;
            top: 1.5rem;
            z-index: 1001;
            background: none;
            border: none;
        }
        .menu-toggle .bar {
            display: block;
            width: 28px;
            height: 4px;
            margin: 5px auto;
            background-color: #fff;
            border-radius: 2px;
            transition: 0.3s;
        }
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
        }

/* Heart and sparkle effects for love theme */
.anime-heart {
  pointer-events: none;
  user-select: none;
  will-change: transform, opacity;
  filter: drop-shadow(0 0 8px #ff69b4cc) drop-shadow(0 0 2px #fff);
  transition: filter 0.3s;
}
.love-sparkle {
  pointer-events: none;
  user-select: none;
  will-change: transform, opacity;
  filter: drop-shadow(0 0 8px #fff) drop-shadow(0 0 2px #ffb6c1);
  transition: filter 0.3s;
}
#prachi-welcome-overlay {
  pointer-events: all;
  background: rgba(255, 182, 193, 0.25);
  backdrop-filter: blur(8px);
  z-index: 10000;
  transition: opacity 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.love-theme-blur {
  filter: blur(8px) brightness(0.95);
  transition: filter 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}