.hero {
    padding: 90px 0 70px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(10, 22, 40, .75), rgba(10, 22, 40, .94) 75%, var(--bg) 100%), url("../../img/home_background.56d8d2ee7708.avif") center / cover no-repeat;
    background-blend-mode: normal;
}

.hero h1 {
    text-shadow: 0 0 30px rgba(122, 193, 67, .35);
}

.live-dot {
    display: inline-block;
    width: 0.6rem;
    height: 0.6rem;
    margin-right: 0.5rem;
    border-radius: 50%;
    background: #dc3545;
    box-shadow: 0 0 8px #dc3545;
    animation: live-blink 1.2s ease-in-out infinite;
}

@keyframes live-blink {
    50% {
        opacity: 0.25;
    }
}

@media (prefers-reduced-motion: reduce) {
    .live-dot {
        animation: none;
    }
}

.home-section {
    padding: 2.5rem 0;
}

.standings-table {
    color: var(--white);
    background: var(--surface-2);
}

.standings-table th,
.standings-table td {
    border-color: var(--line);
}

.standings-table thead th {
    color: var(--muted);
    border-bottom-color: var(--line);
    white-space: nowrap;
}

.schedule-section {
    background: var(--surface);
}

.game-score {
    font-size: 1.35rem;
    line-height: 1;
    min-width: 1.5rem;
    text-align: right;
}

.bracket {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.bracket-col {
    flex: 1 0 13rem;
    min-width: 13rem;
}

.bracket-col-title {
    color: var(--green-bright);
    font-size: 1rem;
    margin: 0 0 0.75rem;
}

.bracket-col-grid {
    display: grid;
    grid-template-rows: repeat(var(--bracket-rows), minmax(5.5rem, 1fr));
    gap: 0.5rem;
    min-height: calc(var(--bracket-rows) * 5.5rem);
}

.bracket-slot {
    display: flex;
    align-items: center;
    min-height: 0;
}

.bracket-match {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--line);
    background: var(--surface-2);
    border-radius: 0.75rem;
}

@media (max-width: 767px) {
    .hero {
        padding: 2.5rem 0 1.25rem;
    }

    .home-section {
        padding: 1.25rem 0 2rem;
    }

    .home-section .section-title:first-child {
        margin-top: 0;
    }

    .bracket {
        flex-direction: column;
        overflow: visible;
    }

    .bracket-col {
        flex-basis: auto;
        min-width: 0;
    }

    .bracket-col-grid {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .bracket-slot {
        grid-row: auto !important;
    }
}
