.ar-event {
    position: relative;
    overflow: hidden;
    padding: 50px 0 40px;
    background: #0a0a0a;
    padding-top: 100px;
}

/* ── Background: trailer video ── */
.ar-event__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.ar-event__bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.ar-event__bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.65);
}

/* ── Content layer ── */
.ar-event__content {
    position: relative;
    z-index: 1;
}

/* ── Title block ── */
.ar-event__title {
    text-align: center;
    margin-bottom: 36px;
}

.ar-event__logo {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(2px 3px 6px rgba(0, 0, 0, 0.9));
}

/* ── Factions row ── */
.ar-event__factions {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 32px;
}

.ar-event__faction {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 320px;
    flex: 0 1 320px;
}

.ar-event__emblem {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.7));
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.ar-event__emblem:hover {
    transform: scale(1.05);
}

/* ── Rewards ── */
.ar-event__rewards {
    text-align: center;
    margin-bottom: 16px;
}

.ar-event__rewards-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #c9a678;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.ar-event__rewards-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ── Support buttons ── */
.ar-event__support-btn {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #d4c5a0;
    background: linear-gradient(180deg, rgba(15, 18, 22, 0.85), rgba(15, 18, 22, 0.55));
    border: 1.5px solid rgba(180, 150, 80, 0.6);
    padding: 10px 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    white-space: nowrap;
}

.ar-event__support-btn:hover {
    color: #f0e0b0;
    border-color: rgba(225, 190, 100, 0.9);
    background: linear-gradient(180deg, rgba(15, 18, 22, 0.95), rgba(15, 18, 22, 0.65));
    box-shadow: 0 0 20px rgba(201, 166, 120, 0.25);
    transform: translateY(-1px);
}

.ar-event__faction--american .ar-event__support-btn {
    border-bottom: 3px solid #1a3a6b;
}

.ar-event__faction--british .ar-event__support-btn {
    border-bottom: 3px solid #8b1a1a;
}

/* ── Blur placeholder until data loads ── */
.ar-event__status--loading .ar-event__countdown,
.ar-event__status--loading .ar-event__progress-pct,
.ar-event__status--loading .ar-event__progress-track {
    filter: blur(6px);
    pointer-events: none;
    user-select: none;
    transition: filter 0.4s ease;
}

/* ── Status & countdown ── */
.ar-event__status {
    text-align: center;
}

.ar-event__countdown {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 18px;
    color: #e5cc8e;
    letter-spacing: 3px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 12px;
    line-height: 1.6;
}

.ar-event__countdown-timer {
    display: block;
    font-size: 15px;
    letter-spacing: 4px;
    color: rgba(229, 204, 142, 0.7);
}

/* ── Progress bar ── */
.ar-event__progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.ar-event__progress-flag {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.ar-event__progress-pct {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 15px;
    min-width: 40px;
}

.ar-event__progress-pct--american {
    color: #5b9bd5;
    text-align: right;
}

.ar-event__progress-pct--british {
    color: #d55b5b;
    text-align: left;
}

.ar-event__progress-track {
    flex: 1;
    display: flex;
    height: 18px;
    border-radius: 2px;
    overflow: hidden;
    border: 1px solid rgba(180, 150, 80, 0.4);
    box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.5);
}

.ar-event__progress-fill--american {
    background: linear-gradient(180deg, #2d6ab8, #1a3a6b);
    height: 100%;
    transition: width 1s ease;
}

.ar-event__progress-fill--british {
    background: linear-gradient(180deg, #b82d2d, #8b1a1a);
    height: 100%;
    transition: width 1s ease;
}

.ar-event__progress-desc {
    font-family: 'Montserrat', sans-serif;
    font-weight: 450;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
    margin: 10px 0 0;
}

/* ── Responsive ── */
@media (max-width: 884px) {
    .ar-event__logo {
        max-width: 380px;
    }

    .ar-event__factions {
        gap: 30px;
    }

    .ar-event__emblem {
        width: 160px;
    }
}

@media (max-width: 768px) {
    .ar-event {
        padding: 36px 0 28px;
        padding-top: 100px;
    }

    .ar-event__factions {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .ar-event__faction {
        max-width: 260px;
    }

    .ar-event__emblem {
        width: 140px;
    }

    .ar-event__progress-bar {
        max-width: 90%;
    }
}

@media (max-width: 578px) {
    .ar-event__logo {
        max-width: 260px;
    }

    .ar-event__emblem {
        width: 120px;
    }

    .ar-event__countdown {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .ar-event__support-btn {
        font-size: 11px;
        padding: 8px 18px;
    }
}