/* ========================================
   WARNA UTAMA
======================================== */

:root{
  --bg:#070a18;
  --bg2:#0b1026;
  --panel:#11172f;
  --panel2:#192142;
  --line:#2b3768;
  --text:#f5f7ff;
  --muted:#9ba6cc;
  --blue:#4e79ff;
  --cyan:#37d8ff;
  --gold:#ffc857;
  --shadow:0 18px 45px rgba(0,0,0,.3);
}


/* ========================================
   DASAR WEBSITE
======================================== */

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  min-height:100vh;
  overflow-x:hidden;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:
    radial-gradient(
      circle at 15% 0%,
      rgba(55,216,255,.1),
      transparent 28%
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(78,121,255,.14),
      transparent 30%
    ),
    var(--bg);
}

a{
  color:inherit;
  text-decoration:none;
}

button{
  font:inherit;
  color:inherit;
}

img{
  display:block;
  max-width:100%;
}

.container{
  width:min(1180px,calc(100% - 32px));
  margin:auto;
}


/* ========================================
   HEADER
======================================== */

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(7,10,24,.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(14px);
}

.topbar__inner{
  min-height:74px;
  display:flex;
  align-items:center;
  gap:14px;
}

.brand-mark{
  flex:0 0 48px;
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:15px;
  color:#061022;
  font-weight:900;
  background:linear-gradient(145deg,var(--blue),var(--cyan));
  box-shadow:0 10px 28px rgba(55,216,255,.22);
}

.brand-copy{
  min-width:230px;
}

.brand-copy strong{
  display:block;
  font-size:15px;
  line-height:1.25;
}

.brand-copy span{
  display:block;
  margin-top:5px;
  color:var(--muted);
  font-size:12px;
}


/* ========================================
   MENU ATAS
======================================== */

.nav-menu{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:18px;
  font-size:13px;
  font-weight:900;
}

.nav-menu a{
  position:relative;
  padding:28px 0 25px;
  transition:.2s;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"]{
  color:var(--cyan);
}

.nav-menu a::after{
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:17px;
  height:3px;
  border-radius:999px;
  background:var(--cyan);
  transition:.2s;
}

.nav-menu a:hover::after,
.nav-menu a[aria-current="page"]::after{
  right:0;
}

.menu-btn{
  display:none;
  margin-left:auto;
  width:44px;
  height:44px;
  border:1px solid var(--line);
  border-radius:13px;
  background:var(--panel2);
  font-size:22px;
  cursor:pointer;
}


/* ========================================
   BERANDA
======================================== */

.hero{
  padding:70px 0 75px;
  overflow:hidden;
  background:
    linear-gradient(
      rgba(78,121,255,.035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(78,121,255,.035) 1px,
      transparent 1px
    );
  background-size:32px 32px;
}

.hero__inner{
  text-align:center;
}

.eyebrow,
.section-title > span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 16px;
  border:1px solid rgba(55,216,255,.12);
  border-radius:999px;
  color:var(--cyan);
  background:rgba(55,216,255,.1);
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
}

.hero h1{
  max-width:950px;
  margin:25px auto;
  font-size:clamp(45px,6vw,76px);
  line-height:1.02;
  letter-spacing:-.035em;
  text-shadow:0 12px 35px rgba(0,0,0,.3);
}


/* ========================================
   SPONSOR BERJALAN
======================================== */

.sponsor-box{
  width:100%;
  max-width:1000px;
  margin:28px auto 0;
  padding:12px 0;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:24px;
  background:
    linear-gradient(
      135deg,
      rgba(17,23,47,.96),
      rgba(12,17,39,.96)
    );
  box-shadow:var(--shadow);
}

.sponsor-marquee{
  position:relative;
  width:100%;
  overflow:hidden;
}

.sponsor-marquee::before,
.sponsor-marquee::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  z-index:5;
  width:55px;
  pointer-events:none;
}

.sponsor-marquee::before{
  left:0;
  background:linear-gradient(
    90deg,
    rgba(17,23,47,1),
    rgba(17,23,47,0)
  );
}

.sponsor-marquee::after{
  right:0;
  background:linear-gradient(
    270deg,
    rgba(17,23,47,1),
    rgba(17,23,47,0)
  );
}

.sponsor-track{
  display:flex;
  flex-direction:row;
  flex-wrap:nowrap;
  align-items:center;
  gap:16px;
  width:max-content;
  padding:2px 8px;
  white-space:nowrap;
  animation:sponsorJalan 22s linear infinite;
}

.sponsor-box:hover .sponsor-track{
  animation-play-state:paused;
}

.sponsor-item{
  flex:0 0 150px;
  width:150px;
  height:76px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:10px;
  overflow:hidden;
  border:1px solid rgba(55,216,255,.18);
  border-radius:17px;
  color:#e8edff;
  background:
    linear-gradient(
      145deg,
      #1a2344,
      #10162e
    );
  box-shadow:0 8px 22px rgba(0,0,0,.25);
}

.sponsor-item img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.sponsor-item span{
  color:#dce5ff !important;
  font-size:13px;
  letter-spacing:.04em;
}

@keyframes sponsorJalan{
  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(calc(-50% - 8px));
  }
}


/* ========================================
   HALAMAN UMUM
======================================== */

.section{
  padding:65px 0;
}

.section--alt{
  background:#0c1127;
}

.section-title{
  margin-bottom:30px;
  text-align:center;
}

.section-title h2{
  margin:15px 0 9px;
  font-size:clamp(30px,4vw,48px);
}

.section-title p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}


/* ========================================
   DAFTAR TIM DAN KLASEMEN
======================================== */

.group-grid,
.standings-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.group-card,
.standings-card,
.leaderboard-wrap{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:22px;
  background:var(--panel);
  box-shadow:var(--shadow);
}

.card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:17px 20px;
  border-bottom:1px solid var(--line);
  background:
    linear-gradient(
      90deg,
      rgba(78,121,255,.22),
      rgba(55,216,255,.06)
    );
}

.card-head strong{
  font-size:18px;
}

.card-head span{
  color:var(--cyan);
  font-size:11px;
  font-weight:900;
}

.team-list{
  margin:0;
  padding:8px;
  list-style:none;
}

.team-list li{
  border-bottom:1px solid rgba(43,55,104,.7);
}

.team-list li:last-child{
  border-bottom:0;
}

.team-row{
  width:100%;
  display:grid;
  grid-template-columns:55px 30px 1fr auto;
  align-items:center;
  gap:11px;
  padding:11px 12px;
  border:0;
  background:transparent;
  text-align:left;
  cursor:pointer;
  transition:.2s;
}

.team-row:hover{
  background:rgba(55,216,255,.06);
}

.team-logo{
  width:53px;
  height:53px;
  display:grid;
  place-items:center;
  overflow:hidden;
  border:1px solid rgba(55,216,255,.3);
  border-radius:15px;
}

.team-logo svg{
  width:100%;
  height:100%;
}

.team-number{
  width:29px;
  height:29px;
  display:grid;
  place-items:center;
  border-radius:9px;
  color:var(--cyan);
  background:var(--panel2);
  font-weight:900;
}

.team-row__text strong{
  display:block;
}

.team-row__text small{
  display:block;
  margin-top:4px;
  color:var(--muted);
}

.team-row__arrow{
  color:var(--cyan);
  font-size:26px;
}


/* ========================================
   TABEL
======================================== */

table{
  width:100%;
  border-collapse:collapse;
}

th,
td{
  padding:13px 10px;
  border-bottom:1px solid var(--line);
  text-align:center;
  font-size:14px;
}

th{
  color:var(--muted);
  font-size:11px;
}

th:first-child,
td:first-child{
  text-align:left;
}

tbody tr:last-child td{
  border-bottom:0;
}

.team-link{
  padding:0;
  border:0;
  background:none;
  font-weight:900;
  cursor:pointer;
}

.team-link:hover{
  color:var(--cyan);
}


/* ========================================
   SKOR
======================================== */

.score-filter{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:24px;
}

.filter-btn{
  padding:10px 16px;
  border:1px solid var(--line);
  border-radius:999px;
  background:var(--panel);
  font-weight:800;
  cursor:pointer;
}

.filter-btn.active{
  border-color:transparent;
  color:#071021;
  background:linear-gradient(135deg,var(--blue),var(--cyan));
}

.match-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.match-card{
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:12px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:20px;
  background:var(--panel);
  box-shadow:0 10px 28px rgba(0,0,0,.18);
}

.match-card .team{
  text-align:center;
}

.score-box{
  min-width:90px;
  padding:11px;
  border-radius:13px;
  color:var(--gold);
  background:var(--panel2);
  text-align:center;
  font-size:21px;
  font-weight:900;
}

.match-meta{
  grid-column:1/-1;
  color:var(--muted);
  text-align:center;
  font-size:11px;
}


/* ========================================
   JADWAL
======================================== */

.schedule-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.schedule-card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:22px;
  background:var(--panel);
  box-shadow:var(--shadow);
}

.schedule-date{
  padding:16px;
  border-bottom:1px solid var(--line);
  color:var(--cyan);
  background:
    linear-gradient(
      90deg,
      rgba(78,121,255,.22),
      rgba(55,216,255,.06)
    );
  text-align:center;
  font-size:13px;
  font-weight:900;
}

.schedule-match{
  display:grid;
  grid-template-columns:1fr 75px 1fr;
  align-items:center;
  gap:10px;
  padding:17px;
  border-bottom:1px solid var(--line);
}

.schedule-match:last-child{
  border-bottom:0;
}

.schedule-match strong:first-child{
  text-align:right;
}

.schedule-match strong:last-child{
  text-align:left;
}

.schedule-match span{
  padding:9px;
  border-radius:11px;
  color:var(--gold);
  background:var(--panel2);
  text-align:center;
  font-weight:900;
}


/* ========================================
   MVP DAN SAVAGE
======================================== */

.leaderboard-wrap{
  max-width:900px;
  margin:auto;
}

.rank-badge{
  width:33px;
  height:33px;
  display:inline-grid;
  place-items:center;
  border-radius:10px;
  color:#061022;
  background:linear-gradient(145deg,var(--blue),var(--cyan));
  font-weight:900;
}

.achievement-total{
  color:var(--gold);
  font-size:19px;
}


/* ========================================
   PLAYOFF
======================================== */

.bracket-scroll{
  overflow-x:auto;
  padding-bottom:12px;
}

.bracket{
  min-width:1180px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
  align-items:start;
}

.bracket-column{
  display:grid;
  gap:17px;
}

.bracket-column h3{
  margin:0;
  padding:12px;
  border:1px solid var(--line);
  border-radius:13px;
  background:#050713;
  text-align:center;
  font-size:13px;
}

.bracket-match{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:15px;
  background:var(--panel);
}

.bracket-team{
  display:grid;
  grid-template-columns:1fr 40px;
  gap:8px;
  padding:12px;
  border-bottom:1px solid var(--line);
}

.bracket-team:last-child{
  border-bottom:0;
}

.bracket-team span:last-child{
  color:var(--gold);
  text-align:center;
  font-weight:900;
}

.bracket-note{
  margin-top:-7px;
  color:var(--cyan);
  text-align:center;
  font-size:11px;
  font-weight:900;
}

.champion-card{
  max-width:430px;
  margin:28px auto 0;
  padding:25px;
  border:1px solid rgba(255,200,87,.4);
  border-radius:23px;
  background:
    linear-gradient(
      145deg,
      rgba(255,200,87,.14),
      rgba(78,121,255,.1)
    );
  text-align:center;
  box-shadow:var(--shadow);
}

.champion-card span{
  display:block;
  color:var(--gold);
  font-size:11px;
  font-weight:900;
  letter-spacing:.12em;
}

.champion-card strong{
  display:block;
  margin-top:9px;
  font-size:28px;
}


/* ========================================
   POPUP PLAYER
======================================== */

body.modal-open{
  overflow:hidden;
}

.modal{
  position:fixed;
  inset:0;
  z-index:100;
  display:none;
  place-items:center;
  padding:18px;
}

.modal.open{
  display:grid;
}

.modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(2,4,14,.82);
  backdrop-filter:blur(7px);
}

.modal__card{
  position:relative;
  z-index:1;
  width:min(760px,100%);
  max-height:90vh;
  overflow:auto;
  border:1px solid var(--line);
  border-radius:25px;
  background:var(--panel);
  box-shadow:0 30px 90px rgba(0,0,0,.55);
}

.modal__close{
  position:absolute;
  top:12px;
  right:12px;
  width:41px;
  height:41px;
  border:1px solid var(--line);
  border-radius:13px;
  background:#080b1b;
  font-size:27px;
  cursor:pointer;
}

.modal__head{
  display:flex;
  align-items:center;
  gap:17px;
  padding:23px 70px 23px 23px;
  border-bottom:1px solid var(--line);
  background:
    linear-gradient(
      90deg,
      rgba(78,121,255,.22),
      rgba(55,216,255,.06)
    );
}

.modal__logo{
  width:92px;
  height:92px;
  overflow:hidden;
  border:2px solid var(--cyan);
  border-radius:21px;
}

.modal__logo svg{
  width:100%;
  height:100%;
}

.modal__head span{
  color:var(--cyan);
  font-size:11px;
  font-weight:900;
}

.modal__head h2{
  margin:7px 0 0;
  font-size:30px;
}

.player-table-wrap{
  padding:17px;
  overflow-x:auto;
}

.player-table{
  min-width:570px;
}

.player-table td:nth-child(3) strong{
  color:var(--gold);
}


/* ========================================
   FOOTER BARU
======================================== */

footer{
  border-top:1px solid var(--line);
  background:#050713;
}

.footer-inner{
  min-height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:10px 20px;
  padding:18px 0;
  color:var(--muted);
  text-align:center;
  font-size:12px;
}

.footer-inner span:first-child{
  color:#dce4ff;
  font-weight:800;
}

.footer-inner span:last-child{
  padding:6px 11px;
  border:1px solid var(--line);
  border-radius:999px;
  color:var(--cyan);
  background:rgba(55,216,255,.06);
}


/* ========================================
   TABLET DAN HP
======================================== */

@media(max-width:1050px){

  .nav-menu{
    gap:12px;
    font-size:12px;
  }

  .brand-copy strong{
    font-size:13px;
  }
}


@media(max-width:850px){

  .nav-menu{
    display:none;
    position:absolute;
    top:68px;
    left:14px;
    right:14px;
    margin-left:0;
    padding:13px;
    border:1px solid var(--line);
    border-radius:17px;
    background:var(--panel);
    box-shadow:var(--shadow);
    flex-direction:column;
    align-items:stretch;
    gap:0;
  }

  .nav-menu.open{
    display:flex;
  }

  .nav-menu a{
    padding:13px 9px;
    border-bottom:1px solid var(--line);
  }

  .nav-menu a:last-child{
    border-bottom:0;
  }

  .nav-menu a::after{
    display:none;
  }

  .menu-btn{
    display:grid;
    place-items:center;
  }

  .hero{
    padding:55px 0 65px;
  }

  .hero h1{
    font-size:clamp(40px,10vw,62px);
  }

  .group-grid,
  .standings-grid,
  .match-list,
  .schedule-grid{
    grid-template-columns:1fr;
  }
}


@media(max-width:520px){

  .container{
    width:calc(100% - 20px);
  }

  .topbar__inner{
    min-height:68px;
  }

  .brand-mark{
    flex-basis:43px;
    width:43px;
    height:43px;
  }

  .brand-copy{
    min-width:0;
  }

  .brand-copy strong{
    max-width:205px;
    font-size:11px;
  }

  .brand-copy span{
    font-size:10px;
  }

  .hero{
    padding:43px 0 55px;
  }

  .hero h1{
    margin:20px auto;
    font-size:39px;
  }

  .sponsor-box{
    margin-top:24px;
    padding:10px 0;
  }

  .sponsor-track{
    gap:11px;
    animation-duration:16s;
  }

  .sponsor-item{
    flex-basis:120px;
    width:120px;
    height:67px;
    padding:7px;
  }

  .sponsor-marquee::before,
  .sponsor-marquee::after{
    width:28px;
  }

  .team-row{
    grid-template-columns:48px 1fr auto;
  }

  .team-logo{
    width:47px;
    height:47px;
  }

  .team-number{
    display:none;
  }

  .match-card{
    grid-template-columns:1fr;
  }

  .score-box{
    justify-self:center;
  }

  .match-meta{
    grid-column:auto;
  }

  .schedule-match{
    grid-template-columns:1fr 62px 1fr;
    padding:13px 9px;
    font-size:12px;
  }

  .footer-inner{
    flex-direction:column;
  }
}.hero {
  padding: 18px 0 28px;
  border-bottom: 1px solid rgba(40, 70, 111, 0.7);
  background:
    radial-gradient(circle at top left, rgba(48, 122, 255, 0.14), transparent 32%),
    radial-gradient(circle at top right, rgba(54, 225, 255, 0.08), transparent 28%),
    #050b1a;
}

.hero-banner-wrap {
  width: min(1280px, calc(100% - 24px));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid #28466f;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  background: #081326;
}

.hero-banner {
  width: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero {
    padding: 12px 0 20px;
  }

  .hero-banner-wrap {
    width: calc(100% - 14px);
    border-radius: 14px;
  }
}
/* ===== PAGE HERO BEAUTY ===== */

/* Panel judul halaman */
.section-title,
.page-hero,
.hero-head,
.hero-intro,
.page-intro,
.page-heading {
  position: relative !important;
  width: min(1100px, calc(100% - 28px)) !important;
  margin: 34px auto 24px !important;
  padding: 34px 22px 30px !important;
  text-align: center !important;
  border: 1px solid rgba(57,220,255,0.16) !important;
  border-radius: 26px !important;
  background:
    radial-gradient(circle at top center, rgba(57,220,255,0.10), transparent 34%),
    linear-gradient(135deg, rgba(7,20,44,0.92), rgba(4,14,35,0.96)) !important;
  box-shadow:
    0 18px 45px rgba(0,0,0,0.28),
    inset 0 1px 0 rgba(255,255,255,0.04),
    inset 0 0 0 1px rgba(57,220,255,0.04) !important;
  overflow: hidden !important;
}

.section-title::before,
.page-hero::before,
.hero-head::before,
.hero-intro::before,
.page-intro::before,
.page-heading::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  background:
    linear-gradient(90deg, transparent, rgba(57,220,255,0.06), transparent),
    linear-gradient(180deg, transparent 0%, rgba(57,220,255,0.02) 100%) !important;
  opacity: 1 !important;
}

.section-title::after,
.page-hero::after,
.hero-head::after,
.hero-intro::after,
.page-intro::after,
.page-heading::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  bottom: 12px !important;
  transform: translateX(-50%) !important;
  width: 170px !important;
  height: 4px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, transparent, #38dcff, transparent) !important;
  box-shadow:
    0 0 8px rgba(56,220,255,0.65),
    0 0 18px rgba(56,220,255,0.28) !important;
}

/* Badge kecil atas judul */
.section-title > span:first-child,
.page-hero .eyebrow,
.page-hero .badge,
.page-intro .eyebrow,
.page-heading .eyebrow,
.hero-head .eyebrow,
.hero-intro .eyebrow {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 42px !important;
  margin: 0 auto 18px !important;
  padding: 0 24px !important;
  border: 1px solid rgba(56,220,255,0.28) !important;
  border-radius: 999px !important;
  background:
    linear-gradient(180deg, rgba(8,56,88,0.88), rgba(5,36,63,0.95)) !important;
  color: #37e0ff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  box-shadow:
    0 10px 22px rgba(0,0,0,0.20),
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 0 14px rgba(56,220,255,0.10) !important;
}

/* Judul besar */
.section-title h1,
.section-title h2,
.page-hero h1,
.page-hero h2,
.hero-head h1,
.hero-head h2,
.hero-intro h1,
.hero-intro h2,
.page-intro h1,
.page-intro h2,
.page-heading h1,
.page-heading h2 {
  position: relative !important;
  margin: 0 auto 14px !important;
  color: #ffffff !important;
  font-size: clamp(28px, 4.2vw, 64px) !important;
  line-height: 1.05 !important;
  font-weight: 1000 !important;
  letter-spacing: 0.4px !important;
  text-transform: uppercase !important;
  text-shadow:
    0 2px 0 rgba(0,0,0,0.35),
    0 0 8px rgba(57,220,255,0.18),
    0 0 20px rgba(57,220,255,0.08) !important;
}

/* Deskripsi bawah */
.section-title p,
.page-hero p,
.hero-head p,
.hero-intro p,
.page-intro p,
.page-heading p {
  width: min(820px, 100%) !important;
  margin: 0 auto !important;
  color: #dce8ff !important;
  font-size: clamp(15px, 1.7vw, 20px) !important;
  line-height: 1.7 !important;
  font-weight: 500 !important;
  opacity: 0.95 !important;
}

/* Kalau ada teks kecil tambahan */
.section-title small,
.page-hero small,
.hero-intro small,
.page-intro small {
  display: block !important;
  margin-top: 10px !important;
  color: #8fdfff !important;
  font-size: 12px !important;
  letter-spacing: 0.6px !important;
}

/* Rapikan spasi section setelah judul */
.section,
.page-section {
  padding-top: 10px !important;
}

/* Tombol filter / grup */
.filter-btn,
.group-btn,
.tab-btn,
.tabs button,
.score-filter button,
.button-filter {
  min-height: 44px !important;
  padding: 0 22px !important;
  border: 1px solid rgba(58,131,205,0.48) !important;
  border-radius: 999px !important;
  background:
    linear-gradient(180deg, rgba(17,37,74,0.92), rgba(11,24,51,0.96)) !important;
  color: #eaf4ff !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.3px !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 8px 20px rgba(0,0,0,0.14) !important;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease !important;
}

.filter-btn:hover,
.group-btn:hover,
.tab-btn:hover,
.tabs button:hover,
.score-filter button:hover,
.button-filter:hover {
  transform: translateY(-2px) !important;
  border-color: #39dcff !important;
  box-shadow:
    0 10px 22px rgba(0,0,0,0.18),
    0 0 16px rgba(57,220,255,0.12) !important;
}

.filter-btn.active,
.group-btn.active,
.tab-btn.active,
.tabs button.active,
.score-filter button.active,
.button-filter.active {
  color: #041525 !important;
  background:
    linear-gradient(90deg, #3dbdff, #4ce9ff) !important;
  border-color: transparent !important;
  box-shadow:
    0 8px 22px rgba(57,220,255,0.26),
    0 0 18px rgba(57,220,255,0.18) !important;
}

/* Jarak antar tombol */
.score-filter,
.filter-row,
.group-filter,
.tabs {
  display: flex !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 18px !important;
}

/* Khusus layar HP */
@media (max-width: 680px) {
  .section-title,
  .page-hero,
  .hero-head,
  .hero-intro,
  .page-intro,
  .page-heading {
    width: min(100%, calc(100% - 18px)) !important;
    margin: 20px auto 18px !important;
    padding: 24px 14px 24px !important;
    border-radius: 20px !important;
  }

  .section-title > span:first-child,
  .page-hero .eyebrow,
  .page-hero .badge,
  .page-intro .eyebrow,
  .page-heading .eyebrow,
  .hero-head .eyebrow,
  .hero-intro .eyebrow {
    min-height: 36px !important;
    padding: 0 18px !important;
    font-size: 11px !important;
  }

  .section-title h1,
  .section-title h2,
  .page-hero h1,
  .page-hero h2,
  .hero-head h1,
  .hero-head h2,
  .hero-intro h1,
  .hero-intro h2,
  .page-intro h1,
  .page-intro h2,
  .page-heading h1,
  .page-heading h2 {
    font-size: clamp(23px, 7.8vw, 42px) !important;
  }

  .section-title p,
  .page-hero p,
  .hero-head p,
  .hero-intro p,
  .page-intro p,
  .page-heading p {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  .filter-btn,
  .group-btn,
  .tab-btn,
  .tabs button,
  .score-filter button,
  .button-filter {
    min-height: 42px !important;
    padding: 0 18px !important;
    font-size: 12px !important;
  }
}

/* ===== END PAGE HERO BEAUTY ===== */