:root {
  --black: #0a0a0a;
  --black-soft: #141414;
  --white: #ffffff;
  --gold: #c9a646;
  --gold-light: #e4c878;
  --gray-100: #f4f4f5;
  --gray-200: #e8e8ea;
  --gray-300: #d4d4d8;
  --gray-700: #3f3f46;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
}

.page-home,
.page-inner {
  background: var(--white);
}

/* —— Εσωτερικές σελίδες —— */
.page-hero {
  position: relative;
  background: linear-gradient(145deg, #1a1a1a 0%, #000 70%);
  color: var(--white);
  padding: 48px 0;
  border-bottom: 3px solid var(--gold);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(201, 166, 70, 0.1), transparent);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
}

.page-hero h2 {
  margin: 0 0 10px;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-hero p {
  margin: 0;
  max-width: 560px;
  color: #c0c0c0;
  font-size: 1.02rem;
}

.panel {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 24px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.panel__head h3 {
  margin: 0;
  font-size: 1.15rem;
}

.table-wrap {
  overflow-x: auto;
}

.table--pro {
  margin: 0;
}

.table--pro th {
  background: var(--black);
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
}

.table--pro td {
  padding: 14px 16px;
  vertical-align: middle;
}

.table--pro tbody tr:hover {
  background: #faf8f3;
}

.table--pro .row-highlight {
  background: rgba(201, 166, 70, 0.08);
}

.table--pro .row-highlight:hover {
  background: rgba(201, 166, 70, 0.14);
}

.fixture-round {
  display: block;
  margin-top: 4px;
  color: #71717a;
  font-size: 0.82rem;
  font-weight: 600;
}

.table-num {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  height: 32px;
  padding: 0 8px;
  border-radius: 8px;
  background: var(--black);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}

.pos-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 0.78rem;
  font-weight: 600;
}

.pos-tag--gk {
  background: #fef3c7;
  color: #92400e;
}

.pos-tag--def {
  background: #dbeafe;
  color: #1e40af;
}

.pos-tag--mid {
  background: #dcfce7;
  color: #166534;
}

.pos-tag--fwd {
  background: #fee2e2;
  color: #991b1b;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.info-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.info-card--dark {
  background: linear-gradient(145deg, var(--black-soft), var(--black));
  color: var(--white);
  border-color: #333;
}

.info-card--dark:hover {
  border-color: var(--gold);
}

.info-card--dark p {
  color: #c0c0c0;
  margin: 0 0 18px;
}

.info-card--dark .cta {
  margin-top: 0;
}

.info-card__icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 14px;
}

.info-card h4 {
  margin: 0 0 16px;
  font-size: 1.15rem;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.info-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
  font-size: 0.95rem;
}

.info-card--dark .info-list li {
  border-bottom-color: #333;
  color: #d0d0d0;
}

.info-list li:last-child {
  border-bottom: 0;
}

.info-list a {
  color: var(--black);
  font-weight: 600;
}

.info-list a:hover {
  color: var(--gold);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: block;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  transition: transform 0.15s, opacity 0.15s;
}

.social-link:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.social-link--fb {
  background: #1877f2;
}

.social-link--ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.social-link--tt {
  background: #010101;
  border: 1px solid #333;
}

.social-hint {
  margin: 14px 0 0;
  font-size: 0.78rem;
  text-align: center;
}

.footer__contact a {
  color: #d0d0d0;
}

.footer__contact a:hover {
  color: var(--gold);
}

.text-muted {
  color: var(--gray-700);
  font-size: 0.9rem;
}

.roster-hint {
  margin-top: 24px;
  text-align: center;
  font-size: 0.88rem;
}

.roster-hint code {
  background: var(--gray-200);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85em;
}

/* —— Ρόστερ: κάρτες παικτών —— */
.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.player-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.player-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.player-card__photo-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, #1a1a1a, #0a0a0a);
  display: grid;
  place-items: center;
}

.player-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.player-card__placeholder,
.player-profile__placeholder {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.5;
}

.player-card__number {
  position: absolute;
  top: 10px;
  left: 10px;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 8px;
}

.player-card__body {
  padding: 16px;
}

.player-card__body h4 {
  margin: 0 0 8px;
  font-size: 0.98rem;
  line-height: 1.3;
}

.player-card__body .pos-tag {
  margin-bottom: 6px;
}

.player-card__meta {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--gray-700);
}

/* —— Σελίδα παίκτη —— */
.back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 600;
  color: var(--gray-700);
}

.back-link:hover {
  color: var(--gold);
}

.player-profile {
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 40px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.player-profile__photo-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(160deg, #1a1a1a, #0a0a0a);
  border: 3px solid var(--gold);
  display: grid;
  place-items: center;
}

.player-profile__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.player-profile__number {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(201, 166, 70, 0.35);
  line-height: 1;
}

.player-profile__info h2 {
  margin: 12px 0 20px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}

.player-profile__stats {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.player-profile__stats li {
  background: var(--gray-100);
  padding: 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--gray-700);
}

.player-profile__stats strong {
  display: block;
  color: var(--black);
  margin-bottom: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.player-profile__info h3 {
  margin: 0 0 14px;
  font-size: 1.1rem;
  color: var(--black);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  display: inline-block;
}

.player-profile__bio {
  margin: 0;
  padding: 0 0 0 20px;
  color: var(--gray-700);
}

.player-profile__bio li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.player-not-found {
  text-align: center;
  padding: 48px 24px;
  background: var(--gray-100);
  border-radius: var(--radius);
}

.player-not-found a {
  color: var(--gold);
  font-weight: 600;
}

/* —— Βαθμολογία —— */
.match-standings-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.agones-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 24px;
  align-items: start;
}

.match-standings-grid > *,
.agones-layout > * {
  min-width: 0;
}

.standings-block {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow-x: auto;
  overflow-y: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.standings-block__head {
  padding: 18px 22px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.standings-block__head h3 {
  margin: 0;
  font-size: 1.1rem;
}

.standings-block__sub {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: var(--gray-700);
}

.table--standings th,
.table--standings td {
  text-align: center;
  font-size: 0.88rem;
  padding: 10px 8px;
}

.table--standings .standings-team {
  text-align: left;
  font-weight: 500;
  min-width: 140px;
}

.table--standings .standings-pos {
  font-weight: 700;
  color: var(--gray-700);
  width: 36px;
}

.table--standings .standings-pts {
  color: var(--black);
  font-size: 0.95rem;
}

.table--standings .row-us {
  background: rgba(201, 166, 70, 0.15);
}

.table--standings .row-us:hover {
  background: rgba(201, 166, 70, 0.22);
}

.table--standings .row-us .standings-team {
  font-weight: 700;
  color: var(--black);
}

.standings-us {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #7a5a12;
  background: #f4ece0;
  padding: 2px 8px;
  border-radius: 99px;
  vertical-align: middle;
}

.standings-legend {
  margin: 0;
  padding: 12px 22px;
  font-size: 0.8rem;
  border-top: 1px solid var(--gray-200);
}

.standings-more {
  display: block;
  padding: 14px 22px;
  text-align: center;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-100);
}

/* —— Top σκόρερ —— */
.scorers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: end;
}

.scorer-card {
  display: block;
  text-align: center;
  padding: 24px 18px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.scorer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.scorer-card--first {
  padding-top: 32px;
  border-color: var(--gold);
  border-width: 2px;
  background: linear-gradient(180deg, #fffdf8 0%, var(--white) 40%);
  box-shadow: 0 8px 28px rgba(201, 166, 70, 0.15);
}

.scorer-card__rank {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gray-700);
}

.scorer-card--first .scorer-card__rank {
  color: #7a5a12;
  font-size: 1rem;
}

.scorer-card__photo-wrap {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--gray-200);
  background: linear-gradient(160deg, #1a1a1a, #0a0a0a);
  display: grid;
  place-items: center;
}

.scorer-card--first .scorer-card__photo-wrap {
  width: 120px;
  height: 120px;
  border-color: var(--gold);
}

.scorer-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.scorer-card__placeholder {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.6;
}

.scorer-card__number {
  position: absolute;
  bottom: -4px;
  right: -4px;
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: 50%;
  border: 2px solid var(--white);
}

.scorer-card h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.scorer-card--first h4 {
  font-size: 1.1rem;
}

.scorer-card .pos-tag {
  margin-bottom: 12px;
}

.scorer-card__stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
  font-size: 0.88rem;
  color: var(--gray-700);
}

.scorer-card__stats strong {
  display: block;
  font-size: 1.35rem;
  color: var(--black);
  line-height: 1.2;
}

.scorer-card--first .scorer-card__stats strong {
  color: #7a5a12;
}

.text-gold {
  color: var(--gold);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--black);
  color: var(--white);
  border-bottom: 3px solid var(--gold);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--white);
  box-sizing: border-box;
  object-fit: cover;
  object-position: center;
  padding: 0;
}

.logo-fallback {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: grid;
  place-items: center;
  font-weight: 700;
  background: var(--white) url("assets/logo.png?v=3") center / cover no-repeat;
  color: transparent;
  overflow: hidden;
}

.brand h1 {
  margin: 0;
  font-size: 1.05rem;
}

.brand p {
  margin: 2px 0 0;
  font-size: 0.85rem;
  color: #d4d4d4;
}

nav ul {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav a {
  padding: 8px 10px;
  border-radius: 8px;
  transition: 0.2s;
}

nav a:hover,
nav a.active {
  background: #1f1f1f;
  color: var(--gold);
}

.topbar--sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.brand {
  text-decoration: none;
  color: inherit;
}

/* —— Αρχική: Hero —— */
.hero-home {
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: clamp(48px, 8vw, 88px) 0;
}

.hero-home__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201, 166, 70, 0.12), transparent),
    linear-gradient(145deg, #1a1a1a 0%, #000 55%);
}

.hero-home__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 48px,
    rgba(255, 255, 255, 0.02) 48px,
    rgba(255, 255, 255, 0.02) 49px
  );
  pointer-events: none;
}

.hero-home__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-home__eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}

.hero-home__title {
  margin: 0 0 18px;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-home__lead {
  margin: 0 0 28px;
  max-width: 520px;
  font-size: 1.05rem;
  color: #c8c8c8;
}

.hero-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-home__visual {
  display: flex;
  justify-content: center;
}

.hero-slideshow {
  position: relative;
  width: min(430px, 86vw);
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  border: 3px solid var(--gold);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 12px rgba(201, 166, 70, 0.08);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.hero-slide--active {
  opacity: 1;
}

.hero-slide__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slide__img--logo {
  object-fit: contain;
  padding: 18px;
}

.hero-slideshow--fallback .hero-slideshow__text {
  display: grid;
}

.hero-slideshow__text {
  display: none;
  position: absolute;
  inset: 0;
  place-items: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.hero-slideshow__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
  cursor: pointer;
}

.hero-slideshow__nav--prev {
  left: 12px;
}

.hero-slideshow__nav--next {
  right: 12px;
}

.hero-slideshow__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.hero-slideshow__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
}

.hero-slideshow__dot--active {
  background: var(--gold);
}

.hero-slideshow--single .hero-slideshow__nav,
.hero-slideshow--single .hero-slideshow__dots {
  display: none;
}

/* Stats */
.stats-bar {
  background: var(--black);
  border-bottom: 2px solid var(--gold);
  padding: 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid #2a2a2a;
}

.stat:last-child {
  border-right: 0;
}

.stat__value {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
}

.stat__label {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: #a3a3a3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Επόμενος αγώνας */
.section--match {
  padding-top: 48px;
  padding-bottom: 0;
}

.match-card {
  min-width: 0;
  background: linear-gradient(135deg, var(--black-soft), var(--black));
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  border: 1px solid #2e2e2e;
  box-shadow: var(--shadow);
}

.match-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.badge--live {
  background: rgba(201, 166, 70, 0.2);
  color: var(--gold-light);
  border: 1px solid rgba(201, 166, 70, 0.35);
}

.match-card__date {
  font-size: 0.9rem;
  color: #b0b0b0;
}

.match-card__teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.match-team {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.match-team--home .match-team__name {
  color: var(--gold);
}

.match-team__name {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
}

.match-team__side {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: #999;
}

.match-card__vs {
  font-size: 1.5rem;
  font-weight: 800;
  color: #555;
}

.match-card__venue {
  text-align: center;
  margin: 0 0 12px;
  color: #aaa;
  font-size: 0.95rem;
}

.match-card__link {
  display: block;
  text-align: center;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
}

.match-card__link:hover {
  color: var(--gold-light);
}

/* Γρήγορη πρόσβαση */
.section--alt {
  background: var(--gray-100);
}

.section-head {
  margin-bottom: 28px;
}

.section-head h3 {
  margin: 0 0 6px;
  font-size: 1.5rem;
  font-weight: 700;
}

.section-head p {
  margin: 0;
  color: var(--gray-700);
}

.section-head--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.quick-card {
  display: block;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  color: inherit;
}

.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.quick-card__icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 12px;
}

.quick-card h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.quick-card p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--gray-700);
}

.link-more {
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
}

.link-more:hover {
  color: var(--gold);
}

/* About */
.about-strip__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.about-strip h3 {
  margin: 0 0 14px;
  font-size: 1.5rem;
}

.about-strip p {
  margin: 0 0 12px;
  color: var(--gray-700);
}

.about-strip__values {
  list-style: none;
  margin: 0;
  padding: 24px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}

.about-strip__values li {
  padding: 10px 0;
  border-bottom: 1px solid #2a2a2a;
  font-size: 0.95rem;
}

.about-strip__values li:last-child {
  border-bottom: 0;
}

.about-strip__values strong {
  color: var(--gold);
}

.grid--news .card {
  transition: box-shadow 0.2s;
}

.grid--news .card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.news-card {
  cursor: pointer;
}

.news-card--preview {
  overflow: hidden;
  padding: 0;
}

.news-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.news-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.news-card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--black);
}

.news-card__image--empty {
  display: grid;
  place-items: center;
  min-height: 220px;
  color: var(--gold);
  font-weight: 800;
}

.news-card--preview h4 {
  margin: 0;
  padding: 16px 18px 18px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.news-card--preview:hover .news-card__image {
  filter: brightness(0.88);
}

.news-detail-page {
  background: var(--gray-100);
  padding: 36px 0 56px;
}

.news-detail {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.news-detail__header {
  margin: 18px 0 22px;
}

.news-detail__header h2 {
  margin: 12px 0 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.news-detail__image {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  display: block;
  margin: 0 0 28px;
  border-radius: 8px;
  background: #f1f1f1;
}

.news-detail__body {
  max-width: 820px;
  white-space: pre-line;
  font-size: 1.08rem;
  line-height: 1.85;
}

.news-detail__sponsors {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.news-detail__sponsors h3 {
  margin: 0 0 8px;
}

.news-detail__sponsors p,
.news-detail__empty p {
  color: var(--gray-600);
}

.sponsor-photo-grid {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.sponsor-photo-card {
  flex: 0 0 150px;
  margin: 0;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.sponsor-photo-card img {
  width: 100%;
  height: 104px;
  object-fit: contain;
  display: block;
  padding: 10px;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.sponsor-card {
  min-height: 120px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  box-shadow: var(--shadow);
}

.sponsor-card:hover {
  border-color: var(--gold);
}

.sponsor-card img {
  width: 100%;
  max-height: 92px;
  object-fit: contain;
  display: block;
}

.sponsor-card span {
  font-weight: 800;
  text-align: center;
}

.podcast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
}

.podcast-video {
  overflow: hidden;
  padding: 0;
}

.podcast-video__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black);
}

.podcast-video__media iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.podcast-video__external {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-weight: 800;
  text-decoration: none;
}

.podcast-video__body {
  padding: 18px;
}

.podcast-video__body h3 {
  margin: 10px 0 8px;
  font-size: 1.15rem;
}

.podcast-video__body p {
  margin: 0;
  color: var(--gray-600);
  line-height: 1.65;
}

.empty-state {
  padding: 34px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
}

.empty-state h3 {
  margin: 0 0 8px;
}

.admin-podcast-card {
  margin-bottom: 10px;
}

.modal-open {
  overflow: hidden;
}

.news-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.news-modal--open {
  display: flex;
}

.news-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.news-modal__dialog {
  position: relative;
  width: min(920px, 100%);
  max-height: min(88vh, 860px);
  overflow: auto;
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  padding: 28px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.news-modal__dialog h3 {
  margin: 12px 44px 16px 0;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  line-height: 1.15;
}

.news-modal__dialog p {
  white-space: pre-line;
  font-size: 1.02rem;
  line-height: 1.8;
}

.news-modal__image {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  display: block;
  margin: 16px 0 20px;
  border-radius: 8px;
  background: #f4f4f4;
}

.news-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--black);
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

/* Footer rich */
.footer--rich {
  margin-top: 0;
  padding: 48px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #2a2a2a;
}

.footer__brand strong,
.footer__links strong,
.footer__contact strong {
  display: block;
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer__brand p,
.footer__contact p {
  margin: 0 0 6px;
  font-size: 0.9rem;
  color: #b5b5b5;
}

.footer__meta {
  margin-top: 10px !important;
  font-size: 0.82rem !important;
  color: #888 !important;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  color: #d0d0d0;
  font-size: 0.92rem;
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__bottom {
  padding: 18px 0;
  text-align: center;
}

.footer__bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: #888;
}

.hero {
  background: linear-gradient(135deg, #121212, #000);
  color: var(--white);
  padding: 62px 0;
}

.hero h2 {
  margin: 0 0 10px;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
}

.hero p {
  margin: 0 0 20px;
  max-width: 700px;
  color: #e6e6e6;
}

.cta {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s, background 0.15s, color 0.15s;
}

.cta:hover {
  transform: translateY(-1px);
}

.cta--primary {
  background: var(--gold);
  color: var(--black);
}

.cta--primary:hover {
  background: var(--gold-light);
}

.cta--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.cta--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.section {
  padding: 42px 0;
}

.section h3 {
  margin: 0 0 16px;
  font-size: 1.4rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  border: 1px solid var(--gray-300);
  border-radius: 14px;
  padding: 16px;
  background: var(--white);
}

.card h4 {
  margin: 0 0 8px;
}

.card p {
  margin: 0;
  color: var(--gray-700);
}

.news-image {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  border-radius: 10px;
  margin: 8px 0 10px;
  border: 1px solid var(--gray-300);
}

.badge {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 99px;
  background: #f4ece0;
  color: #7a5a12;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 11px 10px;
  border-bottom: 1px solid var(--gray-300);
  text-align: left;
}

.table th {
  background: var(--gray-100);
}

.footer {
  margin-top: 24px;
  background: var(--black);
  color: #d8d8d8;
  padding: 18px 0;
  border-top: 3px solid var(--gold);
}

.footer p {
  margin: 0;
  font-size: 0.9rem;
}

.admin-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #0f0f0f;
  color: var(--white);
}

.admin-card {
  width: min(620px, 94%);
  background: #1b1b1b;
  border: 1px solid #303030;
  border-radius: 14px;
  padding: 24px;
}

.admin-card--wide {
  width: min(760px, 96%);
}

.admin-tabs {
  display: flex;
  gap: 8px;
  margin: 16px 0 20px;
  flex-wrap: wrap;
}

.admin-tab {
  margin-top: 0;
  background: #2a2a2a;
  color: #ddd;
  border: 1px solid #444;
}

.admin-tab--active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.admin-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  font-size: 0.9rem;
}

.admin-check input {
  width: auto;
}

.photo-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 108px));
  gap: 10px;
  margin: 12px 0;
}

.photo-thumb {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #444;
}

.photo-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.photo-thumb button {
  position: absolute;
  top: 4px;
  right: 4px;
  margin: 0;
  padding: 2px 8px;
  font-size: 0.75rem;
  line-height: 1.2;
}

.photo-thumb--wide {
  max-width: 240px;
}

.photo-thumb--wide img {
  aspect-ratio: 16 / 9;
}

.site-maintenance-active > :not(.maintenance-screen) {
  display: none !important;
}

.maintenance-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 16px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, 0.18), transparent 36%),
    var(--black);
  color: var(--white);
}

.maintenance-screen__inner {
  width: min(760px, 100%);
  text-align: center;
}

.maintenance-screen__image {
  width: min(520px, 100%);
  max-height: 340px;
  object-fit: contain;
  border: 2px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.maintenance-screen__eyebrow {
  margin: 24px 0 8px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.maintenance-screen h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
}

.maintenance-screen p {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Match reports public */
.match-reports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}

.match-report-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 22px;
  transition: box-shadow 0.2s;
}

.match-report-card:hover {
  box-shadow: var(--shadow);
}

.match-report-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.match-report-card__score {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
}

.match-report-card h4 {
  margin: 0 0 10px;
}

.match-report-card__text {
  color: var(--gray-700);
  margin: 0 0 14px;
  font-size: 0.95rem;
}

.match-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 14px;
  position: relative;
}

.match-gallery__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--gray-200);
}

.match-gallery__more {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
}

.match-videos {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

.match-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #000;
}

.match-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.match-detail {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.match-detail-hero {
  text-align: center;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--gray-200);
}

.match-detail-hero h2 {
  margin: 14px 0 22px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.1;
}

.match-scoreboard {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
}

.match-scoreboard__team {
  min-width: 0;
  font-weight: 800;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
}

.match-scoreboard__team--us {
  color: var(--gold);
}

.match-scoreboard__score {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
}

.match-scoreboard__score strong {
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 1;
}

.match-detail__header h2 {
  margin: 12px 0 0;
}

.match-detail__section {
  margin-top: 28px;
}

.match-detail__section h3 {
  margin: 0 0 14px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
  padding-bottom: 6px;
}

.match-detail__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.match-detail__photo-link {
  display: block;
}

.match-detail__photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--gray-200);
}

.match-scorers-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.match-scorers-list li {
  padding: 12px 14px;
  border-radius: 8px;
  background: #fff9e8;
  border: 1px solid rgba(201, 166, 70, 0.35);
  font-weight: 700;
}

.match-mvp-tag {
  margin: 0 0 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #7a5a12;
  background: #f4ece0;
  padding: 8px 12px;
  border-radius: 8px;
}

/* MVP ψηφοφορία */
.mvp-box {
  margin-top: 32px;
  padding: 24px;
  background: var(--gray-100);
  border: 2px solid var(--gold);
  border-radius: var(--radius);
}

.mvp-box h3 {
  margin: 0 0 8px;
}

.mvp-user-msg {
  margin: 12px 0 16px;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.mvp-vote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 8px;
  margin-bottom: 24px;
}

.mvp-vote-btn {
  margin: 0;
  padding: 12px 8px;
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: border-color 0.15s, background 0.15s, transform 0.15s;
  color: var(--black);
  font-family: inherit;
}

.mvp-vote-btn:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.mvp-vote-btn--selected {
  background: #fff9e8;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(201, 166, 70, 0.25);
}

.mvp-vote-btn__num {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--gold);
}

.mvp-vote-btn__name {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.mvp-results-title {
  margin: 0 0 12px;
  font-size: 1rem;
}

.mvp-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mvp-result-row__top {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.mvp-result-row--leader .mvp-result-row__top span:first-child {
  font-weight: 700;
  color: #7a5a12;
}

.mvp-result-bar {
  height: 8px;
  background: var(--gray-200);
  border-radius: 99px;
  overflow: hidden;
}

.mvp-result-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 99px;
  transition: width 0.3s ease;
}

.mvp-leader-badge {
  margin: 16px 0 0;
  text-align: center;
  padding: 12px;
  background: var(--black);
  color: var(--white);
  border-radius: 10px;
  font-size: 0.95rem;
}

.mvp-leader-badge strong {
  color: var(--gold);
}

.admin-card h2 {
  margin-top: 0;
}

label {
  display: block;
  margin: 12px 0 6px;
  font-size: 0.9rem;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #4a4a4a;
  background: #141414;
  color: var(--white);
}

textarea {
  min-height: 88px;
  resize: vertical;
}

button {
  margin-top: 14px;
  background: var(--gold);
  color: var(--black);
  border: 0;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
}

.btn-secondary {
  background: #e6e6e6;
  color: var(--black);
}

.btn-danger {
  background: #bf3b3b;
  color: var(--white);
}

.admin-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.news-item-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.news-item-actions button {
  margin-top: 0;
  padding: 8px 10px;
  font-size: 0.82rem;
}

.admin-player-card {
  margin-bottom: 10px;
}

.admin-player-card__main {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-player-card__photo,
.admin-player-card__number {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  border: 1px solid var(--gray-300);
  flex: 0 0 auto;
}

.admin-player-card__photo {
  object-fit: cover;
  display: block;
}

.admin-player-card__number {
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--gold);
  font-weight: 800;
}

.admin-player-card h4 {
  margin: 6px 0 4px;
}

.admin-sponsor-card {
  margin-bottom: 10px;
}

.admin-sponsor-card__main {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-sponsor-card__logo,
.admin-sponsor-card__placeholder {
  width: 72px;
  height: 56px;
  border-radius: 8px;
  border: 1px solid var(--gray-300);
  flex: 0 0 auto;
}

.admin-sponsor-card__logo {
  object-fit: contain;
  display: block;
  padding: 6px;
  background: var(--white);
}

.admin-sponsor-card__placeholder {
  display: grid;
  place-items: center;
  background: var(--black);
  color: var(--gold);
  font-weight: 800;
}

.admin-sponsor-card h4 {
  margin: 0 0 4px;
}

.admin-fixture-card {
  margin-bottom: 10px;
}

.admin-fixture-card h4 {
  margin: 8px 0 4px;
}

.admin-mvp-card {
  margin-bottom: 14px;
}

.admin-mvp-card__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.admin-mvp-card h4 {
  margin: 8px 0 4px;
}

.admin-mvp-leader {
  min-width: 130px;
  padding: 10px;
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  text-align: center;
  font-size: 0.82rem;
}

.admin-mvp-leader strong {
  color: var(--gold);
}

.admin-mvp-results {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.admin-mvp-result__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
}

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

.admin-stat-row,
.admin-scorer-row {
  display: grid;
  gap: 8px;
  align-items: center;
  margin: 10px 0;
}

.admin-stat-row {
  grid-template-columns: minmax(180px, 2fr) repeat(7, minmax(54px, 0.65fr)) 38px;
}

.admin-scorer-row {
  grid-template-columns: minmax(220px, 2fr) minmax(74px, 0.7fr) minmax(74px, 0.7fr) 38px;
}

.admin-stat-row input,
.admin-scorer-row input,
.admin-scorer-row select {
  margin: 0;
}

.admin-stat-row button,
.admin-scorer-row button {
  margin: 0;
  padding: 10px 8px;
}

.muted {
  color: #bdbdbd;
  font-size: 0.85rem;
}

@media (max-width: 960px) {
  .hero-home__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-home__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-home__actions {
    justify-content: center;
  }

  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid #2a2a2a;
  }

  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-strip__inner {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .player-profile {
    grid-template-columns: 1fr;
  }

  .player-profile__stats {
    grid-template-columns: 1fr;
  }

  .match-standings-grid,
  .agones-layout {
    grid-template-columns: 1fr;
  }

  .scorers-grid {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .scorer-card--first {
    order: -1;
  }
}

@media (max-width: 520px) {
  .match-card {
    padding: 22px 18px;
  }

  .match-card__teams {
    gap: 12px;
  }

  .match-team {
    min-width: 92px;
  }

  .panel__head,
  .standings-block__head {
    padding: 16px;
  }
}

@media (max-width: 860px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  nav ul {
    flex-wrap: wrap;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .quick-grid {
    grid-template-columns: 1fr;
  }
}
