/* 1xSlots Casino · Petroleum/Signal palette · Jost + Kumbh Sans */
:root {
  --bg: #080c0f;
  --bg-2: #0f1620;
  --bg-3: #142030;
  --line: #1a2b3f;
  --line-2: #223a52;
  --txt: #f0f4f8;
  --txt-d: #8ab8d0;
  --txt-dd: #507888;
  --acc: #0284c7;
  --acc-2: #38bdf8;
  --acc-2-d: #0369a1;
  --hot: #e11d48;
  --good: #bae6fd;
  --r: 12px;
  --r-s: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font: 16px/1.62 "Kumbh Sans", ui-sans-serif, system-ui, sans-serif;
  color: var(--txt);
  background:
    radial-gradient(1000px 580px at 92% -10%, rgba(2,132,199,.10) 0%, transparent 62%),
    radial-gradient(820px 580px at -10% 60%, rgba(56,189,248,.07) 0%, transparent 60%),
    var(--bg);
  min-height: 100vh;
}

h1, h2, h3, h4 { font-family: "Jost", system-ui, sans-serif; line-height: 1.22; }
h2 { font-size: clamp(1.35rem, 2.8vw, 1.9rem); font-weight: 700; margin-bottom: 1.6rem; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 600; margin-bottom: .75rem; }
p { margin-bottom: .9rem; }
a { color: var(--acc-2); text-decoration: none; }
a:hover { color: var(--txt); }

.row-container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.row-section { padding: 72px 0; }
.row-section-sm { padding: 48px 0; }

/* Aggregate bar */
.row-agg {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
  font-size: .8rem;
  color: var(--txt-d);
  overflow: hidden;
  white-space: nowrap;
}
.row-agg-inner {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.row-agg-item { display: flex; align-items: center; gap: 6px; }
.row-agg-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--acc-2);
  box-shadow: 0 0 6px var(--acc-2);
  flex-shrink: 0;
  animation: row-pulse 2s infinite;
}
@keyframes row-pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .4; }
}
.row-agg-val { color: var(--txt); font-weight: 600; }

/* Nav */
.row-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,12,15,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.row-nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.row-logo {
  font-family: "Jost", sans-serif;
  font-weight: 700; font-size: 1.1rem;
  color: var(--txt);
  display: flex; align-items: center; gap: 8px;
}
.row-logo-mark {
  background: linear-gradient(135deg, var(--acc) 0%, var(--acc-2) 100%);
  color: #021422;
  padding: 4px 9px;
  border-radius: var(--r-s);
  font-size: .85rem;
  font-weight: 700;
}
.row-nav-links {
  display: flex; gap: 24px; list-style: none;
  font-size: .85rem; color: var(--txt-d);
}
.row-nav-links a { color: var(--txt-d); transition: color .2s; }
.row-nav-links a:hover { color: var(--acc-2); }
.row-nav-cta {
  background: linear-gradient(135deg, var(--acc) 0%, var(--acc-2) 100%);
  color: #021422 !important;
  font-family: "Jost", sans-serif;
  font-weight: 700; font-size: .82rem;
  padding: 9px 18px;
  border-radius: var(--r-s);
  white-space: nowrap;
  box-shadow: 0 0 14px rgba(2,132,199,.55);
  transition: box-shadow .2s, transform .15s;
}
.row-nav-cta:hover {
  box-shadow: 0 0 22px rgba(2,132,199,.75);
  transform: translateY(-1px);
  color: #021422 !important;
}

/* CTA buttons */
.cta {
  font-family: "Jost", system-ui, sans-serif;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-weight: 700;
  border-radius: var(--r-s);
  transition: box-shadow .2s, transform .15s;
  cursor: pointer;
  text-decoration: none;
}
.cta-hot {
  background: linear-gradient(135deg, var(--acc) 0%, var(--acc-2) 100%);
  color: #021422;
  padding: 15px 34px;
  font-size: 1rem;
  box-shadow: 0 4px 18px rgba(2,132,199,.55);
}
.cta-hot:hover {
  box-shadow: 0 6px 28px rgba(2,132,199,.75);
  transform: translateY(-2px);
  color: #021422;
}
.cta-ghost {
  border: 2px solid var(--acc);
  color: var(--acc-2);
  padding: 13px 30px;
  font-size: 1rem;
  background: transparent;
}
.cta-ghost:hover {
  background: rgba(2,132,199,.12);
  box-shadow: 0 4px 18px rgba(2,132,199,.42);
  color: var(--acc-2);
  transform: translateY(-2px);
}

/* Chip / badge */
.row-chip {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(2,132,199,.15);
  border: 1px solid rgba(2,132,199,.35);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: .78rem;
  color: var(--good);
  font-weight: 600;
  letter-spacing: .02em;
}
.row-chip-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--acc-2);
  box-shadow: 0 0 6px var(--acc-2);
}

/* Hero */
.row-hero {
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.row-hero-svg {
  position: absolute; top: 0; right: 0;
  width: min(520px, 55vw); height: auto;
  opacity: .18;
  pointer-events: none;
}
.row-hero-content { position: relative; z-index: 1; }
.row-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 700;
  margin: 20px 0 14px;
  max-width: 820px;
}
.row-hero h1 .acc { color: var(--acc-2); }
.row-hero-sub {
  font-size: clamp(.92rem, 1.6vw, 1.05rem);
  color: var(--txt-d);
  max-width: 680px;
  margin-bottom: 32px;
}
.row-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.row-kpi-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 14px;
  max-width: 640px;
}
.row-kpi {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px 14px;
  text-align: center;
}
.row-kpi-val {
  font-family: "Jost", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--acc-2);
  display: block;
}
.row-kpi-lbl {
  font-size: .75rem;
  color: var(--txt-dd);
  margin-top: 3px;
}

/* Topology SVG nodes animation */
@keyframes row-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Welcome / Bonus */
.row-wbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-bottom: 32px;
}
.row-wbox {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 20px;
  position: relative;
  overflow: hidden;
}
.row-wbox::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--acc) 0%, var(--acc-2) 100%);
}
.row-wbox-num {
  font-family: "Jost", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--acc-2);
  line-height: 1;
  margin-bottom: 6px;
}
.row-wbox-title {
  font-family: "Jost", sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--txt);
  margin-bottom: 8px;
}
.row-wbox-body { font-size: .83rem; color: var(--txt-d); line-height: 1.5; }
.row-wbox-tag {
  display: inline-block;
  background: rgba(56,189,248,.15);
  border: 1px solid rgba(56,189,248,.3);
  border-radius: 6px;
  padding: 3px 9px;
  font-size: .72rem;
  color: var(--good);
  margin-top: 10px;
  font-weight: 600;
}
.row-wbox-total {
  background: linear-gradient(135deg, rgba(2,132,199,.18) 0%, rgba(56,189,248,.08) 100%);
  border: 1px solid rgba(2,132,199,.4);
  border-radius: var(--r);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.row-wbox-total-val {
  font-family: "Jost", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--acc-2);
}
.row-wbox-total-sub { font-size: .82rem; color: var(--txt-d); }
.row-terms { font-size: .76rem; color: var(--txt-dd); margin-top: 10px; }

/* Steps */
.row-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.row-step {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 22px;
  position: relative;
}
.row-step-n {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--acc) 0%, var(--acc-2) 100%);
  color: #021422;
  font-family: "Jost", sans-serif;
  font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.row-step h3 { font-size: 1rem; margin-bottom: 8px; }
.row-step p { font-size: .84rem; color: var(--txt-d); margin: 0; }

/* Slots */
.row-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.row-slot-card {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.row-slot-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(2,132,199,.35);
}
.cv-1  { background: linear-gradient(135deg, #001a2a 0%, #0284c7 100%) }
.cv-2  { background: linear-gradient(135deg, #001a2a 0%, #38bdf8 100%); color:#041a2a }
.cv-3  { background: linear-gradient(135deg, #001a14 0%, #059669 100%) }
.cv-4  { background: linear-gradient(135deg, #2a1a00 0%, #f59e0b 100%); color:#0a0d0a }
.cv-5  { background: linear-gradient(135deg, #2a0007 0%, #e11d48 100%) }
.cv-6  { background: linear-gradient(135deg, #1a001a 0%, #c026d3 100%) }
.cv-7  { background: linear-gradient(135deg, #001a0a 0%, #16a34a 100%) }
.cv-8  { background: linear-gradient(135deg, #2a2a00 0%, #fbbf24 100%); color:#0a0a0a }
.cv-9  { background: linear-gradient(135deg, #0a001a 0%, #9333ea 100%) }
.cv-10 { background: linear-gradient(135deg, #1a000a 0%, #f472b6 100%) }
.cv-11 { background: linear-gradient(135deg, #001a2a 0%, #0ea5e9 100%) }
.cv-12 { background: linear-gradient(135deg, #2a0007 0%, #fb7185 100%) }

.row-slot-name {
  font-family: "Jost", sans-serif;
  font-weight: 700; font-size: .92rem;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.row-slot-sub {
  font-size: .72rem;
  opacity: .85;
  margin-top: 3px;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}
.row-slot-rtp {
  position: absolute; top: 10px; right: 10px;
  background: rgba(0,0,0,.55);
  border-radius: 6px;
  padding: 3px 7px;
  font-size: .7rem;
  font-weight: 600;
  color: var(--good);
}
.row-slot-mech {
  position: absolute; top: 10px; left: 10px;
  background: rgba(2,132,199,.75);
  border-radius: 6px;
  padding: 3px 7px;
  font-size: .68rem;
  font-weight: 600;
  color: #fff;
}

.row-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.row-prov-tag {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 11px;
  font-size: .75rem;
  color: var(--txt-d);
  font-weight: 500;
}
.row-prov-tag.more {
  background: rgba(2,132,199,.12);
  border-color: rgba(2,132,199,.3);
  color: var(--acc-2);
  font-weight: 600;
}

/* VIP Loyalty */
.row-vip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}
.row-vip-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.row-vip-card:hover {
  border-color: var(--acc);
  transform: translateY(-2px);
}
.row-vip-card.top-tier {
  border-color: rgba(56,189,248,.5);
  background: linear-gradient(160deg, rgba(2,132,199,.12) 0%, var(--bg-2) 60%);
}
.row-vip-level {
  font-family: "Jost", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--acc-2);
  margin-bottom: 6px;
}
.row-vip-pct {
  font-family: "Jost", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--txt);
  line-height: 1;
  margin-bottom: 6px;
}
.row-vip-thresh {
  font-size: .73rem;
  color: var(--txt-dd);
}
.row-vip-badge {
  position: absolute; top: 8px; right: 8px;
  background: rgba(2,132,199,.2);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: .65rem;
  color: var(--acc-2);
  font-weight: 600;
}

.row-lbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.row-lbox {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px 18px;
}
.row-lbox h3 { font-size: .95rem; margin-bottom: 8px; }
.row-lbox p { font-size: .82rem; color: var(--txt-d); margin: 0; }

/* Tournament */
.row-tourn {
  background: linear-gradient(135deg, rgba(2,132,199,.14) 0%, rgba(56,189,248,.06) 100%);
  border: 1px solid rgba(2,132,199,.35);
  border-radius: var(--r);
  padding: 32px 28px;
}
.row-tourn-nums {
  display: flex; gap: 32px; flex-wrap: wrap; margin: 20px 0;
}
.row-tourn-num { text-align: center; }
.row-tourn-val {
  font-family: "Jost", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--acc-2);
  display: block;
}
.row-tourn-lbl { font-size: .77rem; color: var(--txt-d); }

/* Live */
.row-live-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.row-live-card {
  border-radius: var(--r);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.row-live-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(2,132,199,.35);
}
.lv-1 { background: linear-gradient(135deg, #001a2a 0%, #0284c7 100%) }
.lv-2 { background: linear-gradient(135deg, #2a1a00 0%, #f59e0b 100%); color:#0a0d0a }
.lv-3 { background: linear-gradient(135deg, #001a14 0%, #059669 100%) }
.lv-4 { background: linear-gradient(135deg, #2a0007 0%, #e11d48 100%) }
.lv-5 { background: linear-gradient(135deg, #001a2a 0%, #38bdf8 100%); color:#041a2a }
.lv-6 { background: linear-gradient(135deg, #1a001a 0%, #c026d3 100%) }

.row-live-name {
  font-family: "Jost", sans-serif;
  font-weight: 700; font-size: .92rem;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.row-live-sub {
  font-size: .72rem;
  opacity: .85;
  margin-top: 3px;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}
.row-live-dot {
  position: absolute; top: 10px; left: 10px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: row-pulse 2s infinite;
}
.row-live-cnt {
  position: absolute; top: 8px; right: 10px;
  background: rgba(0,0,0,.55);
  border-radius: 6px;
  padding: 3px 7px;
  font-size: .7rem;
  color: var(--good);
  font-weight: 600;
}

/* Brand overview */
.row-brand-lead {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 24px;
  margin-bottom: 28px;
  font-size: .92rem;
  color: var(--txt-d);
  line-height: 1.7;
}
.row-brand-art h3 { color: var(--acc-2); margin-top: 28px; }
.row-brand-art p { font-size: .88rem; color: var(--txt-d); line-height: 1.72; }

.row-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px;
}
.row-badge {
  display: flex; align-items: center; gap: 6px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  padding: 7px 13px;
  font-size: .78rem;
  color: var(--txt-d);
  font-weight: 500;
}
.row-badge-ico { font-size: .9rem; }

/* Reviews */
.row-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.row-review {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 20px;
}
.row-review-stars { color: #fbbf24; font-size: .9rem; margin-bottom: 10px; }
.row-review-text { font-size: .85rem; color: var(--txt-d); line-height: 1.65; margin-bottom: 14px; }
.row-review-author { font-size: .78rem; color: var(--txt-dd); }
.row-review-author span { color: var(--acc-2); font-weight: 600; }

/* Payments */
.row-pay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.row-pay-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px 18px;
  text-align: center;
}
.row-pay-name {
  font-family: "Jost", sans-serif;
  font-weight: 600; font-size: 1rem;
  color: var(--txt);
  margin-bottom: 6px;
}
.row-pay-time {
  font-size: .82rem;
  color: var(--good);
  font-weight: 600;
  margin-bottom: 4px;
}
.row-pay-min { font-size: .75rem; color: var(--txt-dd); }

/* FAQ */
.row-faq { display: flex; flex-direction: column; gap: 10px; }
.row-faq details {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.row-faq details[open] { border-color: var(--acc); }
.row-faq summary {
  padding: 17px 20px;
  font-family: "Jost", sans-serif;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--txt);
  transition: color .2s;
}
.row-faq summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--acc-2);
  flex-shrink: 0;
  transition: transform .2s;
}
.row-faq details[open] summary::after { transform: rotate(45deg); }
.row-faq summary:hover { color: var(--acc-2); }
.row-faq-body {
  padding: 0 20px 17px;
  font-size: .86rem;
  color: var(--txt-d);
  line-height: 1.7;
}

/* Pre-footer CTA */
.row-prefooter {
  background: linear-gradient(135deg, rgba(2,132,199,.14) 0%, rgba(56,189,248,.06) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 60px 0;
}
.row-prefooter h2 { margin-bottom: 12px; }
.row-prefooter p { color: var(--txt-d); margin-bottom: 28px; font-size: .95rem; }
.row-prefooter-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Author note */
.row-author {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px 22px;
  font-size: .78rem;
  color: var(--txt-dd);
  line-height: 1.65;
  margin-top: 40px;
}

/* Footer */
.row-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 32px 0 24px;
  font-size: .78rem;
  color: var(--txt-dd);
  text-align: center;
  line-height: 1.8;
}
.row-footer-links {
  display: flex; gap: 20px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}
.row-footer-links a { color: var(--txt-dd); }
.row-footer-links a:hover { color: var(--acc-2); }
.row-footer-copy { margin-top: 10px; }

/* Section label */
.row-sec-label {
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--acc);
  font-weight: 600;
  margin-bottom: 8px;
}

/* Divider */
.row-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 0;
}

/* Alt bg sections */
.row-bg-alt { background: var(--bg-2); }

/* Responsive */
@media (max-width: 760px) {
  .row-nav-links { display: none; }
  .row-hero { padding: 52px 0 48px; }
  .row-section { padding: 48px 0; }
  .row-wbox-total { flex-direction: column; }
  .row-tourn-nums { gap: 20px; }
}
