.event-section {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    overflow: hidden;
    /* height: 100vh; */
    background: #000;
    /* cursor: none; */
}

.custom-cursor {
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    backdrop-filter: blur(5px);
}

.content {
    position: relative;
    z-index: 1;
    /* height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    animation: contentFadeIn 1.5s ease-out forwards;
}

.logo {
    width: 180px;
    margin-bottom: 3rem;
    animation: logoFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.2));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.title {
    font-family: 'Poppins', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transform: translateX(-100%);
    animation: titleLine 2s ease-out forwards 1s;
}

.subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(20px);
    animation: slideUpFade 1s ease-out forwards 0.6s;
}

.time {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    transform: translateY(20px);
    animation: slideUpFade 1s ease-out forwards 0.8s;
}

.description {
    font-size: 1.2rem;
    max-width: 700px;
    line-height: 2;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    opacity: 0.9;
    transform: translateY(20px);
    animation: slideUpFade 1s ease-out forwards 0.5s;
}

.date {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    letter-spacing: 2px;
    position: relative;
    padding: 0 2rem;
    transform: translateY(20px);
    animation: slideUpFade 1s ease-out forwards 0.7s;
}

.date::before,
.date::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
    transition: width 0.3s ease;
}

.date:hover::before,
.date:hover::after {
    width: 60px;
}

.date::before {
    left: 0;
}

.date::after {
    right: 0;
}

.cta-button {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    cursor: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    transform: translateY(20px);
    animation: slideUpFade 1s ease-out forwards 0.9s;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover::before {
    left: 100%;
}

.social-links {
    position: absolute;
    bottom: 2rem;
    display: flex;
    gap: 1.5rem;
    transform: translateY(20px);
    animation: slideUpFade 1s ease-out forwards 1.1s;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.social-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

.social-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.social-links a:hover::after {
    width: 100%;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes titleLine {
    to {
        transform: translateX(100%);
    }
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(100px, 100px) rotate(90deg);
    }
    50% {
        transform: translate(0, 200px) rotate(180deg);
    }
    75% {
        transform: translate(-100px, 100px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 3rem;
        letter-spacing: 2px;
    }
    .description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    .logo {
        width: 140px;
    }
    .date {
        font-size: 1.2rem;
    }
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    body {
        cursor: auto;
    }
    .custom-cursor,
    .cursor-dot {
        display: none;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}