.event-page { padding: 120px 24px 80px; max-width: 1100px; margin: 0 auto; }
.event-page h1 { font-size: 2.5rem; font-weight: 900; margin-bottom: 12px; }
.event-page .subtitle { color: #71717a; margin-bottom: 40px; }
.event-filters { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.event-filters a { padding: 8px 18px; border-radius: 8px; font-size: 13px; font-weight: 600; color: #a1a1aa; background: #18181b; border: 1px solid #27272a; transition: all 0.2s; }
.event-filters a:hover, .event-filters a.active { color: #fff; border-color: #ef4444; background: rgba(220,38,38,0.1); }
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.event-card { border-radius: 16px; background: #18181b; border: 1px solid #27272a; overflow: hidden; transition: all 0.3s; display: flex; flex-direction: column; }
.event-card:hover { border-color: rgba(185,28,28,0.5); transform: translateY(-4px); }
.event-card > img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.event-card.ev-finished > img { filter: grayscale(1); }
.event-card .no-poster { width: 100%; aspect-ratio: 4/5; background: linear-gradient(135deg, #27272a, #18181b); display: flex; align-items: center; justify-content: center; color: #3f3f46; font-size: 48px; }
.event-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.event-card .ev-status { display: inline-block; padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 600; margin-bottom: 10px; width: fit-content; }
.ev-status-open { color: #4ade80; background: rgba(34,197,94,0.1); }
.ev-status-closed, .ev-status-finished { color: #f87171; background: rgba(220,38,38,0.1); }
.ev-status-upcoming { color: #fbbf24; background: rgba(251,191,36,0.1); }
.ev-status-ongoing { color: #60a5fa; background: rgba(59,130,246,0.1); }
.event-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.event-card .ev-meta { color: #71717a; font-size: 12px; margin-top: auto; }
.event-card .ev-meta i { margin-right: 4px; }
.pager { display: flex; justify-content: center; margin-top: 40px; }
.pager .pagination { display: flex; gap: 6px; list-style: none; padding: 0; }
.pager .page-item .page-link { padding: 8px 14px; border-radius: 8px; font-size: 14px; color: #a1a1aa; background: #18181b; border: 1px solid #27272a; text-decoration: none; }
.pager .page-item.active .page-link { color: #fff; border-color: #ef4444; background: rgba(220,38,38,0.15); }
@media (max-width: 768px) { .event-grid { grid-template-columns: 1fr; } }
