/* Event Archive Styles */
.event-filter-button {
    background: rgba(30, 27, 75, 0.6);
    color: #94a3b8;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(99, 102, 241, 0.2);
    margin: 0.25rem;
}

.event-filter-button:hover {
    color: #e2e8f0;
    background: rgba(99, 102, 241, 0.1);
}

.event-filter-button.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    color: #8b5cf6;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
}

.event-filter-button.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(to right, #8b5cf6, #6366f1);
    border-radius: 3px;
}

/* Pagination */
.pagination {
    margin-top: 2rem;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 0.375rem;
    background: rgba(30, 27, 75, 0.6);
    color: #94a3b8;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.2);
    text-decoration: none;
    margin: 0 0.25rem;
}

.pagination .page-numbers:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #e2e8f0;
}

.pagination .page-numbers.current {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3));
    color: #c4b5fd;
    border-color: rgba(139, 92, 246, 0.4);
}

.pagination .prev,
.pagination .next {
    padding: 0 1rem;
}

/* Single Event Styles */
.event-header h1 {
    background: linear-gradient(to right, #c4b5fd, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1.5rem;
}

.event-meta {
    margin-bottom: 2rem;
}

.event-categories {
    margin-bottom: 2rem;
}

.event-content {
    color: #e2e8f0;
    line-height: 1.8;
}

.event-content h2 {
    color: #a5b4fc;
    font-size: 1.875rem;
    font-weight: bold;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.event-content h3 {
    color: #c4b5fd;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.event-content p {
    margin-bottom: 1.25rem;
}

.event-content ul,
.event-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.event-content ul {
    list-style-type: disc;
}

.event-content ol {
    list-style-type: decimal;
}

.event-content li {
    margin-bottom: 0.5rem;
}

.event-content a {
    color: #93c5fd;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.event-content a:hover {
    color: #60a5fa;
}

.event-thumbnail img {
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.event-cta {
    margin-top: 3rem;
    margin-bottom: 2rem;
    padding: 2rem;
    border-radius: 0.75rem;
    background: linear-gradient(145deg, rgba(31, 41, 55, 0.7), rgba(17, 24, 39, 0.7));
    border: 1px solid rgba(99, 102, 241, 0.2);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
