        body {
            background-color: #fdf4ff;
            color: #2e1065;
            font-family: 'Montserrat', sans-serif;
            overflow-x: hidden;
        }

        /* Confetti Background */
        .bg-party-pattern {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            z-index: -1;
            opacity: 0.4;
            background-image: url('https://www.transparenttextures.com/patterns/confetti.png');
        }

        /* Glass Card */
        .event-card {
            background: white;
            transition: all 0.4s ease;
            border: 1px solid #f5d0fe;
        }
        .event-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 30px -10px rgba(112, 26, 117, 0.2);
            border-color: #facc15;
        }
        .event-card:hover .icon-box {
            background-color: #facc15;
            color: #2e1065;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #fdf4ff; }
        ::-webkit-scrollbar-thumb { background: #701a75; border-radius: 4px; }

        /* Image Overlay Gradient */
        .img-overlay {
            background: linear-gradient(to top, rgba(46, 16, 101, 0.8), transparent);
        }