/* ============================================
   UEFA THEME — CANLI YAYIN / FİKSTÜR STİLLERİ
   ============================================ */

.broadcast-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    max-width: 1800px;
    margin: 0 auto;
}

.broadcast-header {
    text-align: center;
    margin-bottom: 12px;
}

.broadcast-header h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    letter-spacing: 2px;
    background: linear-gradient(180deg, #ffffff 0%, #a2c4e3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 15px rgba(0, 229, 255, 0.15);
}

.broadcast-header p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 4px;
}

/* Fikstür Haftalık Grid Yapısı */
.fixture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 10px;
}

/* Hafta Kartı */
.week-card {
    background: linear-gradient(135deg, rgba(12, 21, 43, 0.9) 0%, rgba(5, 10, 24, 0.95) 100%);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: var(--transition-fast);
}

.week-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 229, 255, 0.1);
}

.week-header {
    background: rgba(0, 229, 255, 0.08);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.week-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    letter-spacing: 1px;
    color: var(--uefa-cyan);
}

.week-info {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}

.week-matches {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Maç Satırı */
.match-row {
    display: grid;
    grid-template-columns: 1fr 24px 1fr;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.match-row:hover {
    background: rgba(0, 229, 255, 0.04);
}

/* Takım Kolonu */
.match-team {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
}

.match-team.home {
    justify-content: flex-end;
    text-align: right;
}

.match-team.away {
    justify-content: flex-start;
    text-align: left;
}

.match-team-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.match-team-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.match-team-logo-placeholder {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: bold;
    color: var(--text-muted);
    flex-shrink: 0;
}

/* Ortadaki VS / BAY Bölgesi */
.match-vs {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--uefa-gold);
    opacity: 0.8;
}

/* BAY Eşleşmesi (Listenin En Altındaki Özel Satır) */
.match-row.bay-match {
    background: rgba(212, 175, 55, 0.04);
    border: 1px dashed rgba(212, 175, 55, 0.2);
    margin-top: 4px;
}

.match-row.bay-match .match-vs {
    color: #ff4c4c;
    font-weight: 800;
}

.match-team.bay-team {
    color: var(--text-muted);
    font-style: italic;
}

/* Boş Durum (Fikstür Çekilmediğinde) */
.fixture-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: rgba(12, 21, 43, 0.4);
    border: 2px dashed var(--border-color);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.fixture-empty-icon {
    font-size: 3rem;
    animation: pulseGlow 2s infinite ease-in-out;
}

.fixture-empty h3 {
    font-size: 1.3rem;
    color: var(--text-white);
}

.fixture-empty p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 400px;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Fikstür Çekim Reveal Animasyonu */
.week-card {
    animation: cardReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes cardReveal {
    0% { transform: translateY(20px) scale(0.95); opacity: 0; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}
