:root {
  --bg: #050505;
  --bg-2: #0a0a0a;
  --surface: rgba(255, 255, 255, 0.055);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --text: #f7f7f7;
  --muted: #a8a8a8;
  --muted-2: #727272;
  --line: rgba(255, 255, 255, 0.12);
  --red: #d71920;
  --red-light: #ff4048;
  --red-dark: #7c1014;
  --white: #ffffff;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 14%, rgba(215, 25, 32, 0.24), transparent 25rem),
    radial-gradient(circle at 92% 8%, rgba(255, 255, 255, 0.08), transparent 24rem),
    radial-gradient(circle at 78% 64%, rgba(215, 25, 32, 0.14), transparent 28rem),
    linear-gradient(180deg, #030303 0%, #090909 42%, #050505 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(18px);
}

.header-content {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-symbol {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  background:
    radial-gradient(circle, #050505 45%, var(--red) 47%, var(--red) 59%, #050505 61%);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: -0.05em;
  box-shadow: 0 14px 32px rgba(215, 25, 32, 0.18);
}

.brand-text strong {
  display: block;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.brand-text span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.84rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

.main-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  transition: width 0.2s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  width: 100%;
}

.notification-button,
.menu-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--white);
  cursor: pointer;
}

.notification-button {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 17px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.notification-button:hover {
  transform: translateY(-2px);
  border-color: rgba(215, 25, 32, 0.55);
}

.notification-count {
  position: absolute;
  top: -8px;
  right: -8px;
  min-width: 23px;
  height: 23px;
  padding: 0 7px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  place-items: center;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 3px auto;
  background: var(--white);
  border-radius: 999px;
}

.hero-section {
  position: relative;
  padding: 92px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(330px, 0.84fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--red-light);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
}

.hero-content h1 {
  max-width: 780px;
  margin-top: 18px;
  font-size: clamp(2.7rem, 6.3vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.hero-content p {
  max-width: 660px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  min-height: 50px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 18px 34px rgba(215, 25, 32, 0.28);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.hero-mini-stats {
  max-width: 700px;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-mini-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.035);
}

.hero-mini-stats strong {
  display: block;
  font-size: 1.38rem;
}

.hero-mini-stats span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.84rem;
}

.match-card,
.status-card,
.panel,
.news-card,
.timeline-grid article,
.notification-box {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
}

.match-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
}

.match-card::before {
  content: "";
  position: absolute;
  right: -88px;
  bottom: -105px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(215, 25, 32, 0.28);
  filter: blur(6px);
}

.match-card-header {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.match-card-header span,
.status-card span,
.table-cards span,
.squad-info span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.match-card-header strong {
  display: block;
  margin-top: 6px;
  color: var(--red-light);
}

.live-pill {
  padding: 8px 11px;
  border-radius: 999px;
  color: #ffb9bd;
  background: rgba(215, 25, 32, 0.16);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.match-teams {
  position: relative;
  z-index: 1;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 16px;
}

.match-team {
  min-height: 146px;
  padding: 18px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.32);
}

.team-emblem {
  width: 70px;
  height: 70px;
  margin-bottom: 13px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.team-home {
  border: 2px solid var(--white);
  background: #050505;
  color: var(--white);
}

.team-away {
  background: var(--white);
  color: #050505;
}

.match-versus {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 950;
}

.match-details {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  border-top: 1px solid var(--line);
}

.match-details span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.match-details strong {
  display: block;
  margin-top: 6px;
  font-size: 0.96rem;
}

.status-grid {
  padding: 22px 0 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.status-card {
  padding: 24px;
}

.status-card strong {
  display: block;
  margin-top: 10px;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.status-card p {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.55;
}

.status-highlight {
  border-color: rgba(215, 25, 32, 0.42);
}

.section-block {
  padding: 34px 0;
}

.section-heading,
.panel-header {
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.section-heading h2,
.panel h2,
.timeline-section h2 {
  margin-top: 11px;
  font-size: clamp(1.9rem, 4vw, 3.15rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.news-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.filter-button {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  cursor: pointer;
  transition: 0.2s ease;
}

.filter-button:hover,
.filter-button.active {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.featured-news {
  margin-bottom: 18px;
}

.featured-card {
  min-height: 340px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 22px;
  border: 1px solid rgba(215, 25, 32, 0.38);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.16), rgba(255,255,255,0.04)),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.featured-card-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.news-tag {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(215, 25, 32, 0.18);
  color: #ff777d;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.featured-card h3 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(1.9rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.featured-card p {
  max-width: 700px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.75;
}

.featured-visual {
  position: relative;
  min-height: 260px;
  border-radius: 26px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.16), transparent 12rem),
    radial-gradient(circle at 70% 70%, rgba(215,25,32,0.5), transparent 12rem),
    #090909;
  overflow: hidden;
}

.featured-visual::before {
  content: "CENTRAL SCCP";
  position: absolute;
  left: 22px;
  bottom: 20px;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 0.8;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.08);
  font-weight: 950;
  letter-spacing: -0.08em;
}

.featured-visual::after {
  content: "";
  position: absolute;
  width: 145px;
  height: 145px;
  right: 28px;
  top: 28px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.72);
  box-shadow: 0 0 0 16px rgba(215,25,32,0.18);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.news-card {
  min-height: 310px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  border-color: rgba(215, 25, 32, 0.62);
}

.news-image {
  min-height: 122px;
  margin: -2px -2px 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 24% 28%, rgba(255,255,255,0.16), transparent 6rem),
    radial-gradient(circle at 70% 70%, rgba(215,25,32,0.44), transparent 7rem),
    #0a0a0a;
  position: relative;
  overflow: hidden;
}

.news-image::after {
  content: attr(data-label);
  position: absolute;
  left: 16px;
  bottom: 14px;
  color: rgba(255,255,255,0.16);
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.news-card h3 {
  margin-top: 15px;
  font-size: 1.17rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.news-card p {
  margin-top: 11px;
  color: var(--muted);
  line-height: 1.62;
}

.news-meta {
  margin-top: auto;
  padding-top: 17px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.center-action {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.dashboard-grid {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.panel {
  padding: 28px;
}

.table-cards {
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
}

.table-cards div,
.squad-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.26);
}

.table-cards strong {
  display: block;
  margin-top: 7px;
  font-size: 1.3rem;
}

.muted {
  color: var(--muted);
  line-height: 1.7;
}

.squad-list {
  display: grid;
  gap: 12px;
}

.squad-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.squad-info strong {
  display: block;
  margin-top: 6px;
  font-size: 1.08rem;
}

.squad-number {
  flex: 0 0 auto;
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  font-weight: 950;
}

.timeline-section {
  padding: 36px 0 54px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.timeline-grid article {
  padding: 22px;
}

.timeline-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(215, 25, 32, 0.16);
  color: var(--red-light);
  font-weight: 950;
}

.timeline-grid strong {
  display: block;
  font-size: 1.08rem;
}

.timeline-grid p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.notification-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(10px);
}

.notification-modal.active {
  display: grid;
}

.notification-box {
  position: relative;
  width: min(520px, 100%);
  padding: 30px;
}

.notification-box h2 {
  margin-top: 12px;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.notification-box p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-content strong {
  display: block;
  color: var(--white);
  margin-bottom: 6px;
}

@media (max-width: 1000px) {
  .hero-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

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

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

  .featured-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-content {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: grid;
    margin-left: auto;
  }

  .notification-button {
    order: 3;
  }

  .main-nav {
    order: 4;
    width: 100%;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
  }

  .main-nav.active {
    display: grid;
    gap: 12px;
  }

  .hero-section {
    padding-top: 56px;
  }

  .hero-mini-stats,
  .news-grid,
  .status-grid,
  .timeline-grid,
  .table-cards {
    grid-template-columns: 1fr;
  }

  .section-heading {
    flex-direction: column;
  }

  .news-controls {
    justify-content: flex-start;
  }

  .footer-content {
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero-content h1 {
    font-size: clamp(2.25rem, 15vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .match-teams,
  .match-details {
    grid-template-columns: 1fr;
  }

  .match-versus {
    min-height: 22px;
  }
}
.news-link-card {
  color: inherit;
  text-decoration: none;
}

.article-page {
  min-height: 70vh;
  padding: 64px 0;
}

.article-container {
  max-width: 980px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--muted);
  font-weight: 800;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: var(--white);
}

.article-card {
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
  box-shadow: var(--shadow);
}

.article-hero-visual {
  min-height: 310px;
  margin-bottom: 30px;
  border: 1px solid rgba(215, 25, 32, 0.38);
  border-radius: 28px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255,255,255,0.16), transparent 10rem),
    radial-gradient(circle at 74% 66%, rgba(215,25,32,0.52), transparent 14rem),
    #090909;
  position: relative;
  overflow: hidden;
}

.article-hero-visual::before {
  content: "CENTRAL SCCP";
  position: absolute;
  left: 26px;
  bottom: 24px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.78;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.article-hero-visual::after {
  content: attr(data-label);
  position: absolute;
  right: 24px;
  top: 24px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(215, 25, 32, 0.22);
  color: #ffb9bd;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.article-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--muted);
}

.article-card h1 {
  max-width: 850px;
  font-size: clamp(2.3rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.article-excerpt {
  max-width: 780px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}

.article-byline {
  margin-top: 24px;
  padding: 18px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.article-body {
  margin-top: 30px;
  max-width: 780px;
}

.article-body p {
  margin-bottom: 20px;
  color: #dedede;
  font-size: 1.08rem;
  line-height: 1.85;
}

.article-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

@media (max-width: 760px) {
  .single-page-nav {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    order: 3;
    gap: 14px;
  }

  .article-page {
    padding: 42px 0;
  }

  .article-hero-visual {
    min-height: 220px;
  }

  .article-meta-top {
    align-items: flex-start;
    flex-direction: column;
  }
}
.watch-box {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(215, 25, 32, 0.38);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.18), rgba(255, 255, 255, 0.045));
}

.watch-box span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.watch-box strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 1.35rem;
  letter-spacing: -0.04em;
}

.watch-box p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}
.section-description {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.7;
}

.games-list-section {
  padding-top: 44px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.game-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  box-shadow: var(--shadow);
}

.game-card-highlight {
  border-color: rgba(215, 25, 32, 0.55);
}

.game-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.game-card-top span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
}

.game-card-top strong {
  display: block;
  margin-top: 5px;
  color: var(--red-light);
  font-size: 1.05rem;
}

.game-card-top small {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(215, 25, 32, 0.16);
  color: #ffb9bd;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.game-card-match {
  min-height: 88px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.28);
}

.game-card-match strong {
  font-size: 1rem;
}

.game-card-match span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 950;
  text-transform: uppercase;
}

.game-card-info {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.game-card-info div,
.game-watch {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
}

.game-card-info span,
.game-watch span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.game-card-info strong,
.game-watch strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 0.98rem;
}

.game-watch {
  margin-top: 12px;
  border-color: rgba(215, 25, 32, 0.36);
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.14), rgba(255,255,255,0.035));
}

.game-watch strong {
  font-size: 1.22rem;
  letter-spacing: -0.04em;
}

.game-watch p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

@media (max-width: 1000px) {
  .games-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .game-card-match,
  .game-card-info {
    grid-template-columns: 1fr;
  }
}
.rss-status {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.rss-status span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.82rem;
}

.rss-status span:first-child {
  border-color: rgba(215, 25, 32, 0.34);
  color: #ffb9bd;
  background: rgba(215, 25, 32, 0.08);
}
.games-status {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.games-status span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.82rem;
}

.games-status span:first-child {
  border-color: rgba(215, 25, 32, 0.34);
  color: #ffb9bd;
  background: rgba(215, 25, 32, 0.08);
}
.data-status {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.data-status span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.82rem;
}

.data-status span:first-child {
  border-color: rgba(215, 25, 32, 0.34);
  color: #ffb9bd;
  background: rgba(215, 25, 32, 0.08);
}

.standings-summary {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 16px;
  margin: 24px 0;
}

.main-position-card {
  padding: 22px;
  border: 1px solid rgba(215, 25, 32, 0.38);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.14), rgba(255,255,255,0.04));
}

.main-position-card span,
.standings-stats span,
.mini-standings-header,
.squad-row span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.main-position-card strong {
  display: block;
  margin-top: 10px;
  font-size: 2.6rem;
  letter-spacing: -0.06em;
}

.main-position-card p {
  margin-top: 8px;
  color: var(--muted);
}

.standings-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.standings-stats div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.24);
}

.standings-stats strong {
  display: block;
  margin-top: 7px;
  font-size: 1.35rem;
}

.mini-standings {
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.22);
}

.mini-standings-header,
.mini-standings-row {
  display: grid;
  grid-template-columns: 1fr 64px 64px 64px;
  gap: 10px;
  align-items: center;
  padding: 13px 16px;
}

.mini-standings-header {
  background: rgba(255,255,255,0.04);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mini-standings-row {
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.mini-standings-row span:first-child {
  color: var(--white);
  font-weight: 800;
}

.mini-standings-row.is-highlight {
  background: rgba(215, 25, 32, 0.10);
}

.squad-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 24px 0 18px;
}

.squad-group-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.22);
}

.squad-group-card h3 {
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--red-light);
}

.squad-group-list {
  display: grid;
  gap: 10px;
}

.squad-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.035);
}

.squad-row strong {
  display: block;
  margin-top: 5px;
  font-size: 1rem;
}

@media (max-width: 760px) {
  .standings-summary,
  .standings-stats {
    grid-template-columns: 1fr;
  }

  .mini-standings-header,
  .mini-standings-row {
    grid-template-columns: 1fr 48px 48px 48px;
    font-size: 0.86rem;
  }
}
