:root {
  color-scheme: dark;
  --bg: #070302;
  --bg-2: #180604;
  --surface: rgba(18, 27, 48, .86);
  --surface-strong: #17223d;
  --ink: #f7fbff;
  --muted: #a8b5c8;
  --line: rgba(255, 255, 255, .13);
  --accent: #e31b23;
  --accent-2: #d99a20;
  --gold: #ffd66b;
  --danger: #ff4d6d;
  --shadow: 0 24px 80px rgba(0, 0, 0, .38);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 10%, color-mix(in srgb, var(--accent) 28%, transparent), transparent 28rem),
    radial-gradient(circle at 82% 4%, color-mix(in srgb, var(--accent-2) 22%, transparent), transparent 25rem),
    linear-gradient(180deg, #180604 0%, #070302 44%, #05060b 100%),
    var(--bg);
  min-height: 100vh;
}
a { color: inherit; }
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  padding: .75rem 1rem;
  background: var(--ink);
  color: white;
  z-index: 10;
}
.skip-link:focus { top: 1rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(7, 10, 19, .82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}
.nav {
  max-width: 1240px;
  margin: 0 auto;
  padding: .8rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  color: #07111f;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  box-shadow: 0 0 28px color-mix(in srgb, var(--accent) 34%, transparent);
}
.nav-links {
  display: flex;
  gap: .25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav-actions {
  display: flex;
  gap: .5rem;
}
.nav-links a,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .72rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  color: #eef6ff;
  background: rgba(255, 255, 255, .06);
  text-decoration: none;
  font-weight: 700;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.nav-links a:hover,
.button:hover,
.card:hover {
  border-color: color-mix(in srgb, var(--accent) 60%, transparent);
  transform: translateY(-1px);
}
.button.primary {
  color: #07111f;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  border-color: transparent;
  box-shadow: 0 10px 28px color-mix(in srgb, var(--accent) 24%, transparent);
}
.button.ghost {
  background: transparent;
  color: var(--ink);
}
.button.consult {
  color: #07111f;
  background: linear-gradient(135deg, #57d9ff, #8bffbd);
  border-color: transparent;
  white-space: nowrap;
}
.hero,
.page-hero,
.section,
.footer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
  min-width: 0;
}
.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, .98fr);
  align-items: center;
  gap: 2rem;
}
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  align-items: center;
  gap: 2rem;
}
.hero h1,
.page-hero h1 {
  margin: .5rem 0 1rem;
  max-width: 900px;
  font-size: clamp(2.4rem, 6.6vw, 5.6rem);
  line-height: .94;
  letter-spacing: 0;
  text-shadow: 0 0 34px rgba(255, 255, 255, .12);
}
.page-hero { padding-bottom: 3rem; }
.page-hero h1 { font-size: clamp(2.25rem, 5.2vw, 4.7rem); }
.hero p,
.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}
.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}
.payment-row,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.payment-row {
  margin-top: 1rem;
}
.payment-row span,
.trust-strip span {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  padding: .5rem .8rem;
  color: #dce9f8;
  background: rgba(255, 255, 255, .07);
  font-weight: 800;
  font-size: .86rem;
}
.trust-strip {
  max-width: 1240px;
  margin: -2rem auto 0;
  padding: 0 1.25rem 2rem;
}
.trust-strip span {
  flex: 1 1 150px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,.11), rgba(255,255,255,.04));
}
.notice-ticker {
  max-width: 1240px;
  margin: 1rem auto 0;
  padding: .8rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  color: #dce9f8;
}
.notice-ticker span {
  flex: 0 0 auto;
  padding: .42rem .7rem;
  border-radius: 999px;
  color: #07111f;
  background: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .78rem;
}
.notice-ticker p {
  min-width: 0;
  margin: 0;
  padding: .65rem .9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(255, 255, 255, .06);
}
.signal-panel,
.cards,
.faq-list {
  display: grid;
  gap: .75rem;
}
.signal-panel a,
.content-panel,
.intent-box {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.signal-panel a {
  display: grid;
  gap: .35rem;
  padding: 1.25rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.signal-panel a::before,
.game-card::before,
.content-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, color-mix(in srgb, var(--accent) 18%, transparent), transparent 46%);
  pointer-events: none;
}
.signal-panel span,
.card span {
  color: var(--muted);
}
.signal-panel strong {
  font-size: 1.25rem;
  line-height: 1.2;
}
.section-heading {
  max-width: 760px;
  margin-bottom: 1.5rem;
  min-width: 0;
}
.section-heading h2,
.intent-box h2,
.content-panel h2 {
  margin: .35rem 0 .75rem;
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: 0;
}
.section-heading p,
.intent-box p,
.content-panel p,
.footer p {
  color: var(--muted);
  line-height: 1.7;
}
.casino-board {
  display: grid;
  gap: 1rem;
}
.brand-visual {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.site-sabong .brand-visual {
  border-color: rgba(217, 154, 32, .34);
  border-radius: 6px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .62), 0 0 48px rgba(227, 27, 35, .12);
}
.sabong-photo-panel {
  position: relative;
  margin: 0;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(217, 154, 32, .34);
  border-radius: 6px;
  background: #080302;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .62), 0 0 48px rgba(227, 27, 35, .12);
}
.sabong-photo-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,2,1,.68), rgba(5,2,1,.08) 45%, rgba(5,2,1,.48)),
    linear-gradient(0deg, rgba(5,2,1,.78), rgba(5,2,1,.08) 52%);
  pointer-events: none;
}
.sabong-real-photo {
  width: 100%;
  height: 360px;
  display: block;
  object-fit: cover;
  object-position: 50% 52%;
  filter: contrast(1.16) saturate(1.08) brightness(.72);
}
.sabong-photo-panel figcaption {
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  bottom: 1.1rem;
  z-index: 2;
  display: grid;
  gap: .28rem;
}
.sabong-photo-panel figcaption span {
  color: var(--accent-2);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .12em;
}
.sabong-photo-panel figcaption strong {
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  line-height: .92;
  text-shadow: 0 0 34px rgba(227, 27, 35, .48);
}
.sabong-photo-panel figcaption small {
  color: #ffe2c2;
  font-size: .92rem;
  font-weight: 800;
}
.jackpot-card {
  min-height: 230px;
  display: grid;
  align-content: center;
  gap: .55rem;
  padding: 1.4rem;
  border: 1px solid rgba(255, 214, 107, .38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 214, 107, .18), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
  box-shadow: 0 24px 90px rgba(0, 0, 0, .42), inset 0 0 35px rgba(255, 214, 107, .08);
}
.site-sabong .jackpot-card {
  border-color: rgba(227, 27, 35, .42);
  border-radius: 6px;
  background:
    linear-gradient(120deg, rgba(227, 27, 35, .2), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(0, 0, 0, .2));
  box-shadow: 0 28px 90px rgba(0, 0, 0, .62), inset 0 0 42px rgba(227, 27, 35, .1);
}
.site-sabong .jackpot-card strong {
  text-shadow: 0 0 26px rgba(227, 27, 35, .35);
}
.jackpot-card span,
.deal-banner span {
  color: var(--gold);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.jackpot-card strong {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: .95;
  color: #fff7d5;
}
.jackpot-card small,
.deal-banner small {
  color: var(--muted);
  line-height: 1.6;
}
.quick-login {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
}
.quick-login span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
}
.quick-login strong {
  display: block;
  margin-top: .25rem;
}
.search-box {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}
.search-box span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
}
.search-box strong {
  display: block;
  margin-top: .35rem;
  color: #fff;
}
.bingo-number-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
  padding: .75rem;
  border: 1px solid rgba(255, 214, 107, .24);
  border-radius: 8px;
  background: rgba(0, 0, 0, .18);
}
.bingo-number-board span {
  display: grid;
  align-content: center;
  place-items: center;
  min-height: 74px;
  gap: .22rem;
  padding: .65rem .45rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 24%, transparent), transparent 58%),
    rgba(255,255,255,.08);
  text-align: center;
}
.bingo-number-board strong {
  color: var(--gold);
  font-size: .98rem;
  font-weight: 950;
  line-height: 1;
}
.bingo-number-board small {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 750;
}
.lotto-number-board {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .45rem;
  padding: .8rem;
  border: 1px solid rgba(255, 214, 107, .24);
  border-radius: 8px;
  background: rgba(0, 0, 0, .2);
}
.lotto-number-board span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #07111f;
  background: linear-gradient(135deg, #ffffff, var(--gold));
  font-weight: 950;
  font-size: .76rem;
}
.arena-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
}
.arena-board span {
  min-height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 214, 107, .26);
  border-radius: 8px;
  color: #fff8dc;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 28%, transparent), transparent 58%),
    rgba(255,255,255,.07);
  font-weight: 900;
}
.site-sabong .arena-board span {
  min-height: 68px;
  border-color: rgba(217, 154, 32, .25);
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(227, 27, 35, .18), rgba(0,0,0,.18)),
    rgba(255,255,255,.045);
  box-shadow: inset 0 0 24px rgba(0,0,0,.2);
}
.resort-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem;
}
.resort-stack span {
  min-height: 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 214, 107, .26);
  border-radius: 8px;
  color: #fff8dc;
  background: linear-gradient(145deg, rgba(255, 214, 107, .14), rgba(255, 255, 255, .04));
  font-weight: 850;
}
.mini-slots,
.game-grid,
.flow-grid {
  display: grid;
  gap: .9rem;
}
.mini-slots {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.slot-tile,
.game-card,
.flow-step,
.deal-banner {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
  box-shadow: var(--shadow);
}
.slot-tile {
  min-height: 94px;
  display: grid;
  place-items: end start;
  padding: .8rem;
  color: #fff;
  font-weight: 850;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 24%, transparent), transparent 52%),
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
}
.game-section {
  padding-top: 2rem;
}
.inspired-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.brand-elements {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
}
.brand-elements span {
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: .9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 18%, transparent), transparent 55%),
    rgba(255,255,255,.07);
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 850;
}
.bingo-elements span:nth-child(odd) {
  background:
    linear-gradient(145deg, rgba(255, 214, 107, .18), transparent 52%),
    rgba(255,255,255,.07);
}
.cp-elements span:nth-child(3n) {
  background:
    linear-gradient(145deg, rgba(255, 61, 127, .18), transparent 52%),
    rgba(255,255,255,.07);
}
.resort-elements span {
  border-color: rgba(255, 214, 107, .24);
  background:
    linear-gradient(145deg, rgba(214, 164, 58, .18), transparent 52%),
    rgba(255,255,255,.055);
}
.sabong-elements span:nth-child(odd) {
  border-color: rgba(255, 214, 107, .28);
  background:
    linear-gradient(145deg, rgba(255, 68, 58, .24), transparent 56%),
    rgba(255,255,255,.07);
}
.site-sabong .sabong-elements span {
  min-height: 88px;
  border-radius: 5px;
  border-color: rgba(217, 154, 32, .28);
  background:
    linear-gradient(135deg, rgba(227, 27, 35, .17), rgba(0,0,0,.2)),
    rgba(255,255,255,.045);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.sabong-arena-strip {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(260px, 1.45fr) minmax(150px, 1fr);
  gap: .9rem;
  align-items: stretch;
}
.sabong-side,
.sabong-duel {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 18%, transparent), transparent 56%),
    rgba(255,255,255,.065);
  box-shadow: var(--shadow);
}
.site-sabong .sabong-side,
.site-sabong .sabong-duel {
  border-color: rgba(217, 154, 32, .28);
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(227, 27, 35, .16), rgba(0,0,0,.32)),
    rgba(255,255,255,.04);
  box-shadow: 0 24px 74px rgba(0,0,0,.52), inset 0 0 28px rgba(0,0,0,.22);
}
.sabong-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .45rem;
  padding: 1rem;
}
.sabong-side span {
  color: var(--accent);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 900;
}
.sabong-side strong {
  color: #fff;
  font-size: 1.35rem;
}
.sabong-side small {
  color: var(--muted);
  line-height: 1.5;
}
.sabong-side.wala span {
  color: var(--accent-2);
}
.sabong-duel {
  width: 100%;
  height: 180px;
  padding: .4rem;
}
.lotto-elements span:nth-child(even) {
  border-color: rgba(255, 214, 107, .28);
  background:
    linear-gradient(145deg, rgba(46, 204, 113, .2), transparent 56%),
    rgba(255,255,255,.07);
}
.game-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.game-card {
  min-height: 300px;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}
.site-sabong .game-card {
  border-color: rgba(217, 154, 32, .22);
  border-radius: 5px;
  background:
    linear-gradient(145deg, rgba(227, 27, 35, .12), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(0,0,0,.18));
}
.site-sabong .game-thumb {
  border-color: rgba(217, 154, 32, .24);
  border-radius: 5px;
  filter: contrast(1.16) saturate(1.04) brightness(.68);
}
.site-sabong .game-card::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 1rem;
  height: 190px;
  z-index: 1;
  border-radius: 5px;
  background: linear-gradient(0deg, rgba(5,2,1,.72), rgba(5,2,1,.08) 58%);
  pointer-events: none;
}
.site-sabong .game-1 .game-thumb { object-position: 48% 38%; }
.site-sabong .game-2 .game-thumb { object-position: 58% 45%; }
.site-sabong .game-3 .game-thumb { object-position: 38% 48%; }
.site-sabong .game-4 .game-thumb { object-position: 50% 54%; }
.site-sabong .game-5 .game-thumb { object-position: 62% 40%; }
.site-sabong .game-6 .game-thumb { object-position: 34% 42%; }
.site-sabong .game-card span,
.site-sabong .game-card h3,
.site-sabong .game-card p {
  z-index: 2;
}
.game-thumb {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 190px;
  display: block;
  object-fit: cover;
  margin-bottom: .9rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 16px 38px rgba(0, 0, 0, .24);
}
.game-card span {
  position: relative;
  z-index: 1;
  color: var(--gold);
  font-weight: 900;
}
.game-card h3 {
  position: relative;
  z-index: 1;
  margin: .55rem 0 .5rem;
  font-size: 1.45rem;
}
.game-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.priority-section {
  padding-top: 2rem;
}
.traffic-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.daily-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.daily-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  margin-bottom: 1rem;
}
.daily-grid article {
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: .65rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 16%, transparent), transparent 58%),
    rgba(255,255,255,.065);
  box-shadow: var(--shadow);
}
.daily-grid span {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.daily-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.traffic-table-wrap {
  overflow-x: auto;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.traffic-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 820px;
}
.traffic-table th,
.traffic-table td {
  padding: .95rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.traffic-table th {
  color: var(--gold);
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,255,255,.05);
}
.traffic-table td {
  color: #dfe9f7;
  line-height: 1.55;
}
.traffic-table tr:last-child td {
  border-bottom: 0;
}
.difficulty-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: .25rem .65rem;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: #fff;
  font-weight: 850;
  white-space: nowrap;
}
.flow-section {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.flow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.flow-step {
  padding: 1rem;
}
.flow-step span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: .8rem;
  border-radius: 50%;
  color: #07111f;
  background: var(--gold);
  font-weight: 900;
}
.card {
  display: grid;
  gap: .35rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  text-decoration: none;
  transition: .18s ease;
}
.card span {
  font-size: .94rem;
  line-height: 1.55;
}
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1rem;
  align-items: start;
}
.intent-box,
.content-panel {
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}
.intent-box {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: .8rem;
}
.keyword-section {
  display: grid;
  gap: 1.25rem;
  min-width: 0;
}
.keyword-section article {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  min-width: 0;
}
.keyword-section h3,
.content-panel h3 {
  margin: 0 0 .9rem;
  font-size: 1.18rem;
}
.keyword-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  min-width: 0;
  max-width: 100%;
}
.keyword-grid span {
  padding: .5rem .72rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: #e8f2ff;
  font-size: .93rem;
  font-weight: 650;
}
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .07);
}
summary {
  cursor: pointer;
  padding: 1rem;
  font-weight: 800;
}
details p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
  line-height: 1.65;
}
.check-list {
  display: grid;
  gap: .65rem;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.65;
}
.deal-banner {
  display: grid;
  gap: .35rem;
  margin: 1.25rem 0;
  padding: 1rem;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent-2) 20%, transparent), transparent 52%),
    rgba(255, 255, 255, .07);
}
.deal-banner strong {
  font-size: 1.45rem;
}
.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.footer-contact {
  color: var(--gold);
  font-weight: 850;
  text-decoration: none;
}
.footer-contact:hover {
  text-decoration: underline;
}
.mobile-action-bar {
  display: none;
}
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}
@media (max-width: 860px) {
  .hero,
  .page-hero,
  .game-grid,
  .flow-grid,
  .brand-elements,
  .sabong-arena-strip,
  .daily-grid,
  .two-column {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-top: 3rem;
  }
  .intent-box { position: static; }
  .footer { flex-direction: column; }
  .mini-slots { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .notice-ticker {
    align-items: flex-start;
    flex-direction: column;
  }
  .notice-ticker p {
    width: 100%;
    border-radius: 8px;
    white-space: normal;
  }
}
@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }
  body {
    padding-bottom: 5.2rem;
    background:
      radial-gradient(circle at 18% 0%, color-mix(in srgb, var(--accent) 22%, transparent), transparent 18rem),
      linear-gradient(180deg, #180604 0%, #070302 52%, #05060b 100%),
      var(--bg);
  }
  .site-header {
    position: sticky;
    top: 0;
    background: rgba(5, 7, 14, .92);
  }
  .nav {
    align-items: stretch;
    flex-direction: column;
    gap: .65rem;
    padding: .7rem .9rem;
    min-width: 0;
    overflow: hidden;
  }
  .brand {
    justify-content: space-between;
    width: 100%;
  }
  .brand > span:last-child {
    max-width: 72vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .nav-actions {
    display: none;
  }
  .nav-links {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: .45rem;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    padding-bottom: .1rem;
    scrollbar-width: none;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a {
    flex: 0 0 auto;
    min-width: max-content;
    padding: .58rem .75rem;
    border-radius: 999px;
    font-size: .86rem;
  }
  .hero,
  .page-hero,
  .section,
  .footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero,
  .page-hero {
    gap: 1rem;
    padding-top: 1.35rem;
    padding-bottom: 1.6rem;
  }
  .hero h1,
  .page-hero h1 {
    margin: .35rem 0 .75rem;
    font-size: clamp(2.15rem, 13vw, 3.55rem);
    line-height: .93;
  }
  .hero p,
  .page-hero p {
    font-size: 1rem;
    line-height: 1.55;
  }
  .hero-actions {
    grid-template-columns: 1fr 1fr;
    gap: .55rem;
  }
  .button {
    width: 100%;
    min-height: 48px;
    padding: .82rem .9rem;
    justify-content: center;
    border-radius: 8px;
    font-size: .92rem;
  }
  .payment-row,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .45rem;
  }
  .payment-row span,
  .trust-strip span {
    min-height: 44px;
    padding: .55rem .65rem;
    font-size: .78rem;
  }
  .notice-ticker {
    margin: .75rem 1rem 0;
    padding: .7rem 0 0;
  }
  .notice-ticker span {
    margin-left: 0;
  }
  .notice-ticker p {
    font-size: .9rem;
    line-height: 1.5;
  }
  .casino-board {
    gap: .75rem;
  }
  .brand-visual,
  .sabong-photo-panel {
    min-height: 250px;
    border-radius: 8px;
  }
  .brand-visual {
    aspect-ratio: 16 / 11;
    object-fit: cover;
  }
  .sabong-real-photo {
    height: 250px;
  }
  .sabong-photo-panel figcaption strong {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }
  .jackpot-card {
    min-height: 150px;
    padding: 1rem;
  }
  .jackpot-card strong {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
    line-height: .92;
  }
  .arena-board,
  .lotto-number-board,
  .bingo-number-board,
  .resort-stack,
  .mini-slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bingo-number-board {
    gap: .5rem;
    padding: .65rem;
  }
  .bingo-number-board span {
    min-height: 58px;
    padding: .55rem .4rem;
  }
  .bingo-number-board strong {
    font-size: .9rem;
  }
  .bingo-number-board small {
    font-size: .72rem;
  }
  .arena-board span,
  .resort-stack span,
  .slot-tile {
    min-height: 54px;
  }
  .daily-grid,
  .brand-elements,
  .flow-grid {
    gap: .65rem;
  }
  .daily-grid article,
  .brand-elements span,
  .flow-step {
    min-height: auto;
    padding: .85rem;
  }
  .game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
  }
  .game-card {
    min-height: 228px;
    padding: .65rem;
  }
  .game-thumb {
    height: 118px;
    margin-bottom: .6rem;
    border-radius: 6px;
  }
  .site-sabong .game-card::after {
    left: .65rem;
    right: .65rem;
    top: .65rem;
    height: 118px;
  }
  .game-card h3 {
    margin: .35rem 0 .25rem;
    font-size: 1rem;
    line-height: 1.1;
  }
  .game-card p,
  .card span,
  .signal-panel span {
    font-size: .82rem;
    line-height: 1.35;
  }
  .signal-panel a,
  .card,
  .content-panel,
  .intent-box,
  details {
    border-radius: 8px;
  }
  .signal-panel a {
    padding: .95rem;
  }
  .signal-panel strong {
    font-size: 1rem;
  }
  .section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .section-heading {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
  }
  .section-heading h2,
  .intent-box h2,
  .content-panel h2 {
    font-size: clamp(1.45rem, 7vw, 2.05rem);
  }
  .keyword-grid {
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    padding-bottom: .25rem;
    scrollbar-width: none;
  }
  .keyword-grid::-webkit-scrollbar { display: none; }
  .keyword-grid span {
    flex: 0 0 auto;
    font-size: .82rem;
  }
  .traffic-table {
    min-width: 720px;
    font-size: .86rem;
  }
  .traffic-table-wrap {
    max-width: 100%;
  }
  .footer {
    padding-bottom: 1.4rem;
  }
  .mobile-action-bar {
    position: fixed;
    left: .75rem;
    right: .75rem;
    bottom: .75rem;
    z-index: 20;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: .55rem;
    padding: .55rem;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    background: rgba(5, 7, 14, .86);
    box-shadow: 0 18px 60px rgba(0,0,0,.5);
    backdrop-filter: blur(18px);
  }
  .mobile-action-bar a {
    min-height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    font-size: .92rem;
    background: rgba(255,255,255,.08);
  }
  .mobile-action-bar a.primary {
    color: #07111f;
    border-color: transparent;
    background: linear-gradient(135deg, #57d9ff, #8bffbd);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  html {
    scroll-behavior: auto;
    transition: none !important;
  }
}