:root {
  --color-primary: #212c85;
  --color-secondary: #d68108;
  --color-white: #ffffff;
  --color-text-light: #f4f4f4;
  --color-text-dark: #000000;
  --color-text-muted: #8f8f8f;
  --color-grey: #8f8f8f;
  --header-h: 90px;
    --color-text-medium: #696969;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Rubik', sans-serif;
  background-color: var(--color-white);
  color: var(--color-text-dark);
  overflow-x: hidden;
}

.container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 120px;
  padding-right: 120px;
}

section[id] { 
  scroll-margin-top: calc(var(--header-h) + 12px); 
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 17px;
  cursor: pointer;
  border: none;
}

.button-primary {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.button-primary:hover {
  background-color:  var(--color-white);
  color: var(--color-secondary);
}

.button-secondary {
  background-color: var(--color-white);
  color: var(--color-secondary);
}

.button-secondary:hover {
  color: var(--color-white);
  background-color: var(--color-secondary);
}

.button-outline {
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}

.button-dark {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 1px solid var(--color-primary);
}

@media (max-width: 1200px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.site-header {
  background-color: var(--color-primary);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 17px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  position: fixed;            /* ganti dari sticky ke fixed */
  z-index: 1000;              /* pastikan di atas elemen lain */
}
.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 114px 0 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  width: 78px;
  height: 87px;
  display: block;
}
.main-nav {
  display: flex;
  gap: 23px;
  align-items: center;
}
.nav-link {
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-white) !important;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-link.active, .nav-link:hover {
  color: var(--color-secondary);
}
.header-button {
  font-size: 20px;
  font-weight: 600;
  padding: 10px 27.5px;
}

@media (max-width: 1200px) {
    .header-container {
        padding: 0 40px;
    }
    .main-nav {
        display: none; /* Simple hiding for mobile, a hamburger menu would be better */
    }
}

/* CSS for section section:hero */
.hero-section {
  background-color: var(--color-primary);
  padding-top: 150px;
  position: relative;
  overflow: visible; /* biar gambar boleh keluar */
  border-bottom-left-radius: 50% 60%;
  border-bottom-right-radius: 50% 60%;
}
.hero-bg-shape {
  position: absolute;
  top: -428px;
  left: -37px;
  width: 1513px;
  height: 1178px;
  z-index: 0;
}
.hero-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 60px; /* biar nggak kepotong */
}

.hero-content {
  max-width: 805px;
}
.hero-logos {
  position: relative;
  width: 146px;
  height: 59px;
  margin: 0 auto 14px;
}
.logo-putih {
  position: absolute;
  width: 87px;
  height: 45px;
  top: 7px;
  left: 70px;
}
.logo-mask {
  position: absolute;
  width: 59px;
  height: 59px;
  top: 0;
  left: 0;
}
.logo-mask img {
  width: 100%;
  height: 100%;
}
.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 57px;
  margin-bottom: 3px;
}
.hero-subtitle {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 57px;
  margin-bottom: 8px;
}
.hero-description {
  font-size: 24px;
  font-weight: 500;
  color: #eaeaea;
  line-height: 28px;
  max-width: 756px;
  margin: 0 auto 59px;
}
.hero-info-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.info-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(106, 106, 106, 0.3);
  padding: 10px;
  border-radius: 15px;
  color: var(--color-text-light);
  font-size: 14px;
  font-weight: 500;
}
.info-chip img {
  width: 14px;
  height: 15px;
  object-fit: contain;
}
.hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 37px;
}
.hero-cta-buttons .button {
  padding: 10px 18px;
}
.hero-image-container {
  width: 100%;
  text-align: center;
}
.hero-image {
  max-width: 553px;
  width: 100%;
  height: auto;
  position: absolute;
  margin-top: -40px; /* naikkan gambar */
  left: 450px;
  z-index: 2;
}

/* ==== Hamburger button ==== */
.nav-toggle{
  display:none; /* hidden on desktop */
  width:42px; height:42px;
  border:0; background:transparent; cursor:pointer;
  align-items:center; justify-content:center; gap:4px;
}
.nav-toggle .bar{
  display:block; width:24px; height:2px; background:#fff; transition:.25s ease;
}
.site-header .header-container{ position:relative; }

/* state when open -> turn into X */
.nav-toggle.is-open .bar:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav-toggle.is-open .bar:nth-child(2){ opacity:0; }
.nav-toggle.is-open .bar:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

.nav-link {
  color: #fff; /* default putih */
  text-decoration: none;
  font-weight: 600;
  transition: color .2s ease;
}

.nav-link:hover {
  color: #d68108; /* hover juga jadi kuning */
}

.nav-link.active {
  color: #d68108 !important;
  border-bottom: 2px solid #d68108;
}

/* letakkan di stylesheet-mu */
:root{ --header-h: 80px; }             /* atau diupdate via JS seperti yang sudah kamu punya */
section[id]{ scroll-margin-top: calc(var(--header-h) + 12px); }

/* ==== Mobile menu ==== */
@media (max-width: 992px){
  .nav-toggle{ display:flex; }
  .header-button{ display:none; } /* sembunyikan tombol daftar di header jika mau */

  .main-nav{
    position:absolute; top:100%; left:0; right:0;
    display:block;
    background: var(--color-primary, #212c85);
    padding:10px 16px 16px;
    border-bottom-left-radius:14px; border-bottom-right-radius:14px;
    box-shadow: 0 10px 24px rgba(0,0,0,.18);
    transform: translateY(-12px);
    opacity:0; pointer-events:none; visibility:hidden;
    transition: opacity .2s ease, transform .2s ease;
  }
  .main-nav.open{
    transform: translateY(0);
    opacity:1; pointer-events:auto; visibility:visible;
  }
  .main-nav .nav-link{
    display:block; padding:12px 6px;
    color:#fff; text-decoration:none; font-weight:600;
  }
  .main-nav .nav-link:hover{ color: var(--color-secondary, #d68108); }
}

/* Desktop tetap horizontal */
@media (min-width: 993px){
  .main-nav{ display:flex; gap:23px; align-items:center; }
}

@media (max-width: 768px) {
  .hero-title, .hero-subtitle {
    font-size: 32px;
    line-height: 1.2;
  }
  .hero-description {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .hero-info-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .hero-image-container {
    display: none;
  }
}

/* CSS for section section:prizes */
.prizes-section {
  padding-top: 400px;
  padding-bottom: 71px;
}
.prize-card {
  background-image: url('../images/abd5e8c869b1d830fb5dd416d2089a840a41f909.png');
  background-size: cover;
  background-position: center;
  border-radius: 25px;
  padding: 35px 60px 42px;
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: center;
  max-width: 1233px;
  margin: 0 auto;
}
.prize-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 18px;
}
.prize-amount {
  font-size: 64px;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 76px;
  margin-bottom: 15px;
}
.certificate-button {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--color-white);
  border-radius: 15px;
  padding: 8px 45px;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 15px;
  transition: background-color 0.3s;
}
.certificate-button:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
.prize-note {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #ffc800;
  font-size: 14px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .prizes-section {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .prize-amount {
    font-size: 40px;
    line-height: 1.2;
  }
  .certificate-button {
    font-size: 16px;
    padding: 8px 20px;
  }
}

/* CSS for section section:about */
.about-section {
  padding-bottom: 63px;
}
.about-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 27px;
}
.about-text {
  flex-basis: 55%;
  max-width: 631px;
}
.about-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 15px;
}
.about-description {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 26px;
}
.about-features-card {
  flex-basis: 45%;
  max-width: 502px;
  background: linear-gradient(180deg, #212c85 0%, #161c51 100%);
  border-radius: 25px;
  padding: 22px 27px 34px;
}
.feature-tags {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.tag {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 2px 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}
.tag.primary {
  background-color: var(--color-secondary);
  color: var(--color-primary);
}
.tag.secondary {
  background-color: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--color-white);
  color: var(--color-white);
}
.features-list {
  list-style: none;
  padding-left: 0;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
}
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .about-text, .about-features-card {
    flex-basis: auto;
    width: 100%;
    max-width: 600px;
    text-align: start;
  }
}

/* CSS for section section:age-groups */
.age-groups-section {
  padding-bottom: 56px;
}
.section-divider {
  border: none;
  height: 1px;
  background-color: rgba(33, 44, 133, 0.49);
  margin-bottom: 37px;
}
.age-cards-wrapper {
  display: flex;
  justify-content: center;
  gap: 33px;
}
.age-card {
  border-radius: 15px;
  padding: 14px 24px;
}
.age-card.blue {
  background: linear-gradient(90deg, #212c85 0%, #080a1f 100%);
  border: 2px solid var(--color-primary);
  color: var(--color-white);
  padding: 10px 50px;
}
.age-card.white {
  background-color: var(--color-white);
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  padding: 10px 50px;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.card-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
}
.card-tag {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 3px 18px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
}
.card-desc {
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 15px;
}
.card-price-info {
  display: flex;
  align-items: center;
}
.price {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
}
.divider {
  width: 1px;
  height: 17.5px;
  margin: 0 10px;
}
.age-card.blue .divider {
  background-color: var(--color-white);
}
.age-card.white .divider {
  background-color: var(--color-primary);
}
.info {
  font-size: 12px;
  font-weight: 400;
}
@media (max-width: 1024px) {
  .age-cards-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .age-card {
    width: 100%;
    max-width: 496px;
    height: auto;
  }
}

/* CSS for section section:location-cta */
.location-section {
  padding-bottom: 173px;
}
.location-container {
  display: flex;
  gap: 65px;
  align-items: flex-start;
}
.location-map {
  flex-shrink: 0;
  width: 604px;
  height: 339px;
}
.location-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: 88px;
}
.location-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 18px;
}
.info-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 18px 29px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 500;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.info-item.full-width {
  grid-column: 1 / -1;
}
.cta-subtitle {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 10px;
}
.cta-buttons {
  display: flex;
  gap: 10px;
}
.cta-buttons .button {
  padding: 10px 10px;
}
@media (max-width: 1024px) {
  .location-container {
    flex-direction: column;
    align-items: center;
  }
  .location-map {
    width: 100%;
    max-width: 604px;
    height: auto;
  }
  .location-info {
    width: 100%;
    max-width: 604px;
    align-items: center;
    text-align: center;
  }
  .info-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

/* CSS for section section:footer */
.site-footer {
  background: linear-gradient(180deg, #212c85 0%, #080a1f 100%);
  padding: 52px 20px;
  text-align: center;
}
.site-footer p {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
}

/* =========================
   Responsive untuk HP
   ========================= */
@media (max-width: 576px) {
  body {
    font-size: 14px;
  }

  /* Header */
  .logo img {
    width: 50px;
    height: auto;
  }
  .header-button {
    font-size: 14px;
    padding: 6px 16px;
  }
  /* CSS for section section:hero */
  .hero-section {
    border-bottom-left-radius: 50% 20%;
    border-bottom-right-radius: 50% 20%;
  }

  /* Hero Section */
  .hero-title {
    font-size: 20px;
    line-height: 1.3;
  }
  .hero-subtitle {
    font-size: 22px;
    line-height: 1.3;
  }
  .hero-description {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
  }
  .hero-info-wrapper {
    gap: 3px;
    margin-bottom: 20px;
  }
  .info-chip {
    font-size: 10px;
    padding: 6px 10px;
  }
  .hero-cta-buttons .button {
    font-size: 12px;
    padding: 6px 10px;
  }
  .hero-image {
    max-width: 250px; /* perkecil gambar */
    top: 40px; /* tetap keluar dari hero section */
  }

  .prize-card {
  padding: 15px 20px 15px;
  }

  /* About Section */
  .about-title {
    font-size: 18px;
  }
  .about-description {
    font-size: 14px;
    line-height: 20px;
  }
  .about-features-card {
    padding: 15px;
  }

  /* Age Groups */
  .card-title {
    font-size: 22px;
  }
  .card-tag {
    font-size: 12px;
    padding: 2px 10px;
  }
  .price {
    font-size: 16px;
  }

  /* Prizes Section */
  .prize-title {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .prize-amount {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 2px;
  }
  .certificate-button {
    font-size: 10px;
    padding: 6px 20px;
    margin-bottom: 2px;
  }
  .prize-note{
    font-size: 10px;
  }

  .age-card.white {
    padding: 10px 10px;
  }

  .age-card.blue {
    padding: 10px 10px;
  }

  /* Location Section */
  .location-title {
    font-size: 18px;
  }
  .info-grid {
    font-size: 12px;
  }
  .location-map {
    width: 100%;
    height: auto;
  }
}









/*====================================*/
.hero-klasemen {
  background: linear-gradient(180deg, #212c85 0%, #080a1f 100%);
  position: relative;
  overflow: visible;
  padding-top: 37px;
  padding-bottom: 197px; /* 454 (total height) - 37 (top) - 47 (h1) - 12 (gap) - 18 (p) - 10 (gap) - 37 (btn) - 96 (bottom space) */
  text-align: center;
  height: 450px;
  margin-top: 120px;
}
.hero-klasemen::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, rgba(33, 44, 133, 0) 39.29%, #161c51 100%);
  z-index: 2;
}
.hero-content-klasemen {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 3;
}
.hero-title-klasemen {
  color: var(--color-white);
  font-family: var(--font-rubik);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.18;
  margin-bottom: 12px;
}
.hero-subtitle-klasemen {
  color: var(--color-white);
  font-family: var(--font-rubik);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.18;
  max-width: 596px;
  margin-bottom: 23px;
}
.btn-live {
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 10px 10px;
  border-radius: 15px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.18;
  min-width: 193px;
  transition: background-color 0.3s;
  text-decoration: none;
}
.btn-live:hover {
  opacity: 0.9;
}
.hero-image-container-klasemen {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 716px;
  height: 257px;
  z-index: 2;
}
.hero-mockup-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 768px) {
  .hero-klasemen {
    margin-top: 70px;
    height: 400px;
  }
  .hero-title-klasemen {
    font-size: 32px;
  }
  .hero-subtitle-klasemen {
    font-size: 14px;
  }
  .hero-image-container-klasemen {
    width: 90%;
    max-width: 500px;
    bottom: -9%;
  }
  .hero-section {
    padding-bottom: 150px;
  }
}

/* CSS for section section:standings */
.standings-section {
  padding-bottom: 100px;
}
.standings-header-wrapper {
  background-color: var(--color-white);
  padding-top: 42px;
  padding-bottom: 42px;
}
.standings-header {
  text-align: center;
}
.standings-main-title {
  font-family: var(--font-rubik);
  font-weight: 700;
  font-size: 32px;
  color: var(--color-black);
  margin-bottom: 28px;
}
.category-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap; /*baru*/
}
.category-link {
  font-family: var(--font-rubik);
  font-weight: 400;
  font-size: 15px;
  color: var(--color-grey);
  padding: 0 10px;
  position: relative;
  border-radius: .5rem; 
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease;
}
.category-link:not(:first-child)::before {
  content: '';
  position: absolute;
  left: -5.5px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background-color: var(--color-text-dark);
}
.category-link:hover { 
  background: #f1f5f9; 
}
.category-link.active {
  color: var(--color-primary);
  font-weight: 500;
}
.standings-content {
  padding-top: 43px;
}
.age-category {
  margin-bottom: 82px;
  display: none; 
  opacity: 0;
}
.age-category.active { 
  display: block; 
  animation: fadeIn 220ms ease forwards;
}
.age-category:last-child {
  margin-bottom: 0;
}
.category-title {
  font-family: var(--font-rubik);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-grey);
  text-align: center;
  margin-bottom: 43px;
}
@media (max-width: 768px) {
  .category-link {
    padding: 0 5px;
    font-size: 12px;
  }
  .standings-main-title {
    margin-bottom: 15px;
  }
}

.standings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 61px 61px;
}
/* .standings-table-wrapper {
  overflow-x: auto;
} */
.standings-table {
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 13px 18px;
  min-width: 530px;
}
.table-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding-bottom: 13px;
  margin-bottom: 13px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-medium);
}
.group-title {
  font-size: 12px;
  font-weight: 600;
  color: var(----color-text-dark);
}
.stats-header {
  padding-left: 144px;
}
.stats-cols-header {
  display: grid;
  grid-template-columns: repeat(6, 25px);
  gap: 0 15px;
  justify-content: end;
}
.table-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.team-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-dark);
}
.team-info {
  display: flex;
  align-items: center;
  gap: 9px;
}
.team-logo {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}
.team-stats {
  display: grid;
  grid-template-columns: repeat(6, 25px);
  gap: 0 15px;
  justify-content: end;
  text-align: left;
}

@keyframes fadeIn { 
  from {
    opacity: 0; 
    transform: translateY(4px);
  } to {
    opacity: 1; 
    transform: translateY(0);
  } 
}

@media (max-width: 1200px) {
  .standings-grid {
    grid-template-columns: 1fr;
  }
} 
@media (max-width: 576px) {
  .category-nav {
    flex-wrap: wrap;
    gap: 5px;
  }
  .category-link:not(:first-child)::before {
    display: none;
  }
  .standings-table {
    min-width: 404px;
  }
  .table-header {
    grid-template-columns: auto 1fr;
  }
  .stats-header {
    display: none;
  }
  .standings-grid {
    gap: 20px 61px;
  }
  .stats-cols-header {
    grid-column: 1 / -1;
    justify-content: space-between;
    margin-top: 8px;
    padding-left: 54px;
    gap: 5px;
    grid-template-columns: repeat(6, auto);
  }
  .team-stats,  .stats-cols-header  {
    grid-column: none;
    justify-content: space-between;
    margin-top: 4px;
    padding-left: 54px;
    gap: 5px;
    grid-template-columns: repeat(6, auto);
  }
  .standings-table {
    font-size: 11px;
    padding: 10px 12px;
    min-width: auto; /* biar ikut layar hp */
  }
  .team-logo {
    width: 32px;
    height: 32px;
  }
  .team-info {
    gap: 6px;
  }
  .team-stats,
  .stats-cols-header {
    gap: 2px;
    justify-content: space-around;
    padding-left: 44px; /* lebih kecil biar muat */
  }
  .team-row { font-size: 11px; }
  .team-logo { width: 28px; height: 28px; }
  .team-stats, .stats-cols-header { grid-template-columns: repeat(6, 16px); gap: 3px; }
}

