:root {
  --blue:#0757b8;
  --orange:#ff8a00;
  --ink:#111827;
  --muted:#64748b;
  --line:#dde3ea;
  --soft:#f6f8fa;
  --container:1220px;
}

* {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth
}

body {
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:#f8f8f8;
  color:var(--ink)
}

a {
  color:inherit;
  text-decoration:none
}

img {
  max-width:100%;
  display:block
}

.container {
  width:min(var(--container),calc(100% - 32px));
  margin:auto
}

/* ===== SHARED HEADER - SAMA DI SEMUA HALAMAN ===== */
.topbar {
  position:sticky;
  top:0;
  z-index:1000;
  background:#fff;
  border-bottom:1px solid #eceff3;
}

.nav {
  height:64px;
  display:flex;
  align-items:center;
  gap:24px;
}

.brand {
  flex:0 0 auto;
  display:flex;
  align-items:center;
  height:64px;
  font-weight:900;
  font-size:24px;
  line-height:1;
  color:var(--blue);
  letter-spacing:-1px;
  white-space:nowrap;
}

.brand img {
  display:block;
  width:auto;
  height:40px;
  object-fit:contain;
}

.menu {
  display:flex;
  align-items:center;
  gap:22px;
  flex:1 1 auto;
  min-width:0;
  font-size:14px;
}

.menu a {
  position:relative;
  display:flex;
  align-items:center;
  height:64px;
  white-space:nowrap;
  font-weight:400;
  color:#111827;
}

.menu a.active {
  color:var(--blue);
  font-weight:400;
}

.menu a.active::before {
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:3px;
  border-radius:3px 3px 0 0;
  background:var(--orange);
}

.nav-actions {
  display:flex;
  align-items:center;
  gap:10px;
  flex:0 0 auto;
  font-size:14px;
  white-space:nowrap;
}

.btn-register {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:72px;
  height:42px;
  padding:0 18px;
  background:var(--orange);
  color:#fff;
  font-weight:800;
  border-radius:11px;
  animation: daftarPulse 1.5s ease-out infinite;
}

@keyframes daftarPulse {
  0% {
    box-shadow:0 0 0 0 rgba(255,138,0,.38);
  }

  70% {
    box-shadow:0 0 0 14px rgba(255,138,0,0);
  }

  100% {
    box-shadow:0 0 0 0 rgba(255,138,0,0);
  }
}

.lang {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:34px;
  min-width:73px;
  padding:0 10px;
  border:1px solid #d8dde5;
  border-radius:7px;
  background:#fff;
}

.lang-flag {
  width:18px;
  height:12px;
  object-fit:cover;
  margin-right:5px;
  border-radius:1px;
}

/* SPORTS HERO */
.hero {
  height:350px;
  position:relative;
  overflow:hidden;
  color:#fff;
  background: linear-gradient(90deg,rgba(0,0,0,.55),rgba(0,0,0,.05) 52%), radial-gradient(circle at 70% 28%,rgba(255,184,96,.75),transparent 20%), linear-gradient(110deg,#071627,#174775 45%,#0b5db2 75%,#063366);
}

.hero::after {
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(0deg,rgba(0,26,68,.15),transparent 45%), repeating-linear-gradient(90deg,rgba(255,255,255,.03) 0 2px,transparent 2px 120px);
}

.hero-inner {
  height:100%;
  display:flex;
  align-items:center;
  position:relative;
  z-index:2
}

.hero-copy {
  width:420px
}

.hero-copy h1 {
  font-size:48px;
  line-height:1.05;
  margin:0 0 10px;
  font-weight:850
}

.hero-copy h2 {
  font-size:27px;
  font-weight:500;
  line-height:1.25;
  margin:0 0 12px
}

.hero-copy p {
  margin:0;
  color:#f3f4f6;
  font-size:15px
}

.sports-art {
  position:absolute;
  right:7%;
  bottom:0;
  width:55%;
  height:100%
}

.stadium {
  position:absolute;
  inset:12% 0 0 0;
  border-radius:50% 50% 0 0;
  background: radial-gradient(ellipse at 50% 100%,#0c7b35 0 30%,transparent 31%), repeating-radial-gradient(ellipse at 50% 100%,#4c6b8f 0 14px,#2c4058 15px 30px);
  opacity:.55;
}

.player-main {
  position:absolute;
  right:28%;
  bottom:-8px;
  width:190px;
  height:300px;
  border-radius:95px 95px 18px 18px;
  background:linear-gradient(160deg,#f0c8ad 0 26%,#1564ca 27% 72%,#0c3c84 73%);
  box-shadow:0 25px 70px rgba(0,0,0,.3)
}

.player-main::before {
  content:"";
  position:absolute;
  width:100px;
  height:100px;
  border-radius:50%;
  background:#d7a47f;
  top:-42px;
  left:45px
}

.ball {
  position:absolute;
  right:8%;
  bottom:28px;
  width:115px;
  height:115px;
  border-radius:50%;
  background:radial-gradient(circle at 35% 35%,#fff 0 26%,#d9e3ee 27% 50%,#2b3c50 51% 58%,#f7fbff 59%);
  box-shadow:0 18px 40px rgba(0,0,0,.28)
}

/* PAGE */
.page {
  padding:72px 0 40px
}

.breadcrumb {
  font-size:15px;
  color:#939ba4;
  margin-bottom:28px
}

.breadcrumb a {
  color:#111
}

.panel {
  background:#fff;
  border:1px solid #d9dee5;
  border-radius:16px;
  padding:28px 22px;
  box-shadow:0 2px 7px rgba(15,23,42,.03)
}

.panel h1 {
  font-size:36px;
  line-height:1.35;
  margin:0 0 15px;
  font-weight:500
}

.panel p {
  font-size:15px;
  line-height:1.7;
  margin:0 0 16px
}

.tags,.quick {
  display:flex;
  gap:9px;
  flex-wrap:wrap
}

.tag {
  background:#e7f7ff;
  border:1px solid #b9def5;
  color:#17618d;
  padding:6px 10px;
  border-radius:16px;
  font-size:12px
}

.quick {
  margin-top:14px;
  padding:14px;
  border:1px solid #d9dee5;
  border-radius:12px;
  font-size:14px
}

.quick a {
  color:#0794eb
}

.quick strong {
  color:#111
}

.section {
  padding:28px 0;
  border-top:1px solid #e2e6ea;
  margin-top:26px
}

.section h2 {
  font-size:22px;
  margin:0 0 12px;
  font-weight:500
}

.section>p {
  font-size:14px;
  color:#414a54;
  margin:0 0 24px
}

/* =========================================
   SENYUMTOTO SPORTS PROVIDER
========================================= */
.sports-provider-section {
  padding:30px 0 34px;
}

/* GRID 3 CARD */
.sports-provider-grid {
  display:grid;
  grid-template-columns: repeat(3, 320px);
  justify-content:center;
  gap:28px;
  margin-top:26px;
}

/* CARD */
.sports-provider-card {
  position:relative;
  width:320px;
  padding:16px;
  background:#fff;
  border:1px solid #d9e0e8;
  border-radius:16px;
  box-shadow: 0 2px 6px rgba(15,23,42,.03);
}

/* IMAGE WRAPPER */
.sports-provider-image {
  width:100%;
  padding:10px;
  border:1px solid #e0e5eb;
  border-radius:14px;
  background:#fff;
}

.sports-provider-image img {
  width:100%;
  height:300px;
  object-fit:cover;
  object-position:center;
  border-radius:13px;
  display:block;
}

/* BADGE */
.sports-provider-badge {
  position:absolute;
  top:16px;
  left:16px;
  z-index:5;
  padding:6px 11px;
  border-radius:20px;
  color:#fff;
  font-size:12px;
  font-weight:800;
}

.sports-provider-badge.new {
  background:#ff1515;
}

.sports-provider-badge.hot {
  background:#ff1515;
}

.sports-provider-badge.play {
  background:#ff1515;
}

/* BUTTON AREA */
.sports-provider-actions {
  display:grid;
  gap:14px;
  margin-top:24px;
}

/* BUTTON */
.sports-provider-btn {
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:48px;
  border-radius:26px;
  font-size:15px;
  font-weight:800;
  transition: transform .18s ease, box-shadow .18s ease;
}

.sports-provider-btn.primary {
  background:#ff8a00;
  color:#fff;
  border:1px solid #ff8a00;
}

.sports-provider-btn.outline {
  background:#fff;
  color:#ff8a00;
  border:1px solid #ff8a00;
}

.sports-provider-btn:hover {
  transform:translateY(-1px);
}

.sports-provider-btn.primary:hover {
  box-shadow: 0 6px 16px rgba(255,138,0,.22);
}

/* NOTE */
.sports-provider-note {
  margin:14px 0 0;
  font-size:12px;
  color:#222;
}

/* TABLET */
/* MOBILE */
.btn.outline {
  border:1px solid var(--orange);
  color:var(--orange);
  background:#fff
}

/* WHY / GUIDES */
.grid-4 {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px
}

.grid-3 {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px
}

.grid-2 {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px
}

.info-card {
  background:#fff;
  border:1px solid #d7dee6;
  border-radius:12px;
  padding:20px 14px;
  min-height:155px
}

.info-card h3 {
  font-size:17px;
  margin:0 0 10px;
  font-weight:500
}

.info-card p {
  font-size:14px;
  line-height:1.65;
  margin:0;
  color:#222
}

.notice {
  margin-top:12px;
  border:1px solid #f4c892;
  background:#fff8ef;
  color:#6c3214;
  border-radius:9px;
  padding:13px;
  font-size:13px
}

.tip {
  margin-top:12px;
  border-left:4px solid #16b5df;
  background:#e8fbff;
  padding:13px;
  border-radius:8px;
  font-size:13px
}

/* =========================================
   SPORTS QUICK GUIDE
========================================= */
.sports-guide-section {
  padding:28px 0 34px;
}

.sports-guide-grid {
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap:14px;
  margin-top:16px;
}

/* CARD */
.sports-guide-card {
  min-height:140px;
  padding:22px 15px;
  background:#fff;
  border:1px solid #d7dee6;
  border-radius:12px;
}

.sports-guide-card h3 {
  margin:0 0 12px;
  font-size:17px;
  font-weight:500;
  color:#111827;
}

.sports-guide-card p {
  margin:0;
  font-size:14px;
  line-height:1.7;
  color:#222;
}

/* BUTTON AREA */
.sports-guide-actions {
  display:flex;
  align-items:center;
  justify-content:space-around;
  gap:20px;
  margin-top:22px;
}

/* BUTTON */
.sports-guide-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:145px;
  height:42px;
  padding:0 18px;
  border-radius:24px;
  font-size:14px;
  font-weight:800;
  transition:.2s ease;
}

.sports-guide-btn.primary {
  color:#fff;
  background:#ff8a00;
  border:1px solid #ff8a00;
}

.sports-guide-btn.outline {
  color:#ff8a00;
  background:#fff;
  border:1px solid #ff8a00;
}

.sports-guide-btn:hover {
  transform:translateY(-1px);
}

/* MOBILE */
/* =========================================
   SPORTS MARKET TABLE
========================================= */
.table-wrap {
  overflow-x:auto;
  border:1px solid #d7dee6;
  border-radius:12px;
  background:#fff;
}

.sports-market-table {
  width:100%;
  border-collapse:collapse;
  min-width:850px;
  font-size:14px;
}

.sports-market-table th {
  padding:13px 14px;
  text-align:left;
  background:#e8eef9;
  color:#111827;
  font-weight:800;
  border-bottom:1px solid #d8e0ea;
}

.sports-market-table td {
  padding:12px 14px;
  text-align:left;
  border-bottom:1px solid #dde3ea;
  color:#111827;
  line-height:1.45;
}

.sports-market-table tbody tr:last-child td {
  border-bottom:none;
}

.sports-market-table tbody tr:hover {
  background:#fafbfd;
}

/* TIPS */
.sports-market-tip {
  margin-top:10px;
  padding:14px 15px;
  border-left:4px solid #12afd7;
  border-radius:8px;
  background:#e5f8fc;
  color:#111827;
  font-size:14px;
  line-height:1.5;
}

/* FAQ */
.faq-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px
}

.faq-box {
  background:#fff;
  border:1px solid #d7dee6;
  border-radius:12px;
  padding:22px 16px;
  min-height:135px
}

.faq-box h3 {
  font-size:16px;
  margin:0 0 9px;
  font-weight:500
}

.faq-box p {
  font-size:14px;
  line-height:1.65;
  margin:0
}

/* =========================================
   SENYUMTOTO PROFESSIONAL FOOTER
========================================= */
.footer-pro {
  margin-top:40px;
  background:#fff;
  color:#111827;
}

.footer-pro .container {
  width:min(1220px, calc(100% - 32px));
  margin:0 auto;
}

/* =========================================
   FOOTER TOP PARTNERS
========================================= */
.footer-sponsors {
  padding:26px 0 22px;
  border-top:1px solid #e5e7eb;
  background:#fff;
}

.top-partner-grid {
  display:grid;
  grid-template-columns: 180px minmax(500px, 1.8fr) 190px minmax(320px, 1.2fr);
  column-gap:55px;
  row-gap:30px;
  align-items:start;
  justify-content:center;
}

.partner-block {
  min-width:0;
  padding:0 12px;
  text-align:center;
}

.partner-block h4, .ecosystem-strip h4 {
  margin:0 0 14px;
  color:#8b9bb1;
  font-size:10px;
  font-weight:900;
  letter-spacing:1.5px;
  text-transform:uppercase;
}

/* PARTNER ITEMS */
.partner-items {
  display:flex;
  justify-content:center;
  align-items:flex-start;
  flex-wrap:wrap;
  gap:14px;
}

.partner-item {
  width:62px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.partner-item img {
  width:38px;
  height:38px;
  object-fit:contain;
  margin-bottom:6px;
}

.partner-item span {
  font-size:9px;
  line-height:1.2;
  color:#42526a;
  white-space:nowrap;
}

/* PAYMENT TOP */
.payment-items {
  display:grid;
  grid-template-columns:repeat(9, 50px);
  justify-content:center;
  gap:10px 7px;
}

.payment-items .partner-item {
  width:52px;
}

.payment-items .partner-item img {
  width:34px;
  height:34px;
  margin-bottom:5px;
}

.payment-items .partner-item span {
  font-size:8.5px;
}

/* PROVIDER TOP */
.provider-items {
  display:grid;
  grid-template-columns:repeat(4, 64px);
  justify-content:center;
  gap:12px 8px;
}

.provider-item {
  width:64px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.provider-item img {
  width:54px;
  height:28px;
  object-fit:contain;
  margin-bottom:5px;
}

.provider-item span {
  font-size:8.5px;
  line-height:1.2;
  color:#65758b;
}

/* EKOSISTEM */
.ecosystem-strip {
  margin-top:24px;
  padding-top:20px;
  border-top:1px solid #eef1f5;
  text-align:center;
}

.ecosystem-items {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:34px;
}

.ecosystem-item {
  width:80px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}

.ecosystem-item img {
  width:30px;
  height:30px;
  object-fit:contain;
}

.ecosystem-item span {
  color:#52637a;
  font-size:9px;
  white-space:nowrap;
}

/* =========================================
   MAIN FOOTER
========================================= */
.footer-main {
  background:#fff;
}

.footer-grid {
  display:grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap:55px;
  padding:34px 0 36px;
  border-top:1px dotted #aeb5bf;
  border-bottom:1px dotted #aeb5bf;
}

.footer-col h3 {
  margin:0 0 16px;
  font-size:17px;
  font-weight:800;
  color:#0f172a;
}

.footer-brand-logo {
  width:155px;
  height:auto;
  margin:0 0 15px;
  object-fit:contain;
}

.footer-about p {
  max-width:355px;
  margin:0 0 10px;
  font-size:12px;
  line-height:1.7;
  color:#475569;
}

.footer-col ul {
  list-style:none;
  padding:0;
  margin:0;
}

.footer-col li {
  margin:0 0 8px;
}

.footer-col a {
  font-size:14px;
  color:#111827;
  transition:.15s;
}

.footer-col a:hover {
  color:#0757b8;
}

/* SECURITY MAIN */
.footer-security-big {
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.footer-security-big > div {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:7px;
}

.footer-security-big img {
  width:38px;
  height:38px;
  object-fit:contain;
  opacity:.72;
}

.footer-security-big span {
  color:#64748b;
  font-size:10px;
}

/* =========================================
   FOOTER BOTTOM
========================================= */
.footer-bottom-grid {
  display:grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap:40px;
  padding:29px 0 30px;
}

.footer-bottom-col h4 {
  margin:0 0 17px;
  color:#111827;
  font-size:16px;
  font-weight:800;
}

/* PAYMENT BOTTOM */
.footer-payment {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
}

.footer-payment img {
  width:auto;
  height:29px;
  max-width:55px;
  object-fit:contain;
  filter:grayscale(1);
  opacity:.70;
  transition:.2s;
}

.footer-payment img:hover {
  filter:grayscale(0);
  opacity:1;
}

/* SOCIAL */
.footer-social {
  display:flex;
  align-items:center;
  gap:13px;
}

.footer-social a {
  display:flex;
  align-items:center;
  justify-content:center;
}

.footer-social img {
  width:27px;
  height:27px;
  object-fit:contain;
  opacity:.72;
  transition:.2s;
}

.footer-social img:hover {
  opacity:1;
  transform:translateY(-2px);
}

/* SECURITY BOTTOM */
.footer-security {
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:15px;
}

.footer-security img {
  width:30px;
  height:30px;
  object-fit:contain;
  opacity:.65;
}

/* RESPONSIBLE */
.responsible-list {
  display:flex;
  align-items:center;
  gap:12px;
  color:#5f6e82;
  font-size:13px;
  font-weight:700;
}

.age-18 {
  width:39px;
  height:39px;
  border:2px solid #657386;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#455468;
  font-size:13px;
  font-weight:900;
}

/* COPYRIGHT */
.footer-copy {
  background:#050505;
  padding:19px 0;
  color:#fff;
  font-size:13px;
}

.chat {
  position:fixed;
  right:24px;
  bottom:20px;
  width:56px;
  height:56px;
  background:#0877dd;
  border-radius:50%;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:28px;
  box-shadow:0 10px 25px rgba(0,0,0,.24);
  z-index:50
}

/* DROPDOWN LAINNYA */
.menu-dropdown {
  position:relative;
  height:64px;
  display:flex;
  align-items:center;
}

.menu-dropdown > a {
  display:flex;
  align-items:center;
  gap:6px;
  height:64px;
}

/* panah kecil */
.menu-dropdown > a::after {
  content:"";
  width:7px;
  height:7px;
  border-right:1.5px solid #111827;
  border-bottom:1.5px solid #111827;
  transform:rotate(45deg);
  margin-top:-4px;
}

.dropdown-menu {
  position:absolute;
  top:64px;
  left:50%;
  right:auto;
  min-width:170px;
  background:#fff;
  border:1px solid #eceff3;
  box-shadow:0 8px 20px rgba(0,0,0,.12);
  padding:6px 0;
  opacity:0;
  visibility:hidden;
  transform:translate(-50%,-8px);
  transition:
    opacity .18s ease,
    transform .18s ease,
    visibility .18s ease;
  z-index:9999;
  pointer-events:none;
}

.dropdown-menu a {
  display:block;
  height:auto;
  padding:10px 13px;
  font-size:12px;
  line-height:1.2;
  color:#111827;
  white-space:nowrap;
}

.dropdown-menu a:hover {
  background:#f5f6f8;
  color:var(--blue);
}

.menu-dropdown:hover .dropdown-menu {
  opacity:1;
  visibility:visible;
  transform:translate(-50%,0);
  pointer-events:auto;
}

.cta-row {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:20px 0
}

.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 16px;
  border-radius:24px;
  font-weight:800;
  font-size:14px
}

.btn.primary {
  background:var(--orange);
  color:#fff
}