/* Tournaments tab — Phase 1 scaffold */

#page-tournaments {
    padding: 1.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.tournaments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tournaments-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.tournaments-header-actions {
    display: flex;
    gap: 0.5rem;
}

.tournaments-subtabs {
    display: flex;
    gap: 0.25rem;
    border-bottom: 1px solid #2a2f36;
    margin-bottom: 1.25rem;
}

.tournaments-subtab {
    background: none;
    border: none;
    color: #9ba3ae;
    font: inherit;
    font-weight: 600;
    padding: 0.625rem 1rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.15s, border-color 0.15s;
}

.tournaments-subtab:hover {
    color: #e6e9ef;
}

.tournaments-subtab.active {
    color: #e6e9ef;
    border-bottom-color: #56c2ff;
}

.tournaments-empty {
    padding: 3rem 1.5rem;
    text-align: center;
    border: 1px dashed #2a2f36;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
}

.tournaments-empty-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e6e9ef;
    margin: 0 0 0.5rem;
}

.tournaments-empty-sub {
    color: #9ba3ae;
    margin: 0;
}

/* Notification bell (header) */
.notif-bell {
    position: relative;
    background: none;
    border: 1px solid transparent;
    color: #c3c8d1;
    padding: 0.4rem 0.55rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.05rem;
    line-height: 1;
    transition: background 0.15s, border-color 0.15s;
}

.notif-bell:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #2a2f36;
}

.notif-bell-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 8px;
    background: #ef4444;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.notif-bell-badge.visible {
    display: flex;
}

.notif-panel {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    width: 360px;
    max-height: 480px;
    overflow-y: auto;
    background: #1a1e24;
    border: 1px solid #2a2f36;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: none;
    z-index: 200;
}

.notif-panel.open {
    display: block;
}

.notif-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #2a2f36;
    font-weight: 600;
}

.notif-panel-clear {
    background: none;
    border: none;
    color: #9ba3ae;
    font: inherit;
    font-size: 0.82rem;
    cursor: pointer;
}

.notif-panel-clear:hover {
    color: #e6e9ef;
}

.notif-item {
    display: block;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(42, 47, 54, 0.6);
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    transition: background 0.15s;
}

.notif-item:hover {
    background: rgba(86, 194, 255, 0.06);
}

.notif-item.unread {
    background: rgba(86, 194, 255, 0.04);
    border-left: 2px solid #56c2ff;
}

.notif-item-title {
    font-weight: 600;
    margin-bottom: 0.15rem;
    font-size: 0.9rem;
}

.notif-item-body {
    color: #9ba3ae;
    font-size: 0.82rem;
    margin-bottom: 0.25rem;
}

.notif-item-time {
    color: #6b7280;
    font-size: 0.72rem;
}

.notif-panel-empty {
    padding: 2rem 1rem;
    text-align: center;
    color: #9ba3ae;
    font-size: 0.9rem;
}

.notif-wrapper {
    position: relative;
    display: none;
}

body.logged-in .notif-wrapper {
    display: block;
}

/* --- Loading / error states --- */

.tournaments-loading {
    padding: 2rem 1rem;
    text-align: center;
    color: #9ba3ae;
}

.tournaments-loading.error {
    color: #ef4444;
}

.muted {
    color: #9ba3ae;
}

/* --- Tournament cards (browse + mine) --- */

.tournament-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 0.75rem;
}

.tournament-card {
    background: #1a1e24;
    border: 1px solid #2a2f36;
    border-radius: 8px;
    padding: 1rem 1.125rem;
    cursor: pointer;
    transition: border-color 0.15s, transform 0.15s;
}

.tournament-card:hover {
    border-color: #56c2ff;
    transform: translateY(-1px);
}

.tournament-card-head {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-bottom: 0.5rem;
}

.tournament-state {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(155, 163, 174, 0.15);
    color: #c3c8d1;
    letter-spacing: 0.05em;
}

.tournament-state.state-open { background: rgba(74, 222, 128, 0.15); color: #4ade80; }
.tournament-state.state-in_progress { background: rgba(86, 194, 255, 0.15); color: #56c2ff; }
.tournament-state.state-completed { background: rgba(155, 163, 174, 0.15); color: #c3c8d1; }
.tournament-state.state-cancelled { background: rgba(239, 68, 68, 0.15); color: #ef4444; }

.tournament-card-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(192, 202, 240, 0.12);
    color: #c0caf0;
}

.tournament-card-name {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #e6e9ef;
}

.tournament-card-meta {
    display: flex;
    gap: 0.75rem;
    color: #9ba3ae;
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
}

.tournament-card-sub {
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    color: #6b7280;
    font-size: 0.78rem;
}

.tournament-card-host {
    color: #9ba3ae;
}

/* --- My Tournaments sections --- */

.tournaments-mine-section {
    margin-bottom: 2rem;
}

.tournaments-mine-h {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #9ba3ae;
    margin: 0 0 0.75rem;
}

/* --- Tournament invite cards --- */

.tournament-invites {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tournament-invite-card {
    background: rgba(86, 194, 255, 0.04);
    border: 1px solid rgba(86, 194, 255, 0.3);
    border-radius: 8px;
    padding: 1rem 1.125rem;
}

.tournament-invite-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.35rem;
}

.tournament-invite-msg {
    margin: 0.5rem 0;
    color: #c3c8d1;
    font-style: italic;
}

.tournament-invite-actions {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

/* --- Tournament detail --- */

.tournament-detail-back {
    margin-bottom: 1rem;
}

.tournament-back-link {
    color: #9ba3ae;
    text-decoration: none;
    font-size: 0.9rem;
}

.tournament-back-link:hover {
    color: #e6e9ef;
}

.tournament-detail-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #2a2f36;
}

.tournament-detail-name {
    margin: 0 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.tournament-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: #9ba3ae;
    font-size: 0.9rem;
    align-items: center;
}

.tournament-detail-host {
    margin-left: auto;
}

.tournament-detail-actions {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.tournament-detail-desc {
    color: #c3c8d1;
    margin: 0 0 1.5rem;
    white-space: pre-wrap;
}

.tournament-detail-section {
    margin-bottom: 2rem;
}

.tournament-detail-section h3 {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #c3c8d1;
    margin: 0 0 0.75rem;
}

.tournament-participants {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tournament-participant {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.7rem;
    background: #1a1e24;
    border: 1px solid #2a2f36;
    border-radius: 6px;
    font-size: 0.85rem;
}

.tournament-participant-name {
    font-weight: 600;
    color: #e6e9ef;
}

.tournament-participant-race {
    color: #9ba3ae;
    font-size: 0.78rem;
}

.tournament-participant-status {
    font-size: 0.7rem;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    background: rgba(155, 163, 174, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.tournament-participant-status.status-accepted {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
}

/* --- Modals --- */

.tournament-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tournament-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.tournament-modal-card {
    position: relative;
    background: #141820;
    border: 1px solid #2a2f36;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    width: min(560px, 92vw);
    max-height: 90vh;
    overflow-y: auto;
}

.tournament-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #2a2f36;
}

.tournament-modal-head h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.tournament-modal-close {
    background: none;
    border: none;
    color: #9ba3ae;
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 0.25rem;
}

.tournament-modal-close:hover {
    color: #e6e9ef;
}

.tournament-modal-body {
    padding: 1.25rem;
}

/* --- Form styles --- */

.tournament-form,
.tournament-invite-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tournament-form-row {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.tournament-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tournament-form-grid label {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.tournament-form-grid label > span,
.tournament-form-row > span {
    font-size: 0.82rem;
    font-weight: 600;
    color: #c3c8d1;
}

.tournament-form input,
.tournament-form select,
.tournament-form textarea,
.tournament-invite-form input,
.tournament-invite-form select,
.tournament-invite-form textarea {
    padding: 0.55rem 0.75rem;
    background: #0f1218;
    border: 1px solid #2a2f36;
    border-radius: 6px;
    color: #e6e9ef;
    font: inherit;
    font-size: 0.92rem;
}

.tournament-form input:focus,
.tournament-form select:focus,
.tournament-form textarea:focus,
.tournament-invite-form input:focus,
.tournament-invite-form select:focus,
.tournament-invite-form textarea:focus {
    outline: none;
    border-color: #56c2ff;
}

.tournament-form-errors {
    color: #ef4444;
    font-size: 0.85rem;
}

.tournament-form-errors p {
    margin: 0 0 0.25rem;
}

.tournament-form-success {
    color: #4ade80;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.tournament-form-success-sub {
    margin: 0.5rem 0;
    font-size: 0.85rem;
    color: #c3c8d1;
}

.tournament-invite-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.82rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.tournament-invite-links code {
    color: #c0caf0;
    background: rgba(192, 202, 240, 0.1);
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
}

.tournament-invite-links a {
    color: #56c2ff;
    font-size: 0.75rem;
    word-break: break-all;
}

.tournament-form-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

/* --- Invite modal specifics --- */

.tournament-invite-results {
    margin-top: 0.5rem;
    max-height: 180px;
    overflow-y: auto;
    border: 1px solid #2a2f36;
    border-radius: 6px;
    background: #0f1218;
}

.tournament-invite-results:empty {
    display: none;
}

.invite-search-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0.75rem;
    border-bottom: 1px solid rgba(42, 47, 54, 0.5);
}

.invite-search-result:last-child {
    border-bottom: none;
}

.tournament-invite-selected h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ba3ae;
    margin: 0 0 0.5rem;
}

#invite-selected-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    min-height: 1.75rem;
}

.invite-selected-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.5rem 0.3rem 0.65rem;
    background: rgba(86, 194, 255, 0.15);
    border: 1px solid rgba(86, 194, 255, 0.3);
    border-radius: 999px;
    font-size: 0.82rem;
    color: #e6e9ef;
}

.invite-chip-remove {
    background: none;
    border: none;
    color: #9ba3ae;
    font-size: 1rem;
    cursor: pointer;
    padding: 0 0.15rem;
    line-height: 1;
}

.invite-chip-remove:hover {
    color: #ef4444;
}

.btn-link-small {
    background: none;
    border: none;
    color: #56c2ff;
    cursor: pointer;
    font: inherit;
    font-size: 0.82rem;
    padding: 0.25rem 0.5rem;
    text-decoration: none;
    border-radius: 4px;
}

.btn-link-small:hover {
    background: rgba(86, 194, 255, 0.1);
}

/* --- Bracket view --- */

.bracket {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 0.5rem 0.25rem 1rem;
}

.bracket-round {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 200px;
    flex-shrink: 0;
    justify-content: space-around;
}

.bracket-round-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ba3ae;
    font-weight: 700;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid #2a2f36;
    margin-bottom: 0.5rem;
}

.bracket-round-matches {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: space-around;
    flex: 1;
}

.bracket-match {
    background: #1a1e24;
    border: 1px solid #2a2f36;
    border-radius: 6px;
    padding: 0.5rem 0.65rem;
    cursor: pointer;
    transition: border-color 0.15s, transform 0.15s;
}

.bracket-match:hover {
    border-color: #56c2ff;
    transform: translateY(-1px);
}

.bracket-match.state-completed {
    border-color: rgba(155, 163, 174, 0.4);
}

.bracket-match.state-disputed {
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(239, 68, 68, 0.05);
}

.bracket-match-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.35rem;
}

.bracket-match-pos {
    font-size: 0.68rem;
    color: #6b7280;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
}

.bracket-match-state {
    font-size: 0.62rem;
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    background: rgba(155, 163, 174, 0.15);
    color: #9ba3ae;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.bracket-match-state.state-in_progress { background: rgba(86, 194, 255, 0.15); color: #56c2ff; }
.bracket-match-state.state-awaiting_verification { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }
.bracket-match-state.state-disputed { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.bracket-match-state.state-completed { background: rgba(74, 222, 128, 0.15); color: #4ade80; }

.bracket-player {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.35rem 0.45rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #c3c8d1;
    border: 1px solid transparent;
}

.bracket-player + .bracket-player {
    margin-top: 0.2rem;
}

.bracket-player.winner {
    background: rgba(74, 222, 128, 0.08);
    border-color: rgba(74, 222, 128, 0.25);
    color: #e6e9ef;
    font-weight: 600;
}

.bracket-player-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bracket-player-score {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    margin-left: 0.5rem;
}

/* --- Seeding modal --- */

.seeding-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
}

.seeding-option {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    padding: 0.75rem 1rem;
    border: 1px solid #2a2f36;
    border-radius: 6px;
    cursor: pointer;
    transition: border-color 0.15s;
}

.seeding-option:hover {
    border-color: #56c2ff;
}

.seeding-option input[type="radio"] {
    margin-top: 0.25rem;
}

.seeding-option strong {
    display: block;
    margin-bottom: 0.15rem;
}

.seeding-option p {
    margin: 0;
    font-size: 0.82rem;
}

.manual-seed-list {
    border: 1px solid #2a2f36;
    border-radius: 6px;
    background: #0f1218;
    padding: 0.5rem;
    max-height: 280px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.manual-seed-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.75rem;
    background: #1a1e24;
    border: 1px solid #2a2f36;
    border-radius: 4px;
    margin-bottom: 0.3rem;
    cursor: grab;
    transition: opacity 0.15s;
}

.manual-seed-row:last-child {
    margin-bottom: 0;
}

.manual-seed-row.dragging {
    opacity: 0.4;
}

.manual-seed-handle {
    color: #6b7280;
    cursor: grab;
    user-select: none;
}

.manual-seed-pos {
    font-family: 'JetBrains Mono', monospace;
    color: #9ba3ae;
    min-width: 1.5rem;
    font-size: 0.85rem;
}

.manual-seed-name {
    font-weight: 600;
    color: #e6e9ef;
}

/* --- Match detail modal --- */

.match-modal .tournament-modal-card {
    width: min(640px, 92vw);
}

.match-score {
    display: grid;
    grid-template-columns: 1fr auto auto auto 1fr;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    text-align: center;
}

.match-score-name {
    font-weight: 700;
    color: #e6e9ef;
}

.match-score-name:first-of-type { text-align: right; }
.match-score-name:last-of-type { text-align: left; }

.match-score-n {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.6rem;
    font-weight: 700;
}

.match-score-sep {
    color: #6b7280;
    font-size: 1.1rem;
}

.match-sub {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.match-format {
    font-size: 0.72rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    background: rgba(192, 202, 240, 0.1);
    color: #c0caf0;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.match-games {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

.match-game {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.75rem;
    background: #1a1e24;
    border: 1px solid #2a2f36;
    border-radius: 5px;
    font-size: 0.88rem;
}

.match-game.empty {
    opacity: 0.6;
    border-style: dashed;
}

.match-game-n {
    font-family: 'JetBrains Mono', monospace;
    color: #9ba3ae;
    font-weight: 700;
    min-width: 2rem;
}

.match-game-winner {
    font-weight: 600;
    color: #e6e9ef;
}

.match-game-map {
    color: #9ba3ae;
    font-style: italic;
    margin-left: 0.5rem;
}

.game-verify {
    font-size: 0.68rem;
    margin-left: auto;
    padding: 0.15rem 0.45rem;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
}

.game-verify.unverified { background: rgba(251, 191, 36, 0.15); color: #fbbf24; }
.game-verify.verified { background: rgba(74, 222, 128, 0.15); color: #4ade80; }
.game-verify.disputed { background: rgba(239, 68, 68, 0.15); color: #ef4444; }

.match-report-form {
    border-top: 1px solid #2a2f36;
    padding-top: 1rem;
}

.match-report-form h4 {
    margin: 0 0 0.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ba3ae;
}

/* --- Replay drop zone --- */

.match-replay-drop {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.match-replay-drop-label {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    max-width: 180px;
}

.match-replay-drop-label > span {
    font-size: 0.82rem;
    font-weight: 600;
    color: #c3c8d1;
}

.match-replay-drop-zone {
    border: 2px dashed #2a2f36;
    border-radius: 8px;
    padding: 1.25rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    background: #0f1218;
}

.match-replay-drop-zone:hover {
    border-color: #56c2ff;
    background: rgba(86, 194, 255, 0.04);
}

.match-replay-drop-zone.dragover {
    border-color: #56c2ff;
    background: rgba(86, 194, 255, 0.08);
}

.match-replay-drop-zone.uploading {
    opacity: 0.7;
    pointer-events: none;
}

.match-replay-drop-title {
    margin: 0 0 0.2rem;
    font-weight: 600;
    color: #e6e9ef;
}

.match-replay-drop-sub {
    margin: 0;
    font-size: 0.82rem;
    color: #9ba3ae;
}

.match-replay-status {
    margin: 0;
    font-size: 0.85rem;
    min-height: 1.2em;
}

.match-replay-status.success { color: #4ade80; }
.match-replay-status.warning { color: #fbbf24; }
.match-replay-status.error { color: #ef4444; }

.match-report-sep {
    text-align: center;
    position: relative;
    margin: 1rem 0;
    font-size: 0.78rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.match-report-sep::before,
.match-report-sep::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #2a2f36;
}

.match-report-sep::before { left: 0; }
.match-report-sep::after  { right: 0; }
