/* --- Events Section --- */
.events-section {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.events-poster {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 3 / 4;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1428 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.2), 0 0 60px rgba(100, 150, 255, 0.3);
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.poster-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1428 100%);
}

.gradient-blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.4;
    mix-blend-mode: screen;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #00d4ff, transparent);
    top: -50px;
    right: -50px;
    animation: float 6s ease-in-out infinite;
}

.blob-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #6366f1, transparent);
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite;
    animation-delay: -2s;
}

.blob-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #00ff88, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 7s ease-in-out infinite;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(20px, -20px);
    }
}

.geometric-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, rgba(0, 255, 255, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 255, 255, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(0, 255, 255, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(0, 255, 255, 0.05) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    opacity: 0.15;
}

.poster-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 30px;
    color: white;
    backdrop-filter: blur(20px);
}

.event-icon-container {
    display: flex;
    gap: 15px;
    font-size: 48px;
    margin-bottom: 20px;
    justify-content: center;
}

.event-icon-container i {
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
    animation: pulse 2s ease-in-out infinite;
}

.event-icon-container i:nth-child(2) {
    color: #00ff88;
    animation-delay: 0.5s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.poster-headline {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #00d4ff, #00ff88, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.poster-subtext {
    font-size: 16px;
    text-align: center;
    color: #a0aec0;
    margin-bottom: 40px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {
    display: flex;
    gap: 15px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.event-item:hover {
    background: rgba(0, 255, 136, 0.12);
    border-color: rgba(0, 255, 136, 0.6);
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 8px 12px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 255, 136, 0.2));
    border-radius: 8px;
    border-left: 3px solid #00d4ff;
}

.date-day {
    font-size: 20px;
    font-weight: 700;
    color: #00d4ff;
}

.date-month {
    font-size: 12px;
    color: #a0aec0;
    font-weight: 600;
    letter-spacing: 1px;
}

.event-info h3 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 4px;
    font-weight: 700;
}

.event-info p {
    font-size: 13px;
    color: #cbd5e1;
}

/* --- Responsive Events --- */
@media (max-width: 768px) {
    .events-poster {
        max-width: 100%;
        aspect-ratio: auto;
        min-height: 600px;
    }

    .poster-headline {
        font-size: 28px;
    }

    .poster-content {
        padding: 30px 20px;
    }

    .event-icon-container {
        font-size: 40px;
        margin-bottom: 15px;
    }
}
