.event-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    border: 1px solid var(--border);
}
.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px -10px var(--shadow);
    border-color: var(--primary-brand);
}
.category-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
}
.hero-section {
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.1) 0%, rgba(var(--brand-rgb), 0) 100%);
    border-radius: 24px;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    text-align: center;
    border: 1px solid rgba(var(--brand-rgb), 0.1);
}
.hero-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}