.ev-detail { padding: 120px 24px 80px; max-width: 1100px; margin: 0 auto; }
.ev-back { display: inline-flex; align-items: center; gap: 6px; color: #a1a1aa; font-size: 14px; margin-bottom: 32px; transition: color 0.2s; }
.ev-back:hover { color: #ef4444; }
.ev-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.ev-info h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 900; line-height: 1.2; margin-bottom: 20px; }
.ev-speaker { color: #a1a1aa; font-size: 15px; margin-bottom: 8px; }
.ev-speaker strong { color: #f87171; }
.ev-date { color: #e4e4e7; font-size: 14px; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.ev-date i { color: #ef4444; }
.ev-location { color: #e4e4e7; font-size: 14px; margin-bottom: 24px; display: flex; align-items: center; gap: 8px; }
.ev-location i { color: #ef4444; }
.ev-desc { color: #d4d4d8; font-size: 16px; line-height: 1.7; white-space: pre-line; }

/* Poster with scan animation */
.ev-poster-wrap { position: relative; display: flex; justify-content: center; }
.ev-poster-container { position: relative; width: 100%; max-width: 400px; aspect-ratio: 4/5; border-radius: 20px; overflow: hidden; border: 2px solid rgba(220,38,38,0.3); box-shadow: 0 0 60px rgba(220,38,38,0.12), 0 0 120px rgba(220,38,38,0.04); }
.ev-poster-container img { width: 100%; height: 100%; object-fit: cover; }
.ev-poster-container.finished img { filter: grayscale(1); }
.ev-poster-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, #18181b, #27272a); display: flex; align-items: center; justify-content: center; font-size: 80px; color: #3f3f46; }
.ev-scan-line { position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, rgba(239,68,68,0.9), transparent); animation: evscan 6s cubic-bezier(0.4, 0, 0.2, 1) infinite; box-shadow: 0 0 15px rgba(239,68,68,0.6), 0 0 40px rgba(239,68,68,0.2); }
@keyframes evscan { 0% { top: 0; opacity: 0.3; } 10% { opacity: 1; } 50% { top: calc(100% - 2px); opacity: 1; } 60% { opacity: 0.3; } 70% { opacity: 1; } 100% { top: 0; opacity: 0.3; } }
.ev-scan-corners { position: absolute; inset: -2px; border-radius: 20px; }
.ev-scan-corners::before, .ev-scan-corners::after { content: ''; position: absolute; width: 30px; height: 30px; border-color: #ef4444; border-style: solid; }
.ev-scan-corners::before { top: 8px; left: 8px; border-width: 3px 0 0 3px; border-radius: 8px 0 0 0; }
.ev-scan-corners::after { bottom: 8px; right: 8px; border-width: 0 3px 3px 0; border-radius: 0 0 8px 0; }

/* Status badge below poster */
.ev-status-badge { margin-top: 20px; text-align: center; }
.ev-status-badge > span { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; border-radius: 10px; font-size: 14px; font-weight: 700; }
.ev-st-open { background: rgba(34,197,94,0.1); color: #4ade80; border: 1px solid rgba(34,197,94,0.3); }
.ev-st-closed, .ev-st-finished { background: rgba(220,38,38,0.1); color: #f87171; border: 1px solid rgba(220,38,38,0.3); }
.ev-st-upcoming { background: rgba(251,191,36,0.1); color: #fbbf24; border: 1px solid rgba(251,191,36,0.3); }
.ev-st-ongoing { background: rgba(59,130,246,0.1); color: #60a5fa; border: 1px solid rgba(59,130,246,0.3); }
.ev-st-dot { width: 8px; height: 8px; min-width: 8px; max-width: 8px; min-height: 8px; max-height: 8px; border-radius: 50%; aspect-ratio: 1; animation: evpulse 2s infinite; flex-shrink: 0; flex-grow: 0; display: block; padding: 0 !important; font-size: 0 !important; }
@keyframes evpulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

@media (max-width: 768px) {
  .ev-hero { grid-template-columns: 1fr; }
  .ev-poster-wrap { order: -1; }
}
