html {
    scroll-behavior: smooth;
}

/* Global Overrides for Welcome Page */
.welcome-container {
        font-family: 'Space Grotesk', sans-serif;
        --color-dark-blue: #103370;
        --color-pink: #F24781;
        --color-white: #FFFFFF;
        --color-lime: #b8ff00; 
        --color-purple: #8B5CF6; 
        background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(242,71,129,0.05) 50%, rgba(248,250,252,1) 100%);
        overflow-x: hidden;
        min-height: 100vh;
    }

    /* Hero Section */
    .hero-creative {
        position: relative;
        padding: 6rem 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5rem;
        background: transparent;
        overflow: hidden;
        min-height: 80vh;
    }
    
    .hero-blob-1 {
        position: absolute;
        top: -10%; left: -5%;
        width: 500px; height: 500px;
        background: var(--color-lime);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        filter: blur(80px);
        opacity: 0.2;
        z-index: 0;
        animation: blobFloat 12s infinite alternate;
    }
    
    .hero-blob-2 {
        position: absolute;
        bottom: -10%; right: 10%;
        width: 400px; height: 400px;
        background: var(--color-pink);
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
        filter: blur(70px);
        opacity: 0.15;
        z-index: 0;
        animation: blobFloat 9s infinite alternate-reverse;
    }

    @keyframes blobFloat {
        0% { transform: translateY(0) scale(1); }
        100% { transform: translateY(-40px) scale(1.1); }
    }

    .hero-content {
        position: relative;
        z-index: 10;
        max-width: 600px;
    }

    .hero-title {
        font-size: 4.5rem;
        font-weight: 800;
        line-height: 1.1;
        color: var(--color-dark-blue);
        margin-bottom: 1.5rem;
    }
    
    .hero-title .highlight-pill {
        display: inline-block;
        background: var(--color-purple);
        color: var(--color-white);
        padding: 0.2rem 1.5rem;
        border-radius: 50px;
        transform: rotate(-2deg);
        box-shadow: 0 10px 20px rgba(139, 92, 246, 0.4);
    }
    
    .hero-desc {
        font-size: 1.2rem;
        color: #475569;
        margin-bottom: 2.5rem;
        line-height: 1.6;
        font-weight: 500;
    }

    .hero-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: var(--color-dark-blue);
        color: var(--color-white);
        padding: 1rem 2.5rem;
        border-radius: 50px;
        font-size: 1.125rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 25px rgba(16, 51, 112, 0.3);
    }
    .hero-btn:hover {
        transform: translateY(-5px);
        background: var(--color-pink);
        box-shadow: 0 15px 35px rgba(242, 71, 129, 0.4);
    }
    
    .hero-btn-outline {
        display: inline-flex;
        align-items: center;
        background: transparent;
        color: var(--color-dark-blue);
        padding: 1rem 2.5rem;
        border-radius: 50px;
        font-size: 1.125rem;
        font-weight: 700;
        text-decoration: none;
        border: 2px solid var(--color-dark-blue);
        transition: all 0.3s ease;
        margin-left: 1rem;
    }
    .hero-btn-outline:hover {
        background: var(--color-dark-blue);
        color: var(--color-white);
    }

    .hero-image-wrapper {
        position: relative;
        z-index: 10;
        width: 100%;
        max-width: 600px;
    }
    
    .hero-image-card {
        background: rgba(255, 255, 255, 0.6);
        backdrop-filter: blur(20px);
        border: 2px solid rgba(255, 255, 255, 0.8);
        border-radius: 40px;
        padding: 1rem;
        transform: rotate(3deg);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        transition: transform 0.5s ease;
    }
    
    .hero-image-card:hover {
        transform: rotate(0deg) scale(1.02);
    }
    
    .hero-image-card img {
        border-radius: 30px;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        display: block;
    }

    .floating-badge {
        position: absolute;
        bottom: -20px;
        left: -40px;
        background: var(--color-white);
        padding: 1rem 1.5rem;
        border-radius: 100px;
        display: flex;
        align-items: center;
        gap: 1rem;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        border: 2px solid var(--color-lime);
        animation: floatBadge 4s infinite ease-in-out;
    }
    
    .floating-badge .icon-box {
        width: 40px; height: 40px;
        background: var(--color-lime);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        color: var(--color-dark-blue);
    }
    
    @keyframes floatBadge {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-15px); }
    }

    /* Partners Section */
    .partners-banner {
        background: var(--color-dark-blue);
        border-radius: 40px;
        padding: 3rem 2rem;
        position: relative;
        z-index: 20;
        box-shadow: 0 25px 50px rgba(16, 51, 112, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.1);
        overflow: hidden;
    }
    
    .partners-header {
        text-align: center;
        font-weight: 800;
        font-size: 1.25rem;
        margin-bottom: 2rem;
        color: var(--color-lime);
        text-transform: uppercase;
        letter-spacing: 2px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    .partners-header::before, .partners-header::after {
        content: '';
        display: block;
        width: 50px;
        height: 2px;
        background: var(--color-lime);
    }

    @keyframes marqueeScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    .animate-marquee {
        display: flex;
        width: max-content;
        animation: marqueeScroll 25s linear infinite;
    }
    
    .partners-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .partner-logo-box {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        padding: 1.5rem 2.5rem;
        border-radius: 100px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 180px;
    }
    .partner-logo-box:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-5px);
        border-color: var(--color-lime);
    }
    
    .partner-logo-box img {
        height: 45px;
        object-fit: contain;
        filter: brightness(0) invert(1);
    }

    /* Filter Section */
    .events-section {
        padding: 2rem 2rem 6rem 2rem;
    }
    
    .section-title {
        text-align: center;
        font-size: 3.5rem;
        font-weight: 800;
        color: var(--color-dark-blue);
        margin-bottom: 1rem;
    }
    .section-title span {
        color: var(--color-pink);
    }
    
    .section-subtitle {
        text-align: center;
        color: #64748b;
        font-size: 1.125rem;
        font-weight: 500;
        margin-bottom: 3rem;
    }

    .filter-wrapper {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin-bottom: 4rem;
        background: var(--color-white);
        padding: 1.5rem;
        border-radius: 100px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
        max-width: max-content;
        margin-left: auto;
        margin-right: auto;
    }
    
    .filter-label {
        font-weight: 800;
        color: var(--color-dark-blue);
        margin-right: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .filter-pill {
        background: #f1f5f9;
        color: #475569;
        border: 2px solid transparent;
        padding: 0.75rem 2rem;
        border-radius: 100px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .filter-pill:hover {
        background: #e2e8f0;
        transform: scale(1.05);
    }
    .filter-pill.active {
        background: var(--color-dark-blue);
        color: var(--color-lime);
        border-color: var(--color-dark-blue);
        box-shadow: 0 10px 20px rgba(16, 51, 112, 0.2);
    }

    /* Events Grid */
    .events-grid-custom {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 3rem;
        max-width: 1300px;
        margin: 0 auto;
    }
    
    .event-card-playful {
        background: var(--color-white);
        border-radius: 40px;
        padding: 1.5rem;
        box-shadow: 0 15px 35px rgba(0,0,0,0.04);
        border: 2px solid #f1f5f9;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        display: flex;
        flex-direction: column;
    }
    
    .event-card-playful:hover {
        transform: translateY(-15px);
        border-color: var(--color-pink);
        box-shadow: 0 25px 50px rgba(242, 71, 129, 0.15);
    }
    
    .event-image-container {
        width: 100%;
        aspect-ratio: 4 / 5;
        border-radius: 30px;
        overflow: hidden;
        position: relative;
        margin-bottom: 1.5rem;
        background: #f8fafc;
    }
    
    .event-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .event-card-playful:hover .event-image-container img {
        transform: scale(1.1) rotate(2deg);
    }
    
    .event-category-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: var(--color-lime);
        color: var(--color-dark-blue);
        padding: 0.5rem 1.25rem;
        border-radius: 50px;
        font-weight: 800;
        font-size: 0.75rem;
        text-transform: uppercase;
        box-shadow: 0 4px 15px rgba(184, 255, 0, 0.4);
        z-index: 2;
    }
    
    .event-empty-badge {
        position: absolute;
        inset: 0;
        background: rgba(16, 51, 112, 0.85);
        backdrop-filter: blur(4px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 3;
    }
    .event-empty-badge span {
        background: #103370;
        color: #ffffff;
        padding: 0.75rem 2rem;
        border-radius: 50px;
        font-weight: 800;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        transform: rotate(-10deg);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        border: 2px solid rgba(255, 255, 255, 0.4);
    }
    
    .event-info h3 {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--color-dark-blue);
        margin-bottom: 1rem;
        line-height: 1.3;
        transition: color 0.3s;
    }
    .event-card-playful:hover .event-info h3 {
        color: var(--color-purple);
    }
    
    .event-meta {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: #64748b;
        font-weight: 600;
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .event-footer {
        margin-top: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 1.5rem;
        border-top: 2px dashed #cbd5e1;
    }
    
    .event-price {
        font-size: 1.75rem;
        font-weight: 900;
        color: var(--color-dark-blue);
    }
    
    .btn-buy {
        background: var(--color-purple);
        color: var(--color-lime);
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
    }
    
    .event-card-playful:hover .btn-buy {
        background: var(--color-pink);
        color: var(--color-white);
        transform: rotate(-45deg) scale(1.1);
        box-shadow: 0 15px 25px rgba(242, 71, 129, 0.4);
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .hero-creative {
            flex-direction: column;
            padding: 4rem 1.5rem 8rem 1.5rem;
            text-align: center;
            gap: 3rem;
        }
        .hero-title {
            font-size: 3.5rem;
        }
        .floating-badge {
            left: 50%;
            transform: translateX(-50%);
            bottom: -30px;
            animation: floatBadgeMobile 4s infinite ease-in-out;
        }
        @keyframes floatBadgeMobile {
            0%, 100% { transform: translate(-50%, 0); }
            50% { transform: translate(-50%, -10px); }
        }
        .partners-banner {
            margin: 4rem 1rem 3rem 1rem;
            border-radius: 30px;
            padding: 3rem 1.5rem;
        }
        .section-title {
            font-size: 2.5rem;
        }
    }
