        .banner-wrapper {
            position: fixed;
            top: 120px;
            width: 100vw;
            overflow: hidden;
            white-space: nowrap;
            z-index: 9999;
        }
        
        .moving-banner {
            display: inline-block;
            padding: 10px 15px;
            font-size: 18px;
            font-weight: bold;
            color: darkviolet;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), -2px -2px 4px rgba(255, 255, 255, 0.3);
            animation: moveBanner 20s linear infinite;
        }
        
        @keyframes moveBanner {
            from { transform: translateX(100%); }
            to { transform: translateX(-100%); }
        }
        
        .register-btn {
            background: #007bff;
            color: #ffffff;
            font-size: 14px; /* Reduced font size */
            font-weight: bold;
            text-decoration: none;
            cursor: pointer;
            display: inline-block;
            padding: 0.2em 0.5em; /* Adjusted padding */
            line-height: 1;
            border: none;
            border-radius: 0.2em;
            box-shadow: 0 5px 0 #0056b3, 0 7px 10px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease-in-out;
            position: relative;
        }

        .register-btn:hover {
            background: #add8e6;
            color: #00008b;
            transform: translateY(2px);
            box-shadow: 0 3px 0 #004080, 0 5px 10px rgba(0, 0, 0, 0.3);
        }

        .register-btn:active {
            transform: translateY(5px);
            box-shadow: 0 2px 0 #003366, 0 3px 6px rgba(0, 0, 0, 0.3);
        }

        .moving-banner:hover {
            animation-play-state: paused;
        }
        
        @media (max-width: 768px) {
            .banner-wrapper {
                top: 90px;
            }
            .moving-banner {
                font-size: 16px;
                padding: 8px 12px;
            }
        }





        /* Styles for the dropdown container */
        #eventDropdown {
            position: fixed;
            top: 175px;
            right: 0;
            width: 25%;
            max-width: 300px;
            border: 1px solid #ddd;
            border-radius: 5px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            z-index: 1000;
            display: block; /* Ensure the dropdown is initially visible */
        }

        /* Title with white blinking effect */
        #eventDropdownTitle {
            padding: 10px 15px; /* Reduce padding to make title area smaller */
            background: linear-gradient(45deg, #ff0081, #ff8c00, #ffd700, #32cd32, #00bfff, #6a0dad); /* Multi-color gradient */
            text-align: center;
            font-size: 18px; /* Slightly smaller font size */
            margin: 0;
            font-family: 'Pacifico', cursive; /* Handwritten style font */
            letter-spacing: 1px; /* Reduced letter spacing */
            color: white;
            position: relative; /* Position relative for close button alignment */
            border-radius: 10px 10px 0 0; /* Rounded corners only at the top */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Simplified shadow */
            cursor: move; /* Change cursor to move */
            width: 100%; /* Match width of the dropdown */
            box-sizing: border-box; /* Ensure padding is included in width */
            animation: blinkWhite 1s infinite; /* Apply blinking effect */
            font-weight: bold; /* Make title font bold */
        }

        /* Keyframes for white blinking effect */
        @keyframes blinkWhite {
            0% { color: white; }
            50% { color: blue; }
            100% { color: white; }
        }

        /* Oval close button styles */
        #closeButton {
            position: absolute;
            top: 5px;
            right: 5px;
            background: #ff4b2b; /* Background color */
            border: none;
            color: white;
            font-size: 18px; /* Slightly smaller font size for the cross symbol */
            border-radius: 50%; /* Oval shape */
            width: 25px; /* Smaller size of the button */
            height: 25px; /* Smaller size of the button */
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Simple shadow effect */
            transition: all 0.3s ease; /* Smooth transition */
        }

        /* Close button 3D effect on hover */
        #closeButton:hover {
            transform: scale(1.2); /* Larger on hover */
            box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.4); /* Enhanced shadow */
        }

        /* Content of the dropdown */
        #eventDropdownContent {
            display: block;
            padding: 10px;
            max-height: 400px;
            overflow-y: scroll; /* Ensure content scrolls */
            overflow-x: hidden;
            background-color: rgba(255, 255, 255, 0.8);
            scrollbar-width: none; /* Hide scrollbar for Firefox */
        }

        /* Hide scrollbar for WebKit browsers (Chrome, Safari) */
        #eventDropdownContent::-webkit-scrollbar {
            display: none;
        }

        /* Event item styles with transparent shining border */
        .event-item {
            margin-bottom: 15px; /* Reduce margin to decrease the space between items */
            background-color: rgba(255, 182, 193, 0.1); /* Very light transparent pink background */
            padding: 5px; /* Reduce padding for more content space */
            border-radius: 10px;
            position: relative;
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.5); /* Shining effect with transparent border */
            transition: box-shadow 0.3s ease; /* Smooth transition for shadow effect */
        }

        .event-item:hover {
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.7); /* Enhanced shining effect on hover */
        }

        /* 3D Line Separator */
        .line-separator {
            width: 100%;
            height: 3px;
            background: linear-gradient(to right, #ff0081, #ff8c00, #ffd700, #32cd32, #00bfff, #6a0dad); /* Multi-color gradient */
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Shadow for 3D effect */
            margin: 10px 0; /* Spacing between events */
            border-radius: 2px;
        }

        .event-item img {
            width: 100%;
            height: auto;
            border-radius: 5px;
        }

        .event-item h4 {
            margin: 10px 0 5px;
            background: linear-gradient(90deg, #ff0081, #ff8c00, #ffd700, #32cd32, #00bfff, #6a0dad); /* Multi-color gradient */
            -webkit-background-clip: text; /* Clip background to text */
            -webkit-text-fill-color: transparent; /* Make text color transparent */
            font-size: 18px;
        }

        .event-item p {
            margin: 0;
            text-align: justify;
            color: #333333;
            font-weight: bold;
            font-size: 14px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
            line-height: 1.6;
        }

        /* Link styles for "Click Here" */
        .event-item a {
            text-decoration: none;
            color: #007bff; /* Default link color */
            font-weight: bold;
            cursor: pointer; /* Show pointer cursor */
            transition: color 0.3s ease, text-shadow 0.3s ease; /* Smooth transitions */
        }

        .event-item a:hover {
            color: #0056b3; /* Color on hover */
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); /* Shadow effect on hover */
        }

        .event-item a:active {
            color: #004085; /* Color when clicked */
            text-shadow: none; /* Remove shadow when clicked */
        }

        /* Prevent background scroll */
        body.no-scroll {
            overflow: hidden;
        }

        /* Mobile-specific styles */
        @media (max-width: 768px) {
            #eventDropdown {
                width: 50%; /* Occupy half of the display */
                top: calc(125vh / 4); /* Position slightly down from the right-side corner */
                right: 0;
                border-radius: 10px 0 0 10px; /* Rounded corners only on the left side for mobile */
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Adjust shadow for mobile */
            }
        }