:root {
    --color-gold: #D4AF37;
    --font-title: 'Cinzel Decorative', cursive;
    --font-body: 'Roboto', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: #000; color: #fff; font-family: var(--font-body); overflow-x: hidden; }

.video-background { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: -1; }
#bg-video { width: 100%; height: 100%; object-fit: cover; }
.video-background::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); }

.container { max-width: 1200px; margin: 0 auto; padding: 50px 20px; text-align: center; }
.main-title { font-family: var(--font-title); font-size: 5rem; color: var(--color-gold); text-shadow: 0 0 15px var(--color-gold); }
.subtitle { font-size: 1.5rem; letter-spacing: 3px; text-transform: uppercase; margin-top: -10px; color: #ccc; }

.events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 60px; }
.event-card {
    background: rgba(10, 10, 10, 0.8); backdrop-filter: blur(5px);
    border: 1px solid #333; border-radius: 8px; padding: 30px;
    text-decoration: none; color: #fff; transition: all 0.3s ease;
    position: relative; overflow: hidden;
}
a.event-card:hover { transform: translateY(-10px); border-color: var(--color-gold); box-shadow: 0 10px 30px rgba(0,0,0,0.5); }
.event-card.completed { opacity: 0.5; filter: grayscale(80%); pointer-events: none; }
.event-card h3 { font-family: var(--font-title); font-size: 1.8rem; color: var(--color-gold); margin-top: 20px; }
.event-card p { font-size: 1rem; color: #aaa; margin-top: 10px; }
.event-date { position: absolute; bottom: 15px; right: 20px; font-size: 0.8rem; color: #666; }

.event-status {
    position: absolute; top: 15px; left: 20px; font-size: 0.7rem; font-weight: bold;
    padding: 4px 8px; border-radius: 4px; letter-spacing: 1px;
}
.live { background-color: #900; color: #fff; }
.upcoming { background-color: var(--color-gold); color: #000; }
.completed .event-status { background-color: #333; color: #888; }