.event-hero {
    position: relative;
    min-height: 640px;
    background-size: cover;
    background-position: center;
    background-color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.event-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.event-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(
180deg, rgba(10, 2, 2, 0.1), rgba(10, 2, 2, 0.4));
}

.event-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 80px 0;
}

.event-status-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.event-status-badge.upcoming {
    background: var(--color-accent);
    color: #2b1210;
}

.event-status-badge.past {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.event-hero-left h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-accent);
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
    line-height: 1.15;
}

.event-organizer {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    margin-bottom: 16px;
}

.event-description {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 20px;
    max-width: 480px;
    line-height: 1.6;
}

.event-hero-left .event-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-hero-left .event-highlights li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #fff;
    font-size: 0.95rem;
}

.event-hero-left .check-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-accent);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.event-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.event-info-card-wide {
    grid-column: 1 / -1;
}

.event-info-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    backdrop-filter: blur(6px);
}

.event-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.event-info-icon svg {
    width: 20px;
    height: 20px;
}

.event-info-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
}

.event-info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.event-book-btn {
    display: block;
    text-align: center;
    background: var(--color-accent);
    color: #2b1210;
    font-weight: 700;
    padding: 16px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.05rem;
}

.event-book-btn:hover {
    background: #e6c65c;
}

.event-not-found {
    padding: 100px 0;
    text-align: center;
}

.event-not-found h1 {
    margin-bottom: 12px;
}

.event-not-found p {
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

@media (max-width: 900px) {
    .event-hero {
        min-height: auto;
    }

    .event-hero-inner {
        grid-template-columns: 1fr;
        padding: 56px 0;
    }

    .event-hero-left h1 {
        font-size: 2rem;
    }
}

@media (max-width: 520px) {
    .event-info-grid {
        grid-template-columns: 1fr;
    }

    .event-hero-inner {
        padding: 40px 0;
        gap: 32px;
    }

    .event-hero-left h1 {
        font-size: 1.6rem;
    }

    .event-info-card {
        padding: 14px 16px;
    }

    .container {
        padding: 14px 16px;
    }
}
