:root {
  --bg: #07111f;
  --bg-2: #0b1626;
  --surface: rgba(10, 17, 31, 0.92);
  --surface-2: rgba(17, 26, 44, 0.92);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f5f7fb;
  --muted: rgba(245, 247, 251, 0.68);
  --red: #ff2323;
  --gold: #ff3b30;
  --gold-soft: rgba(255, 59, 48, 0.16);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body.theme-dark {
  font-family: 'Manrope', system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 59, 48, 0.13), transparent 24%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 28%),
    linear-gradient(180deg, #050b14 0%, var(--bg) 40%, #050b14 100%);
  color: var(--text);
}

a { text-decoration: none; }
.site-shell { position: relative; overflow: clip; }

.site-nav {
  background: rgba(4, 10, 20, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 20px rgba(255, 59, 48, 0.25));
}

.brand-mark, .hero-badge-mark, .sponsor-badge, .mini-badge, .team-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-mark {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), #ffb1ab);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(255, 59, 48, 0.35);
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255,255,255,0.72);
  font-size: .92rem;
  font-weight: 600;
}

.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .nav-link:hover {
  color: #fff;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), #ff7b73);
  color: #ffffff;
  font-weight: 800;
  border: none;
  box-shadow: 0 14px 40px rgba(255, 59, 48, 0.28);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #ff5c52, #ff9d97);
  color: #ffffff;
}

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

.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}

.section-head { margin-bottom: 1.5rem; }
.section-kicker {
  display: inline-flex;
  gap: .4rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 800;
}

.section-title {
  margin: .35rem 0 0;
  font-size: 1.55rem;
  font-weight: 800;
}

.hero-section {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(5, 11, 20, 0.9), rgba(5, 11, 20, 0.65)),
    radial-gradient(circle at 80% 20%, rgba(255,59,48,0.2), transparent 26%),
    url('https://images.unsplash.com/photo-1518091043644-c1d4457512c6?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  border-bottom: 1px solid var(--border);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,11,20,0.35), rgba(5,11,20,0.88)),
    linear-gradient(90deg, rgba(255,59,48,0.08), transparent);
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 38rem;
}

.hero-card,
.info-card,
.team-card,
.news-card,
.match-card,
.media-card,
.cta-panel,
.dashboard-card,
.login-card,
.admin-mini-card,
.award-box {
  background: linear-gradient(180deg, var(--surface), rgba(8, 14, 26, 0.96));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: 10px;
}

.hero-card { padding: 1rem; }

.hero-card-top,
.hero-badge,
.hero-mini-stats,
.match-card-top,
.match-card-bottom,
.team-card-head,
.contact-line,
.rank-item,
.admin-brand,
.login-brand,
.dashboard-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-badge {
  padding: .9rem;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255,59,48,.15), rgba(255,255,255,.04));
  border: 1px solid rgba(255,59,48,.18);
  margin: 1.25rem 0;
}

.hero-badge-mark,
.sponsor-badge,
.mini-badge,
.team-badge {
  background: linear-gradient(135deg, var(--gold), #ffb1ab);
  color: #ffffff;
}

.hero-badge-mark,
.sponsor-badge,
.mini-badge {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  font-size: .95rem;
  letter-spacing: 0;
  text-align: center;
}

.sponsor-logo-img,
.admin-sponsor-logo {
  display: block;
  object-fit: contain;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

.sponsor-logo-img {
  width: 100%;
  height: 82px;
  padding: .8rem;
  border-radius: 10px;
  margin-bottom: .9rem;
}

.admin-sponsor-logo {
  width: 54px;
  height: 38px;
  padding: .25rem;
  border-radius: 7px;
}

.hero-mini-stats {
  padding-top: .5rem;
  border-top: 1px solid var(--border);
}

.hero-mini-stats > div {
  flex: 1;
  text-align: center;
}

.hero-mini-stats strong {
  display: block;
  font-size: 1.25rem;
  color: #ff9d97;
}

.hero-mini-stats span,
.news-meta,
.text-white-50 {
  color: var(--muted) !important;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
}

.countdown-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .7rem;
  text-align: center;
}

.countdown-card span {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .32rem .62rem;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.pill-gold { background: var(--gold-soft); color: #ffe08f; }
.pill-light { background: rgba(255,255,255,0.08); color: #fff; }

.section-wrap .container > .row > * {
  will-change: transform, opacity;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.sponsor-card,
.news-card,
.match-card,
.team-card,
.media-card,
.info-card,
.login-card {
  padding: 1rem;
}

.team-badge {
  width: 48px;
  height: 48px;
  font-size: .95rem;
  letter-spacing: 0;
  overflow: hidden;
  text-align: center;
  border: 3px solid rgba(255,255,255,0.12);
  box-shadow: 0 16px 34px rgba(0,0,0,.3);
}

.team-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: .82rem;
}

.team-meta i,
.contact-line i {
  color: var(--gold);
}

.contact-list {
  display: grid;
  gap: .5rem;
}

.contact-list div {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  padding: .62rem .75rem;
  border: 1px solid rgba(255, 35, 35, .24);
  border-radius: 8px;
  background: rgba(255, 35, 35, .08);
}

.contact-list strong {
  color: #fff;
}

.contact-list span {
  color: #ffb1ab;
  font-weight: 800;
}

.squad-details summary {
  cursor: pointer;
  font-weight: 700;
  color: #fff;
  margin-top: 1rem;
}

.squad-list {
  list-style: none;
  padding: 0;
  margin: .8rem 0 0;
}

.squad-list li,
.contact-line,
.rank-item,
.match-card-top,
.match-card-bottom,
.bracket-row,
.admin-mini-card {
  border-bottom: 1px solid var(--border);
  padding: .55rem 0;
}

.squad-list li:last-child,
.rank-item:last-child,
.match-card-bottom:last-child,
.contact-line:last-child {
  border-bottom: 0;
}

.squad-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.news-image,
.media-thumb {
  min-height: 170px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.news-body { padding-top: 1rem; }

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

.match-team {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.match-score {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--gold);
}

.match-status {
  color: rgba(255,255,255,.58);
}

.match-status.is-live,
.live-match-card.is-live-match .match-status,
.live-match-card.is-live-match [data-match-status] {
  color: #fff;
}

.live-match-card.is-live-match .match-score,
.live-match-card.is-live-match .cup-match-score {
  box-shadow: 0 0 0 1px rgba(255, 35, 35, .56), 0 0 24px rgba(255, 35, 35, .24);
}

.live-match-card.is-live-match [data-match-status]::before {
  content: '';
  display: inline-block;
  width: .48rem;
  height: .48rem;
  margin-right: .38rem;
  border-radius: 999px;
  background: #ff2323;
  animation: livePulse 1.2s infinite;
}

.live-score-form {
  display: flex;
  align-items: center;
  gap: .35rem;
  min-width: 310px;
}

.live-score-input {
  width: 54px;
  text-align: center;
}

.live-status-select {
  min-width: 116px;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 35, 35, .55); }
  70% { box-shadow: 0 0 0 7px rgba(255, 35, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 35, 35, 0); }
}

.match-card-bottom {
  color: var(--muted);
  font-size: .82rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.filter-pill {
  padding: .42rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: #fff;
  background: rgba(255,255,255,0.03);
}

.filter-pill.active,
.filter-pill:hover {
  background: var(--gold-soft);
  color: #ffe08f;
}

.bracket-wrap {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 1rem;
  overflow-x: auto;
}

.bracket-column {
  min-width: 240px;
}

.bracket-title {
  font-size: .86rem;
  font-weight: 800;
  margin-bottom: .9rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.bracket-card {
  padding: .8rem;
  margin-bottom: 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.bracket-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.rank-item {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 1rem;
}

.rank-pos {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: var(--gold);
  font-weight: 900;
}

.stat-value {
  color: #fff;
  font-size: .95rem;
  font-weight: 900;
}

.award-box {
  padding: .8rem;
}

.map-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.map-card iframe,
.media-frame iframe {
  width: 100%;
  min-height: 330px;
  border: 0;
  display: block;
}

.media-frame iframe {
  min-height: 240px;
}

.admin-topbar,
.admin-sidebar {
  border-color: var(--border);
}

.site-footer {
  background:
    linear-gradient(135deg, rgba(0,0,0,.98), rgba(45,0,0,.92)),
    radial-gradient(circle at 100% 100%, rgba(255, 35, 35, .18), transparent 32%);
  border-top: 1px solid rgba(255, 35, 35, .28);
}

.footer-brand {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-kicker {
  color: #ff2323;
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: .45rem;
  text-transform: uppercase;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-main p {
  max-width: 680px;
  margin: .65rem 0 0;
  color: rgba(255,255,255,.68);
}

.footer-cta {
  display: grid;
  gap: .55rem;
  justify-items: end;
}

.footer-cta span {
  color: rgba(255,255,255,.66);
  font-size: .86rem;
}

.footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .55rem;
  padding: 1rem 0;
}

.footer-contact-grid div {
  padding: .7rem;
  border: 1px solid rgba(255, 35, 35, .25);
  border-radius: 8px;
  background: rgba(255,255,255,.035);
}

.footer-contact-grid strong,
.footer-contact-grid span {
  display: block;
}

.footer-contact-grid strong {
  color: #fff;
  font-size: .86rem;
}

.footer-contact-grid span {
  color: #ffb1ab;
  font-size: .82rem;
  font-weight: 800;
  margin-top: .25rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.54);
  font-size: .82rem;
}

.footer-links-inline {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-links-inline a {
  color: rgba(255,255,255,.72);
  font-weight: 800;
}

.footer-links-inline a:hover {
  color: #fff;
}

.footer-links-inline .footer-admin-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: rgba(255, 255, 255, .48);
}

.footer-links-inline .footer-admin-link:hover {
  color: #ff7b73;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
}

.link-gold {
  color: #ffe08f;
  font-weight: 800;
}

.link-gold:hover { color: #fff1b8; }

.admin-body {
  min-height: 100vh;
  overflow-x: hidden;
}

.admin-auth-shell {
  min-height: 100vh;
  padding: 1rem;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 35, 35, .18), transparent 28%),
    linear-gradient(135deg, #050505, #170000 58%, #050505);
}

.admin-auth-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
  padding: .75rem 0;
  color: rgba(255,255,255,.58);
  font-size: .9rem;
}

.admin-auth-top a {
  color: #fff;
  font-weight: 800;
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: rgba(255, 35, 35, .45) transparent;
  scrollbar-width: thin;
  background: rgba(5, 11, 20, 0.95);
  border-right: 1px solid var(--border);
  padding: 1rem;
  display: flex;
  flex-direction: column;
}

.admin-brand {
  justify-content: flex-start;
  margin-bottom: 1.5rem;
}

.admin-nav {
  display: grid;
  gap: .5rem;
}

.admin-nav a {
  color: rgba(255,255,255,0.78);
  padding: .8rem .9rem;
  border-radius: 14px;
}

.admin-nav a:hover,
.admin-nav a.active {
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.admin-nav i { margin-right: .6rem; color: var(--gold); }

.admin-sidebar-footer {
  margin-top: auto;
  padding-top: 1rem;
}

.admin-main {
  min-width: 0;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

.admin-main > .container-fluid {
  width: 100%;
  max-width: 100%;
  padding-bottom: 3rem !important;
}

.admin-main .table-responsive {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
}

.admin-sidebar::-webkit-scrollbar {
  width: 6px;
}

.admin-sidebar::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 35, 35, .42);
}

.admin-mobile-menu-button,
.admin-sidebar-close,
.admin-menu-backdrop {
  display: none;
}

.admin-topbar {
  padding: 1rem 1.25rem;
  background: rgba(7, 17, 31, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-user-box {
  display: grid;
  gap: .12rem;
  text-align: right;
  color: rgba(255,255,255,.62);
  font-size: .78rem;
}

.admin-user-box strong {
  color: #fff;
  font-size: .92rem;
}

.admin-user-box small {
  color: rgba(255,255,255,.52);
}

.dashboard-card {
  flex-direction: column;
  align-items: flex-start;
  padding: 1rem;
  min-height: 120px;
}

.dashboard-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255,59,48,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: .5rem;
}

.login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.login-card {
  width: min(100%, 480px);
}

.password-field {
  position: relative;
}

.password-field .form-control {
  padding-right: 7.25rem;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: .55rem;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  height: calc(100% - 1rem);
  padding: 0 .75rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: rgba(0, 0, 0, .34);
  color: rgba(255, 255, 255, .82);
  font-size: .82rem;
  font-weight: 800;
  transform: translateY(-50%);
}

.password-toggle:hover {
  background: rgba(255, 35, 35, .18);
  border-color: rgba(255, 35, 35, .34);
  color: #fff;
}

.login-password-hint {
  color: rgba(255, 255, 255, .62);
  font-weight: 700;
}

.admin-login-note,
.admin-empty {
  display: grid;
  gap: .3rem;
  padding: .85rem;
  border: 1px solid rgba(255, 35, 35, .28);
  border-radius: 10px;
  background: rgba(255, 35, 35, .08);
}

.admin-login-note {
  margin-top: 1rem;
}

.admin-login-note strong,
.admin-empty strong {
  color: #fff;
}

.admin-login-note span,
.admin-empty span {
  color: rgba(255,255,255,.68);
  font-size: .88rem;
}

.admin-empty a {
  color: #fff;
  font-weight: 800;
}

.admin-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
}

.admin-flow-step {
  display: grid;
  gap: .35rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(0,0,0,.18));
}

.admin-flow-step span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 900;
}

.admin-flow-step strong {
  color: #fff;
}

.admin-flow-step small {
  color: rgba(255,255,255,.62);
}

.admin-flow-step a {
  color: #ffb1ab;
  font-weight: 800;
  font-size: .86rem;
}

.admin-flow-step.is-current {
  border-color: rgba(255, 35, 35, .52);
  background: linear-gradient(135deg, rgba(255, 35, 35, .16), rgba(0,0,0,.18));
}

.admin-flow-step.is-done span {
  background: #e50909;
}

.admin-groups-page {
  display: grid;
  gap: 1rem;
}

.admin-groups-intro,
.admin-card-title,
.admin-group-section-head,
.admin-group-card-top,
.admin-group-card-actions,
.admin-group-section-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .85rem;
}

.admin-groups-intro {
  padding: 1rem;
  border: 1px solid rgba(255, 35, 35, .18);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 35, 35, .1), rgba(0, 0, 0, .1)),
    rgba(255, 255, 255, .03);
}

.admin-groups-intro h2,
.admin-card-title h2,
.admin-group-section-head h2 {
  margin: .15rem 0;
  color: #fff;
  font-weight: 900;
}

.admin-groups-intro p,
.admin-group-section-head p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, .62);
}

.admin-category-tabs {
  display: flex;
  gap: .65rem;
  overflow-x: auto;
  padding-bottom: .2rem;
}

.admin-category-tabs a {
  min-width: 170px;
  padding: .75rem .85rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .035);
  color: rgba(255, 255, 255, .72);
}

.admin-category-tabs a.active,
.admin-category-tabs a:hover {
  border-color: rgba(255, 35, 35, .48);
  background: linear-gradient(135deg, rgba(255, 35, 35, .18), rgba(0, 0, 0, .24));
  color: #fff;
}

.admin-category-tabs strong,
.admin-category-tabs span {
  display: block;
}

.admin-category-tabs strong {
  font-weight: 900;
}

.admin-category-tabs span {
  color: rgba(255, 255, 255, .54);
  font-size: .82rem;
}

.admin-group-form-card {
  position: sticky;
  top: 1rem;
}

.admin-stacked-form {
  display: grid;
  gap: 1rem;
}

.admin-form-note {
  display: flex;
  gap: .6rem;
  margin-top: 1rem;
  padding: .75rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  background: rgba(255, 255, 255, .035);
  color: rgba(255, 255, 255, .66);
  font-size: .86rem;
}

.admin-form-note i {
  color: var(--gold);
  margin-top: .15rem;
}

.admin-category-groups {
  display: grid;
  gap: 1rem;
}

.admin-group-section {
  padding: 1rem;
}

.admin-group-section-head {
  align-items: flex-start;
  margin-bottom: .9rem;
}

.admin-group-section-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.admin-count-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: .38rem .65rem;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  background: rgba(0, 0, 0, .24);
  color: rgba(255, 255, 255, .76);
  font-size: .82rem;
  font-weight: 800;
  white-space: nowrap;
}

.admin-group-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}

.admin-group-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  min-height: 142px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 35, 35, .18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(0, 0, 0, .12));
}

.admin-group-letter {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 35, 35, .18);
  background: linear-gradient(180deg, rgba(255, 35, 35, .22), rgba(0, 0, 0, .16));
  color: #ffe08f;
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
}

.admin-group-card-body {
  display: grid;
  gap: .65rem;
  padding: .85rem;
}

.admin-group-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.admin-group-card span {
  color: #ffcf56;
  font-size: .82rem;
  font-weight: 800;
}

.admin-group-card p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: .88rem;
}

.admin-empty.compact {
  padding: 1rem;
}

.form-control,
.form-select {
  background-color: rgba(255,255,255,0.05);
  color: #fff;
  border-color: var(--border);
}

.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.2rem rgba(255,59,48,0.15);
  border-color: rgba(255,59,48,0.55);
  background-color: rgba(255,255,255,0.07);
  color: #fff;
}

@media (max-width: 991.98px) {
  .hero-section { min-height: auto; padding-top: 2rem; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar {
    position: fixed;
    z-index: 1050;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(86vw, 320px);
    height: 100vh;
    height: 100dvh;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: 24px 0 70px rgba(0, 0, 0, .62);
    transform: translateX(-105%);
    transition: transform .24s ease;
  }

  .admin-body.admin-menu-open {
    overflow: hidden;
  }

  .admin-menu-open .admin-sidebar {
    transform: translateX(0);
  }

  .admin-menu-backdrop {
    position: fixed;
    z-index: 1040;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, .68);
    backdrop-filter: blur(3px);
  }

  .admin-menu-open .admin-menu-backdrop {
    display: block;
  }

  .admin-sidebar-close {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 9px;
    background: rgba(255, 255, 255, .05);
    color: #fff;
  }

  .admin-mobile-menu-button {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    min-height: 42px;
    padding: .55rem .75rem;
    border: 1px solid rgba(255, 35, 35, .34);
    border-radius: 9px;
    background: rgba(255, 35, 35, .12);
    color: #fff;
    font-weight: 900;
  }

  .admin-topbar {
    position: sticky;
    z-index: 1020;
    top: 0;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: .85rem;
    background: rgba(5, 11, 20, .96);
  }

  .admin-topbar-title {
    min-width: 0;
  }

  .admin-topbar-title h1 {
    overflow: hidden;
    font-size: 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .admin-user-box {
    display: none;
  }
  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bracket-wrap {
    grid-template-columns: 1fr;
  }
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-flow {
    grid-template-columns: 1fr;
  }
  .admin-group-form-card {
    position: static;
  }
  .admin-group-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .admin-groups-intro,
  .admin-card-title,
  .admin-group-section-head,
  .admin-group-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-group-section-actions,
  .admin-group-card-actions {
    justify-content: flex-start;
    width: 100%;
  }

  .admin-group-section-actions form,
  .admin-group-section-actions .btn,
  .admin-group-card-actions .btn {
    width: 100%;
  }

  .admin-group-card {
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .admin-category-tabs a {
    min-width: 145px;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .navbar-brand strong {
    font-size: .92rem;
  }

  .navbar-brand small {
    font-size: .72rem;
  }

  .section-wrap {
    padding: 1.8rem 0;
  }

  .section-title {
    font-size: 1.28rem;
  }

  .hero-title {
    font-size: 2.15rem;
  }

  .hero-subtitle {
    font-size: .92rem;
  }

  .btn-lg {
    --bs-btn-padding-y: .5rem;
    --bs-btn-padding-x: .8rem;
    --bs-btn-font-size: .92rem;
  }

  .countdown-card span {
    font-size: 1.2rem;
  }

  .team-badge,
  .hero-badge-mark,
  .sponsor-badge,
  .mini-badge {
    width: 40px;
    height: 40px;
    font-size: .8rem;
  }

  .match-teams {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .match-team {
    justify-content: center;
  }
  .match-team:last-child {
    justify-content: center;
    text-align: center;
  }
  .hero-card-top,
  .hero-badge,
  .hero-mini-stats {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Cup matchday homepage */
.site-nav {
  background: #050505;
  border-bottom: 0;
  position: relative;
}

.site-nav::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 35, 35, .58) 18%, rgba(255, 35, 35, .72) 50%, rgba(255, 35, 35, .58) 82%, transparent);
  box-shadow: 0 0 16px rgba(255, 35, 35, .22);
  content: "";
  pointer-events: none;
}

.cup-brand .brand-logo {
  width: 56px;
  height: 56px;
}

.cup-brand strong {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  line-height: .95;
  text-transform: uppercase;
}

.cup-brand small {
  color: #ff2929;
  font-family: 'Oswald', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link {
  color: #f2f2f2;
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding-inline: .55rem;
  text-transform: uppercase;
}

.navbar-dark .navbar-nav .nav-link.active {
  color: #ff2323;
  position: relative;
}

.navbar-dark .navbar-nav .nav-link.active::after {
  position: absolute;
  right: .55rem;
  bottom: -.87rem;
  left: .55rem;
  height: 3px;
  background: #ff2323;
  content: "";
}

.nav-cta {
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: .82rem;
  letter-spacing: .04em;
  padding: .58rem .95rem;
  text-transform: uppercase;
}

.cup-hero {
  position: relative;
  min-height: 500px;
  padding: 2.2rem 0 1rem;
  background:
    linear-gradient(180deg, rgba(0,0,0,.38) 0%, rgba(0,0,0,.78) 52%, rgba(0,0,0,.98) 100%),
    linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(10,0,0,.82) 46%, rgba(0,0,0,.28) 100%),
    radial-gradient(circle at 70% 38%, rgba(255,0,0,.38), transparent 30%),
    url('https://images.unsplash.com/photo-1518091043644-c1d4457512c6?auto=format&fit=crop&w=1800&q=85') center/cover no-repeat;
  border-bottom: 0;
}

.cup-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 35, 35, .46), transparent);
  box-shadow: 0 -8px 28px rgba(255, 35, 35, .12);
  content: "";
  pointer-events: none;
}

.cup-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .62fr);
  gap: 2rem;
  align-items: center;
  max-width: 1280px;
}

.cup-hero-content {
  max-width: 760px;
  padding-top: .25rem;
}

.cup-eyebrow {
  color: #ff2323;
  font-family: 'Oswald', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: .7rem;
  text-transform: uppercase;
}

.cup-hero h1 {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(3.6rem, 6.1vw, 6.35rem);
  font-weight: 700;
  line-height: .95;
  margin: 0;
  text-transform: uppercase;
  text-shadow: 0 4px 12px rgba(0,0,0,.65);
}

.cup-hero h1 span {
  color: #ff1717;
}

.cup-hero h1 em {
  color: #ff1717;
  font-style: italic;
  font-weight: 500;
}

.cup-meta {
  display: grid;
  gap: .35rem;
  margin: .9rem 0;
  color: #f2f2f2;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}

.cup-meta i,
.cup-meta strong {
  color: #ff2323;
}

.tz-identity {
  display: inline-grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: .8rem;
  align-items: center;
  max-width: 640px;
  margin: .15rem 0 1rem;
  padding: .75rem .85rem;
  border: 1px solid rgba(255, 35, 35, .28);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 35, 35, .16), rgba(0,0,0,.45));
}

.tz-code {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: 8px;
  background: #e50909;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: .08em;
  box-shadow: 0 12px 28px rgba(255, 0, 0, .28);
}

.tz-identity strong,
.tz-identity span {
  display: block;
}

.tz-identity strong {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.tz-identity span {
  color: rgba(255,255,255,.72);
  font-size: .84rem;
}

.cup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 0;
}

.hero-poster-panel {
  position: relative;
  padding: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(255, 35, 35, .28);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(0,0,0,.86), rgba(90,0,0,.58)),
    radial-gradient(circle at 100% 100%, rgba(255,35,35,.28), transparent 36%);
  box-shadow: 0 28px 90px rgba(0,0,0,.42);
}

.hero-poster-panel::before {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 210px;
  height: 210px;
  border: 28px solid rgba(255,255,255,.08);
  border-radius: 999px;
  content: "";
}

.hero-poster-tag {
  display: inline-flex;
  padding: .32rem .55rem;
  border-radius: 5px;
  background: #e50909;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-poster-panel > strong {
  position: relative;
  z-index: 1;
  display: block;
  margin: .7rem 0;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.7rem, 4vw, 4.6rem);
  line-height: .95;
}

.hero-prize-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .45rem;
}

.hero-prize-list span {
  display: flex;
  justify-content: space-between;
  padding: .48rem .65rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  background: rgba(0,0,0,.35);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
}

.hero-prize-list b {
  color: #ff2323;
}

.hero-poster-note {
  position: relative;
  z-index: 1;
  display: flex;
  gap: .65rem;
  margin: .9rem 0;
  padding: .72rem;
  border-left: 3px solid #ff2323;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.75);
  font-size: .86rem;
}

.hero-poster-note i {
  color: #ff2323;
  margin-top: .15rem;
}

.cup-actions .btn {
  min-width: 150px;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  text-transform: uppercase;
}

.cup-optional-note {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  max-width: none;
  min-height: 86px;
  padding: .7rem .9rem;
  border: 1px solid rgba(255, 35, 35, .26);
  border-radius: 8px;
  background: rgba(0, 0, 0, .38);
  color: rgba(255,255,255,.78);
  font-size: .88rem;
}

.cup-optional-note i {
  color: var(--red);
}

.tz-local-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  margin-bottom: .75rem;
}

.tz-local-card {
  display: flex;
  gap: .75rem;
  align-items: center;
  padding: .85rem;
  border: 1px solid rgba(255, 35, 35, .22);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(18,0,0,.95), rgba(55,0,0,.72));
}

.tz-local-card i {
  color: #ff2323;
  font-size: 1.25rem;
}

.tz-local-card strong,
.tz-local-card span {
  display: block;
}

.tz-local-card strong {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.tz-local-card span {
  color: rgba(255,255,255,.68);
  font-size: .82rem;
}

.poster-prize-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr 1fr;
  gap: .75rem;
  margin: .75rem 0;
}

.poster-prize-card {
  position: relative;
  min-height: 122px;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 35, 35, .24);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(0,0,0,.92), rgba(65,0,0,.72)),
    radial-gradient(circle at 100% 100%, rgba(255, 35, 35, .34), transparent 36%);
}

.poster-prize-card::after {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 112px;
  height: 112px;
  background: rgba(255, 35, 35, .2);
  border-radius: 999px;
  content: "";
}

.poster-prize-card span,
.poster-prize-card strong,
.poster-prize-card small {
  position: relative;
  z-index: 1;
  display: block;
}

.poster-prize-card span {
  color: rgba(255,255,255,.68);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.poster-prize-card strong {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.75rem;
  line-height: 1.05;
  margin: .25rem 0;
  text-transform: uppercase;
}

.poster-prize-card.is-main strong {
  color: #ff2323;
  font-size: 2.15rem;
}

.poster-prize-card small {
  color: rgba(255,255,255,.72);
}

.cup-dashboard {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(420px, 1.3fr);
  gap: .8rem;
  max-width: 1280px;
  margin-top: .9rem;
}

.cup-countdown {
  margin: 0;
}

.cup-countdown .countdown-card {
  background: rgba(0,0,0,.55);
  border-color: rgba(255, 35, 35, .55);
  border-radius: 6px;
}

.cup-countdown .countdown-card span {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
}

.cup-countdown .countdown-card small {
  color: #f2f2f2;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.cup-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
}

.cup-stat {
  display: grid;
  grid-template-columns: 42px auto;
  column-gap: .65rem;
  align-items: center;
  min-height: 86px;
  padding: .8rem;
  background: linear-gradient(135deg, rgba(90,0,0,.82), rgba(14,0,0,.82));
  border: 1px solid rgba(255, 35, 35, .55);
  border-radius: 7px;
}

.cup-stat i {
  grid-row: span 3;
  color: #ff2323;
  font-size: 1.7rem;
}

.cup-stat strong {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.cup-stat span {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
}

.cup-stat small {
  color: rgba(255,255,255,.68);
  font-size: .75rem;
}

.cup-section {
  padding: 1rem 0 2rem;
  background:
    linear-gradient(180deg, #140000 0%, #070707 38%, #100000 100%);
}

.cup-grid-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr .75fr;
  gap: .75rem;
}

.cup-grid-bottom {
  display: grid;
  grid-template-columns: .9fr 1fr .85fr;
  gap: .75rem;
  margin-top: .75rem;
}

.cup-panel {
  background: linear-gradient(135deg, rgba(16,16,16,.96), rgba(45,0,0,.88));
  border: 1px solid rgba(255, 35, 35, .35);
  border-radius: 7px;
  overflow: hidden;
}

.cup-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: .75rem .85rem;
  border-bottom: 1px solid rgba(255, 35, 35, .25);
}

.cup-panel-head h2 {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  letter-spacing: .04em;
  margin: 0;
  text-transform: uppercase;
}

.cup-panel-head a {
  color: #ff2929;
  font-size: .74rem;
  font-weight: 800;
  white-space: nowrap;
}

.cup-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  padding: .65rem .65rem 0;
}

.cup-tabs span {
  padding: .5rem .25rem;
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.72);
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  text-align: center;
  text-transform: uppercase;
}

.cup-tabs .active {
  background: #e50909;
  color: #fff;
  border-radius: 5px;
}

.cup-table {
  width: 100%;
  margin: .65rem 0 0;
  color: #fff;
  font-size: .82rem;
}

.cup-table th,
.cup-table td {
  padding: .55rem .7rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  vertical-align: middle;
}

.cup-table th {
  color: rgba(255,255,255,.72);
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  text-transform: uppercase;
}

.cup-table td:first-child {
  width: 34px;
}

.cup-table td:nth-child(2) {
  display: flex;
  align-items: center;
  gap: .5rem;
  min-width: 150px;
}

.cup-note {
  color: rgba(255,255,255,.68);
  font-size: .75rem;
  margin: .75rem .85rem .9rem;
}

.cup-match-list {
  padding: .4rem .85rem 0;
}

.cup-match-row {
  display: grid;
  grid-template-columns: 58px 1fr 54px 1fr 70px;
  gap: .5rem;
  align-items: center;
  padding: .62rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff;
  font-size: .82rem;
}

.cup-match-time {
  color: rgba(255,255,255,.74);
  font-size: .68rem;
}

.cup-match-time strong {
  display: block;
  color: #fff;
  font-size: .82rem;
}

.cup-match-team {
  display: flex;
  align-items: center;
  gap: .45rem;
}

.cup-match-score {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  text-align: center;
}

.cup-match-score span {
  color: #ff2323;
  padding: 0 .15rem;
}

.cup-label {
  justify-self: end;
  padding: .28rem .45rem;
  background: #e50909;
  border-radius: 4px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: .68rem;
  text-transform: uppercase;
}

.cup-full-btn {
  display: block;
  margin: .8rem .85rem .85rem;
  padding: .65rem;
  background: #e50909;
  border-radius: 5px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  text-align: center;
  text-transform: uppercase;
}

.cup-scorers {
  padding: .5rem .85rem .8rem;
}

.cup-scorer {
  display: grid;
  grid-template-columns: 22px 34px 1fr 28px;
  gap: .55rem;
  align-items: center;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff;
}

.scorer-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: #521010;
  border: 1px solid #ff2929;
  border-radius: 50%;
  font-weight: 800;
}

.cup-scorer strong,
.cup-scorer small {
  display: block;
}

.cup-scorer small {
  color: rgba(255,255,255,.62);
  font-size: .72rem;
}

.cup-scorer b {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
}

.cup-knockout {
  margin-top: .75rem;
}

.cup-bracket {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr .9fr;
  gap: 1.4rem;
  padding: .9rem 1rem 1.1rem;
  min-height: 210px;
}

.cup-bracket h3 {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: .82rem;
  text-align: center;
  text-transform: uppercase;
}

.cup-bracket p {
  margin: .28rem 0;
  padding: .38rem .55rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,35,35,.5);
  border-radius: 4px;
  color: rgba(255,255,255,.82);
  font-size: .78rem;
}

.final-trophy {
  text-align: center;
}

.final-trophy i {
  color: #ff2323;
  font-size: 3.3rem;
  margin: .35rem 0 .65rem;
}

.cup-news-list,
.cup-sponsor-grid,
.cup-gallery {
  padding: .75rem;
}

.cup-news-list div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: .65rem;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.cup-news-list img {
  width: 86px;
  height: 54px;
  object-fit: cover;
  border-radius: 4px;
}

.cup-news-list strong,
.cup-news-list small {
  display: block;
}

.cup-news-list strong {
  color: #fff;
  font-size: .82rem;
}

.cup-news-list small {
  color: rgba(255,255,255,.58);
  font-size: .7rem;
}

.cup-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .45rem;
}

.cup-gallery img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  border: 1px solid rgba(255,35,35,.38);
  border-radius: 4px;
}

.cup-sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .45rem;
}

.cup-sponsor-grid div {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: .5rem;
  border: 1px solid rgba(255,35,35,.38);
  border-radius: 5px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  text-align: center;
}

.cup-empty,
.empty-state-card {
  border: 1px solid rgba(255, 35, 35, .34);
  background: linear-gradient(135deg, rgba(255, 35, 35, .12), rgba(0, 0, 0, .34));
}

.cup-empty {
  display: grid;
  gap: .35rem;
  min-height: 132px;
  align-content: center;
  padding: 1rem;
  border-radius: 8px;
  color: rgba(255,255,255,.72);
}

.cup-empty strong {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.cup-empty span {
  font-size: .86rem;
}

@media (max-width: 1199.98px) {
  .cup-grid-top,
  .cup-grid-bottom,
  .cup-dashboard,
  .poster-prize-grid {
    grid-template-columns: 1fr;
  }

  .cup-bracket {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .cup-hero-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cup-dashboard {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .cup-brand .brand-logo {
    width: 44px;
    height: 44px;
  }

  .cup-brand strong {
    font-size: 1rem;
  }

  .cup-brand small {
    font-size: .72rem;
  }

  .cup-hero {
    min-height: auto;
    padding: 1.1rem 0 .8rem;
  }

  .cup-hero h1 {
    font-size: 2.65rem;
  }

  .hero-poster-panel {
    display: none;
  }

  .tz-identity {
    grid-template-columns: 48px 1fr;
    padding: .65rem;
  }

  .tz-code {
    min-height: 44px;
    font-size: 1rem;
  }

  .cup-optional-note {
    min-height: auto;
    margin-bottom: 0;
  }

  .cup-stat {
    min-height: 72px;
  }

  .cup-stat strong {
    font-size: 1.45rem;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }

  .footer-cta {
    justify-items: stretch;
  }

  .footer-contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-links-inline {
    gap: .6rem;
  }

  .cup-meta {
    font-size: .86rem;
  }

  .cup-stat-row,
  .cup-bracket,
  .cup-grid-top,
  .cup-grid-bottom,
  .tz-local-strip {
    grid-template-columns: 1fr;
  }

  .cup-match-row {
    grid-template-columns: 52px 1fr 48px;
  }

  .cup-match-row .cup-match-team:nth-of-type(2),
  .cup-match-row .cup-label {
    display: none;
  }

  .cup-tabs {
    grid-template-columns: repeat(3, 1fr);
  }
}
