/* Event Archive Section */
.event-archive-nexaa {
    padding: 100px 5%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.event-archive-container {
    max-width: 1400px;
    margin: 0 auto;
}

.archive-header {
    text-align: center;
    margin-bottom: 60px;
}

.archive-header .label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid #ff8c00;
    border-radius: 20px;
    color: #ff8c00;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.archive-header .subheading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.archive-header h1 {
    font-size: 48px;
    color: #fff;
    margin: 0;
}

.archive-header .subtext {
    font-size: 18px;
    color: #aaa;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Archive Tabs */
.archive-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.archive-tab {
    padding: 12px 30px;
    background: rgba(255, 140, 0, 0.1);
    border: 2px solid rgba(255, 140, 0, 0.3);
    border-radius: 8px;
    color: #ff8c00;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.archive-tab:hover {
    background: rgba(255, 140, 0, 0.2);
    border-color: #ff8c00;
    transform: translateY(-2px);
}

.archive-tab.active {
    background: #ff8c00;
    color: #000;
    border-color: #ff8c00;
}

/* Archive Content */
.archive-content {
    position: relative;
    min-height: 400px;
}

.archive-category {
    display: none;
    animation: fadeIn 0.5s ease;
}

.archive-category.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.archive-placeholder {
    text-align: center;
    padding: 80px 20px;
    color: #666;
    font-size: 18px;
    grid-column: 1 / -1;
    background: rgba(255, 140, 0, 0.05);
    border: 2px dashed rgba(255, 140, 0, 0.2);
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .archive-header h1 {
        font-size: 36px;
    }

    .archive-tabs {
        gap: 10px;
    }

    .archive-tab {
        padding: 10px 20px;
        font-size: 14px;
    }

    .archive-grid {
        grid-template-columns: 1fr;
    }
}