/* --- CSSN Combat Events Specialized Styles --- */

.video-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-container iframe {
    width: 100vw;
    height: 56.25vw; /* 16:9 aspect ratio */
    min-height: 100%;
    min-width: 177.77vh; /* 16:9 aspect ratio */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Schedule Slots */
.schedule-slot-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2rem;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.schedule-slot-card:hover:not(.border-dashed) {
    border-color: var(--combat-indigo);
    background: rgba(15, 23, 42, 0.6);
    transform: translateY(-4px);
}

.status-chip {
    font-size: 8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 4px;
}

.status-chip.confirmed {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-chip.pending {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.date-chip {
    font-size: 9px;
    font-weight: 950;
    color: #64748b;
    letter-spacing: 0.05em;
}

/* Video Cards */
.event-video-card {
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid var(--combat-border);
    border-radius: 2.5rem;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-video-card:hover {
    border-color: var(--combat-indigo);
    background: rgba(15, 23, 42, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 40px 80px -20px rgba(0,0,0,0.8);
}

.video-wrapper {
    aspect-ratio: 16/9;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tag-chip {
    font-size: 8px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--combat-indigo);
    padding: 2px 8px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 4px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.glass-module {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
}

@media (max-width: 1024px) {
    .combat-heading { font-size: 4rem !important; }
}

@media (max-width: 640px) {
    .combat-heading { font-size: 3rem !important; }
    .event-video-card { border-radius: 2rem; }
    .schedule-slot-card { border-radius: 1.5rem; }
}