: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;
}

/* CASINO HERO */
.hero {
  height:350px;
  position:relative;
  overflow:hidden;
  color:#fff;
  background: linear-gradient(90deg,rgba(0,0,0,.72),rgba(0,0,0,.08) 54%), radial-gradient(circle at 70% 42%,rgba(209,151,54,.55),transparent 18%), linear-gradient(110deg,#070707,#17110c 44%,#3e2d16 72%,#0c0c0c);
}

.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:#f0f0f0;
  font-size:15px
}

.casino-art {
  position:absolute;
  right:7%;
  bottom:0;
  width:57%;
  height:100%
}

.table-arc {
  position:absolute;
  left:7%;
  right:0;
  bottom:-90px;
  height:220px;
  border-radius:50% 50% 0 0;
  background:linear-gradient(#1d1d1d,#090909);
  border:6px solid #b78d45;
  box-shadow:0 -5px 30px rgba(215,177,91,.2)
}

.dealer {
  position:absolute;
  right:30%;
  bottom:42px;
  width:175px;
  height:250px;
  border-radius:90px 90px 16px 16px;
  background:linear-gradient(160deg,#e6b89d 0 28%,#101010 29% 100%);
  box-shadow:0 25px 55px rgba(0,0,0,.42)
}

.dealer::before {
  content:"";
  position:absolute;
  width:94px;
  height:94px;
  border-radius:50%;
  background:#d7a07f;
  top:-42px;
  left:40px
}

.cards {
  position:absolute;
  right:20%;
  bottom:102px;
  width:130px;
  height:70px;
  background: linear-gradient(10deg,#fff 0 20%,transparent 21%), linear-gradient(-8deg,#fff 0 20%,transparent 21%);
  opacity:.95
}

/* 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-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
}

.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
}

/* PROVIDER GRID */
.provider-grid {
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:22px;
  max-width:850px;
  margin:0 auto;
}

.provider-card {
  background:#fff;
  border:1px solid #d7dee6;
  border-radius:14px;
  padding:12px;
  position:relative
}

.provider-art {
  height:255px;
  border-radius:12px;
  overflow:hidden;
  position:relative;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  background:linear-gradient(160deg,#f5ead8,#176747 56%,#063123)
}

.provider-art.red {
  background:linear-gradient(160deg,#f7e7e7,#a51f2e 56%,#5d0710)
}

.provider-art.teal {
  background:linear-gradient(160deg,#e9f6f2,#08746f 56%,#043a37)
}

.provider-art.gold {
  background:linear-gradient(160deg,#fff0d8,#ad5f17 56%,#4c2208)
}

.provider-art.yellow {
  background:linear-gradient(160deg,#fff6d8,#ae8618 56%,#564006)
}

.provider-art.blue {
  background:linear-gradient(160deg,#e7edff,#2536a7 56%,#0d145e)
}

.provider-art.black {
  background:linear-gradient(160deg,#f0ecec,#3b3131 56%,#0e0d0d)
}

.provider-art::before {
  content:"";
  position:absolute;
  width:104px;
  height:104px;
  border-radius:50%;
  background:#e3b293;
  top:34px
}

.provider-art::after {
  content:"";
  position:absolute;
  width:150px;
  height:165px;
  border-radius:80px 80px 12px 12px;
  background:rgba(255,255,255,.16);
  bottom:34px
}

.provider-brand {
  position:relative;
  z-index:2;
  color:#fff;
  font-size:22px;
  font-weight:900;
  padding-bottom:18px;
  text-shadow:0 2px 8px rgba(0,0,0,.4)
}

.provider-badge {
  position:absolute;
  left:12px;
  top:10px;
  z-index:3;
  background:#ff1717;
  color:#fff;
  padding:5px 11px;
  border-radius:14px;
  font-size:11px;
  font-weight:800
}

.provider-badge.new {
  background:#1dc77b
}

.provider-card h3 {
  font-size:15px;
  margin:13px 0 7px
}

/* GAME GRID */
.game-grid {
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px
}

.game-card {
  background:#fff;
  border:1px solid #d7dee6;
  border-radius:13px;
  padding:10px
}

.game-thumb {
  height:135px;
  border-radius:10px;
  overflow:hidden;
  position:relative;
  background:linear-gradient(135deg,#5e0f17,#c63c3c 45%,#111 100%)
}

.game-thumb.green {
  background:linear-gradient(135deg,#0c4935,#c92727 52%,#111)
}

.game-thumb.gold {
  background:linear-gradient(135deg,#b78624,#44230a)
}

.game-thumb.black {
  background:linear-gradient(135deg,#111,#3a3a3a)
}

.game-thumb.blue {
  background:linear-gradient(135deg,#12245e,#245ed0)
}

.game-title {
  margin-top:9px;
  font-size:13px;
  font-weight:800
}

.game-actions {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:7px;
  margin-top:9px;
}

.game-btn {
  display:flex;
  align-items:center;
  justify-content:center;
  height:32px;
  border-radius:7px;
  font-size:11px;
  font-weight:800;
  text-decoration:none;
  transition:.18s ease;
}

.main-btn {
  background:#ff8a00;
  color:#fff;
  border:1px solid #ff8a00;
}

.daftar-btn {
  background:#fff;
  color:#ff8a00;
  border:1px solid #ff8a00;
}

.main-btn:hover {
  background:#ed8000;
}

.daftar-btn:hover {
  background:#fff6eb;
}

/* INFO */
.grid-4 {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px
}

.grid-3 {
  display:grid;
  grid-template-columns:repeat(3,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
}

.note {
  background:#e7fbff;
  border:1px solid #9bdcf0;
  border-radius:9px;
  padding:13px;
  margin-top:14px;
  font-size:13px
}

/* FAQ */
.faq-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px
}

.faq-box {
  background:#fff;
  border:1px solid #d7dee6;
  border-radius:12px;
  padding:22px 16px;
  min-height:150px
}

.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 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;
}

/* 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 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 */
.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 */
.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;
}

/* =========================
   TABLET
========================= */
/* =========================
   MOBILE
========================= */
/* 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;
}