/* Ongoing Events Section */
.ongoing-events-nexaa {
    padding: 100px 5%;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
}

.ongoing-events-nexaa .events-container {
    max-width: 1400px;
    margin: 0 auto;
}

.ongoing-events-nexaa .events-header {
    text-align: center;
    margin-bottom: 60px;
}

.ongoing-events-nexaa .label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid #4CAF50;
    border-radius: 20px;
    color: #4CAF50;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.ongoing-events-nexaa .subheading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.ongoing-events-nexaa h1 {
    font-size: 48px;
    color: #fff;
    margin: 0;
}

.ongoing-events-nexaa .events-subtext {
    font-size: 18px;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.ongoing-events-nexaa .event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ongoing-events-nexaa .event-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid rgba(76, 175, 80, 0.3);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ongoing-events-nexaa .event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ongoing-events-nexaa .event-card:hover {
    border-color: #4CAF50;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.2);
}

.ongoing-events-nexaa .event-card:hover::before {
    opacity: 1;
}

.ongoing-events-nexaa .event-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.ongoing-events-nexaa .event-card h4 {
    font-size: 24px;
    color: #fff;
    margin: 15px 0;
}

.ongoing-events-nexaa .event-card p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ongoing-events-nexaa .event-meta {
    display: inline-block;
    color: #4CAF50;
    font-size: 14px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .ongoing-events-nexaa h1 {
        font-size: 36px;
    }

    .ongoing-events-nexaa .event-grid {
        grid-template-columns: 1fr;
    }
}