:root {
  --bg: #061722;
  --bg-soft: #0d2232;
  --panel: #0a1d2b;
  --panel-strong: #071922;
  --line: rgba(137, 169, 194, 0.18);
  --white: #edf7ff;
  --muted: #b0c5d6;
  --primary: #2bc8f2;
  --primary-strong: #0ca9d8;
  --secondary: #c8ef59;
  --secondary-deep: #a3d937;
  --blue: #0a2452;
  --navy: #071f39;
  --shadow: 0 22px 50px rgba(2, 9, 18, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(43, 200, 242, 0.15), transparent 12%),
    linear-gradient(180deg, #061722 0%, #091f2f 100%);
  color: var(--white);
}

button,
a {
  font: inherit;
}

button {
  border: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  width: min(1280px, calc(100% - 28px));
  margin: 24px auto 64px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px;
  background: rgba(8, 20, 30, 0.8);
  border: 1px solid var(--line);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  position: sticky;
  top: 18px;
  z-index: 20;
  box-shadow: var(--shadow);
}

.brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 138px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(15, 214, 255, 0.18));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-subtitle {
  color: var(--primary);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.main-nav a:hover {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-link,
.cta,
.mini-button,
.live-link {
  border-radius: 999px;
  padding: 0.9rem 1.3rem;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.nav-link:hover,
.cta:hover,
.mini-button:hover,
.live-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.nav-link.ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1px solid var(--line);
}

.nav-link.primary,
.cta.primary {
  background: linear-gradient(135deg, var(--primary), #8feaff);
  color: #021a2a;
  box-shadow: 0 12px 28px rgba(43, 200, 242, 0.28);
}

.cta.secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.hero {
  position: relative;
  margin-top: 30px;
  min-height: 610px;
  padding: 52px 42px 42px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 28px;
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(4, 9, 15, 0.86), rgba(4, 9, 15, 0.34)),
    url("1.jpg") center/cover no-repeat;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 14, 22, 0.9) 0%, rgba(5, 14, 22, 0.52) 42%, rgba(5, 14, 22, 0.18) 100%);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  padding: 0;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  border: 1px solid rgba(255, 94, 122, 0.4);
  background: rgba(255, 94, 122, 0.12);
  color: #ffb0c0;
}

.eyebrow-text,
.section-kicker,
.label,
.tiny-tag {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  letter-spacing: -0.08em;
  line-height: 0.96;
}

.hero p {
  margin: 20px 0 26px;
  max-width: 540px;
  color: #dfeaf7;
  line-height: 1.75;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-meta div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-meta strong {
  font-size: 0.98rem;
}

.hero-panel {
  width: min(100%, 360px);
  justify-self: end;
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.mini-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.dot-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #63e391;
  box-shadow: 0 0 18px rgba(99, 227, 145, 0.9);
}

.panel-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(4, 16, 25, 0.72);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 20px 18px;
}

.card-primary {
  margin-bottom: 18px;
}

.team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
}

.team-row + .team-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 8px;
  padding-top: 16px;
}

.team {
  display: flex;
  align-items: center;
  gap: 12px;
}

.team strong {
  display: block;
  font-size: 1.08rem;
}

.team small {
  color: var(--muted);
}

.team-shield {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
}

.team-shield.red {
  background: linear-gradient(135deg, #ff6a88, #d63667);
}

.team-shield.blue {
  background: linear-gradient(135deg, #4eaaf8, #1e63cf);
}

.score {
  font-size: 2rem;
  font-weight: 800;
}

.card-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-stat strong {
  font-size: 1.08rem;
}

.card-stat small {
  color: var(--muted);
}

.mini-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.strip-item {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 14px;
  padding: 14px 10px;
  font-weight: 700;
  text-align: center;
}

.strip-item.active {
  background: linear-gradient(135deg, rgba(43, 200, 242, 0.18), rgba(163, 217, 55, 0.12));
  border-color: rgba(43, 200, 242, 0.34);
  color: var(--white);
}

.schedule-panel,
.results-panel,
.news-panel {
  margin-top: 30px;
  background: rgba(8, 21, 31, 0.92);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px 20px;
  box-shadow: var(--shadow);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.section-header.compact {
  margin-top: 0;
}

.section-header h2 {
  margin: 10px 0 0;
  font-size: clamp(1.9rem, 2vw, 2.6rem);
  letter-spacing: -0.06em;
}

.mini-button {
  background: rgba(43, 200, 242, 0.12);
  color: var(--primary);
  border: 1px solid rgba(43, 200, 242, 0.3);
  padding: 0.7rem 1rem;
}

.table-wrap {
  margin-top: 24px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

thead th {
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}

tbody tr:hover {
  background: rgba(43, 200, 242, 0.04);
}

td {
  color: var(--white);
  font-weight: 500;
}

.matchup-cell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.live-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.8rem;
  background: linear-gradient(135deg, #ff5e7d, #ff9a62);
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(255, 94, 125, 0.25);
  white-space: nowrap;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.result-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 18px 16px;
}

.result-tag {
  color: var(--secondary-deep);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.result-scoreline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.result-scoreline strong {
  font-size: 1.4rem;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}

.news-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
  overflow: hidden;
}

.news-image {
  height: 210px;
  background-size: cover;
  background-position: center;
}

.image-one {
  background-image: url("1.jpg");
}

.image-two {
  background-image: url("3.jpg");
}

.image-three {
  background-image: url("4.jpg");
}

.news-copy {
  padding: 18px 18px 20px;
}

.news-copy h3 {
  margin: 12px 0 0;
  line-height: 1.35;
  letter-spacing: -0.04em;
  font-size: 1.45rem;
}

.cta-band {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 26px;
  background: linear-gradient(135deg, rgba(43, 200, 242, 0.12), rgba(163, 217, 55, 0.14));
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.cta-copy h2 {
  margin: 10px 0 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  letter-spacing: -0.06em;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .mini-strip,
  .news-grid,
  .results-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 16px, 1280px);
  }

  .topbar {
    flex-wrap: wrap;
    justify-content: center;
    padding: 16px;
  }

  .main-nav {
    justify-content: center;
    gap: 12px 18px;
  }

  .header-actions,
  .hero-actions,
  .cta-buttons {
    width: 100%;
  }

  .header-actions > *,
  .hero-actions > *,
  .cta-buttons > * {
    flex: 1 1 100%;
  }

  .hero {
    padding: 12px;
  }

  .hero-content {
    padding: 10px 8px 20px 8px;
  }

  .mini-strip,
  .news-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
