:root {
  --blue:#0865cc;
  --orange:#ff8200;
  --ink:#111827;
  --muted:#64748b;
  --line:#dde3ea;
  --soft:#f6f8fa;
  --card:#fff;
  --container:1220px;
}

* {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth
}

body {
  margin:0;
  font-family:Inter,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;
  font-weight:900;
  font-size:24px;
  line-height:1;
  color:var(--blue);
  letter-spacing:-1px;
  white-space:nowrap;
}

.brand {
  flex:0 0 auto;
  display:flex;
  align-items:center;
  height:64px;
}

.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;
}
/* HERO */
.hero {
  height:350px;
  background: radial-gradient(circle at 68% 52%,rgba(255,197,87,.85),transparent 17%), linear-gradient(105deg,#16100d 0 32%,#8d2d18 49%,#d98237 68%,#0a4e95 100%);
  color:#fff;
  overflow:hidden;
  position:relative;
}

.hero::after {
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg,rgba(0,0,0,.5),transparent 48%), radial-gradient(circle at 74% 64%,rgba(255,255,255,.75),transparent 3%), radial-gradient(circle at 82% 35%,rgba(255,125,38,.45),transparent 26%);
}

.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
}

.hero-art {
  position:absolute;
  right:10%;
  bottom:0;
  width:48%;
  height:96%
}

.fighter {
  position:absolute;
  right:14%;
  bottom:-15px;
  width:220px;
  height:330px;
  border-radius:100px 100px 20px 20px;
  background:linear-gradient(160deg,#d7a27b 0 27%,#8f201f 28% 54%,#2a1d21 55%);
  transform:rotate(-5deg);
  box-shadow:0 30px 80px rgba(0,0,0,.3)
}

.fighter::before {
  content:"";
  position:absolute;
  width:115px;
  height:115px;
  border-radius:50%;
  background:#b97852;
  top:-48px;
  left:52px
}

.weapon {
  position:absolute;
  width:230px;
  height:42px;
  background:#b37e49;
  right:30%;
  top:80px;
  transform:rotate(36deg);
  border-radius:20px;
  box-shadow:0 0 18px rgba(255,210,105,.55)
}

.weapon::after {
  content:"";
  position:absolute;
  width:80px;
  height:80px;
  border-radius:50%;
  border:16px solid #ddaa60;
  left:-38px;
  top:-34px
}

/* 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
}

.cta-row {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:20px 0
}

.btn {
  display:inline-block;
  padding:12px 16px;
  border-radius:26px;
  font-weight:800;
  font-size:14px
}

.btn.primary {
  background:var(--orange);
  color:#fff
}

.btn.outline {
  border:1px solid var(--orange);
  color:var(--orange);
  background:#fff
}

.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;
  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 ESPORTS PROVIDER
========================================= */
.esports-provider-section {
  padding:28px 0 32px;
}

/* =========================
GRID
========================= */
.esports-provider-grid {
  display:grid;
  grid-template-columns: repeat(2, 330px);
  justify-content:center;
  gap:46px;
  margin:30px auto 0;
}

/* =========================
CARD
========================= */
.esports-provider-card {
  display:block;
  width:330px;
  padding:14px 14px 16px;
  background:#fff;
  border:1px solid #d8dee7;
  border-radius:18px;
  color:#111827;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.esports-provider-card:hover {
  transform:translateY(-3px);
  border-color:#c9d2de;
  box-shadow: 0 10px 24px rgba(15,23,42,.07);
}

/* =========================
IMAGE
========================= */
.esports-provider-image {
  position:relative;
  width:100%;
  text-align:center;
}

.esports-provider-image img {
  width:245px;
  height:310px;
  margin:0 auto;
  object-fit:cover;
  border-radius:15px;
  display:block;
}

/* garis kuning bawah gambar */
.esports-provider-image::after {
  content:"";
  display:block;
  width:100%;
  height:3px;
  margin-top:0;
  background:#f0a000;
}

/* =========================
HOT / NEW
========================= */
.esports-provider-badge {
  position:absolute;
  top:-3px;
  right:16px;
  min-width:65px;
  height:27px;
  padding:0 16px;
  border-radius:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:12px;
  font-weight:800;
  z-index:5;
}

.esports-provider-badge.hot {
  background:#ff1818;
}

.esports-provider-badge.new {
  background:#12bd7a;
}

/* =========================
TEXT
========================= */
.esports-provider-info {
  padding-top:14px;
}

.esports-provider-info h3 {
  margin:0 0 9px;
  font-size:16px;
  font-weight:800;
  color:#111827;
}

.esports-provider-info p {
  margin:0;
  font-size:14px;
  line-height:1.55;
  color:#526174;
}

/* =========================
FEATURE PILLS
========================= */
.esports-provider-features {
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

.esports-provider-features span {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 13px;
  background:#fff;
  border:1px solid #d8dee7;
  border-radius:22px;
  font-size:13px;
  color:#222;
}

.esports-provider-features i {
  width:8px;
  height:8px;
  border-radius:50%;
  background:#0aa9ee;
  display:block;
}

/* =========================
TABLET
========================= */


/* =========================
MOBILE
========================= */


/* market */
.grid-5 {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:12px
}

.info-card {
  background:#fff;
  border:1px solid #d7dee6;
  border-radius:12px;
  padding:20px 14px;
  min-height:180px
}

.info-card h3 {
  font-size:17px;
  margin:0 0 10px;
  font-weight:500
}

.info-card p {
  font-size:14px;
  line-height:1.7;
  margin:0;
  color:#222
}

.note {
  background:#ddf8ff;
  border:1px solid #91d8ef;
  border-radius:8px;
  padding:12px;
  margin-top:12px;
  font-size:13px
}

/* why */
.grid-4 {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px
}

.why-card {
  background:#fff;
  border:1px solid #d7dee6;
  border-radius:12px;
  padding:20px 15px;
  min-height:170px
}

.why-card h3 {
  font-size:17px;
  margin:0 0 10px;
  font-weight:500
}

.why-card p {
  font-size:14px;
  line-height:1.65;
  margin:0
}

/* faq */
.faq-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px
}

.faq-box {
  background:#fff;
  border:1px solid #d7dee6;
  border-radius:12px;
  padding:23px 16px;
  min-height:140px
}

.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
========================================= */
.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 ITEM */
.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 */
.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;
}

/* PROVIDERS */
.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;
}

/* ECOSYSTEM */
.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 */
.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 */
.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;
}

.live-chat-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1677ff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: liveChatPulse 1.5s ease-out infinite;
}
@keyframes liveChatPulse {
  0% {
    box-shadow:
      0 10px 25px rgba(0, 0, 0, 0.22),
      0 0 0 0 rgba(22, 119, 255, 0.45);
  }

  70% {
    box-shadow:
      0 10px 25px rgba(0, 0, 0, 0.22),
      0 0 0 16px rgba(22, 119, 255, 0);
  }

  100% {
    box-shadow:
      0 10px 25px rgba(0, 0, 0, 0.22),
      0 0 0 0 rgba(22, 119, 255, 0);
  }
}

.live-chat-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.26);
}

.live-chat-btn svg {
  width: 38px;
  height: 38px;
  fill: #fff;
  display: block;
  margin-top: 6px;
}

/* responsive */


/* 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;
}

.esports-provider-actions{
  display:grid;
  gap:12px;
  margin-top:14px;
}

.esports-provider-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:46px;
  border-radius:24px;
  font-size:15px;
  font-weight:800;
}

.esports-provider-btn.primary{
  background:#ff8a00;
  color:#fff;
  border:1px solid #ff8a00;
}

.esports-provider-btn.outline{
  background:#fff;
  color:#ff8a00;
  border:1px solid #ff8a00;
}