/* ============================================================
   Roobet satellite — style.css
   Prefix: rb-   |   Mobile-first
   Brand: dark navy bg, gold accent, Poppins
   ============================================================ */

:root {
  /* Brand colors */
  --rb-bg:          #0A0E1A;
  --rb-bg-2:        #121726;
  --rb-bg-3:        #1A2032;
  --rb-gold:        #E8B23A;
  --rb-gold-light:  #F5C95B;
  --rb-gold-dark:   #D9A441;
  --rb-text:        #FFFFFF;
  --rb-text-muted:  #9AA0AE;
  --rb-border:      rgba(255, 255, 255, 0.08);
  --rb-border-gold: rgba(232, 178, 58, 0.35);

  /* Shape */
  --rb-radius:      8px;
  --rb-radius-lg:   14px;
  --rb-header-h:    90px;

  /* Type */
  --rb-font: "Poppins", "Montserrat", system-ui, -apple-system, Segoe UI, sans-serif;

  /* Layout */
  --rb-max:   1200px;
  --rb-gutter: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--rb-font);
  font-size: 15px;
  line-height: 1.65;
  color: var(--rb-text);
  background:
    radial-gradient(1200px 600px at 70% -10%, rgba(232,178,58,0.07), transparent 60%),
    var(--rb-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1em; color: var(--rb-text-muted); }

.rb-container {
  width: 100%;
  max-width: var(--rb-max);
  margin-inline: auto;
  padding-inline: var(--rb-gutter);
}

/* ---------- Buttons ---------- */
.rb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: var(--rb-radius);
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.rb-btn--primary {
  background: linear-gradient(180deg, var(--rb-gold-light), var(--rb-gold-dark));
  color: #1A1303;
  box-shadow: 0 6px 18px rgba(232, 178, 58, 0.28);
}
.rb-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(232, 178, 58, 0.42);
}

.rb-btn--ghost {
  background: transparent;
  color: var(--rb-text);
  border-color: var(--rb-border);
}
.rb-btn--ghost:hover {
  border-color: var(--rb-border-gold);
  color: var(--rb-gold-light);
}

.rb-btn--lg { min-height: 52px; padding: 0 30px; font-size: 16px; }

/* ---------- Header ---------- */
.rb-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--rb-header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rb-border);
}
.rb-header__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: var(--rb-max);
  margin-inline: auto;
  padding-inline: var(--rb-gutter);
}
.rb-logo { display: flex; align-items: center; gap: 10px; flex: none; }
.rb-logo img { width: 42px; height: 42px; border-radius: 50%; }
.rb-logo__text {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.rb-logo__text b { color: var(--rb-gold); font-weight: 700; }

.rb-nav { display: none; gap: 22px; margin-left: 18px; }
.rb-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--rb-text-muted);
  transition: color 0.18s ease;
}
.rb-nav a:hover { color: var(--rb-gold-light); }

.rb-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex: none;
}

.rb-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--rb-border);
  border-radius: var(--rb-radius);
  background: transparent;
  cursor: pointer;
}
.rb-burger span { display: block; height: 2px; background: var(--rb-text); margin-inline: 10px; }

/* ---------- Hero ---------- */
.rb-hero { padding: 28px 0 18px; }
.rb-hero__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--rb-radius-lg);
  border: 1px solid var(--rb-border);
  background:
    radial-gradient(800px 400px at 85% 20%, rgba(124, 77, 219, 0.35), transparent 60%),
    linear-gradient(135deg, #1c1633, #0e1326 60%);
  display: block;
  min-height: 360px;
}
.rb-hero__content {
  position: relative;
  z-index: 2;
  padding: 32px 24px 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  min-height: inherit;
}
.rb-badge {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(232, 178, 58, 0.15);
  border: 1px solid var(--rb-border-gold);
  color: var(--rb-gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rb-hero h1 {
  font-size: clamp(30px, 7vw, 56px);
  max-width: 14ch;
}
.rb-hero__sub { font-size: clamp(15px, 2.4vw, 18px); max-width: 46ch; color: #d7dbe6; }

/* Hero media — full-bleed background behind the content */
.rb-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.rb-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,11,22,0.92) 0%, rgba(8,11,22,0.72) 38%, rgba(8,11,22,0.25) 70%, rgba(8,11,22,0.1) 100%);
}
.rb-hero__media > div { position: absolute; inset: 0; }
.rb-hero__media > div img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Media placeholders ---------- */
.rb-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  border-radius: var(--rb-radius-lg);
  border: 2px dashed var(--rb-border-gold);
  background:
    repeating-linear-gradient(45deg, rgba(232,178,58,0.05) 0 16px, transparent 16px 32px),
    var(--rb-bg-2);
  color: var(--rb-gold-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 18px;
  overflow: hidden;
}
.rb-media::before {
  content: "MEDIA";
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--rb-text-muted);
  opacity: 0.7;
}
.rb-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.rb-media:has(img) { min-height: 0; border: none; background: none; padding: 0; box-shadow: 0 10px 30px rgba(0,0,0,0.4); }
.rb-media:has(img)::before { display: none; }
.rb-media:has(img) img { position: static; width: 100%; height: auto; border-radius: var(--rb-radius-lg); }
.rb-media--strip { min-height: 150px; }
.rb-media--wide  { min-height: 240px; }

/* ---------- Games grid ---------- */
.rb-games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 8px 0 4px;
}
.rb-game {
  display: block;
  border-radius: var(--rb-radius);
  overflow: hidden;
  border: 1px solid var(--rb-border);
  background: var(--rb-bg-2);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.rb-game img { width: 100%; aspect-ratio: 2 / 3; object-fit: cover; }
.rb-game:hover {
  transform: translateY(-4px);
  border-color: var(--rb-border-gold);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

/* ---------- Payment logos ---------- */
.rb-paylogos {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 8px 0 4px;
  width: 100%;
}
.rb-paylogos div {
  flex: 1 1 0;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  overflow: hidden;
  background: transparent;
}
.rb-paylogos img { max-height: 100%; max-width: 100%; width: auto; object-fit: contain; display: block; }

/* ---------- Content list ---------- */
.rb-list { margin: 6px 0 18px; padding: 0; list-style: none; display: grid; gap: 10px; }
.rb-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: #d3d7e1;
}
.rb-list li::before {
  content: "";
  position: absolute;
  left: 4px; top: 9px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--rb-gold);
  transform: rotate(45deg);
}

/* ---------- Sections ---------- */
.rb-section { padding: 30px 0; }
.rb-section h2 { font-size: clamp(24px, 4.5vw, 38px); margin-bottom: 0.4em; }
.rb-section h3 { font-size: clamp(20px, 3.5vw, 28px); margin-top: 0.6em; }
.rb-lead { font-size: 16px; color: #c9cdd8; }

/* ---------- Feature pills ---------- */
.rb-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 22px 0 6px;
}
.rb-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--rb-radius);
  background: var(--rb-bg-2);
  border: 1px solid var(--rb-border);
}
.rb-feature__icon {
  flex: none;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: rgba(232,178,58,0.12);
  color: var(--rb-gold);
  font-size: 18px;
}
.rb-feature h4 { margin: 0 0 2px; font-size: 15px; font-weight: 600; }
.rb-feature p  { margin: 0; font-size: 13px; }

/* ---------- Stat chips ---------- */
.rb-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.rb-stat {
  padding: 18px 16px;
  border-radius: var(--rb-radius);
  background: linear-gradient(180deg, var(--rb-bg-3), var(--rb-bg-2));
  border: 1px solid var(--rb-border);
  text-align: center;
}
.rb-stat__num { font-size: 22px; font-weight: 700; color: var(--rb-gold-light); }
.rb-stat__lbl { font-size: 12px; color: var(--rb-text-muted); }

/* ---------- Tables ---------- */
.rb-table-wrap { overflow-x: auto; margin: 18px 0; border-radius: var(--rb-radius); border: 1px solid var(--rb-border); }
.rb-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.rb-table thead th {
  background: var(--rb-bg-3);
  color: var(--rb-gold-light);
  text-align: left;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 12px 16px;
}
.rb-table tbody td {
  padding: 12px 16px;
  font-size: 14px;
  color: #d3d7e1;
  border-top: 1px solid var(--rb-border);
}
.rb-table tbody tr:nth-child(even) td { background: rgba(255,255,255,0.02); }

/* ---------- Payments chips ---------- */
.rb-pay {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}
.rb-pay span {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--rb-bg-2);
  border: 1px solid var(--rb-border);
  font-size: 13px;
  font-weight: 500;
}

/* ---------- CTA band ---------- */
.rb-cta-band {
  text-align: center;
  padding: 36px 20px;
  margin: 24px 0;
  border-radius: var(--rb-radius-lg);
  background:
    radial-gradient(600px 300px at 50% 0%, rgba(232,178,58,0.12), transparent 70%),
    var(--rb-bg-2);
  border: 1px solid var(--rb-border);
}
.rb-cta-band h3 { font-size: clamp(20px, 4vw, 30px); }

/* ---------- FAQ ---------- */
.rb-faq details {
  border: 1px solid var(--rb-border);
  border-radius: var(--rb-radius);
  background: var(--rb-bg-2);
  margin-bottom: 10px;
  overflow: hidden;
}
.rb-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.rb-faq summary::-webkit-details-marker { display: none; }
.rb-faq summary::after { content: "+"; color: var(--rb-gold); font-size: 22px; line-height: 1; }
.rb-faq details[open] summary::after { content: "–"; }
.rb-faq details p { padding: 0 18px 16px; margin: 0; }

/* ---------- Footer ---------- */
.rb-footer {
  margin-top: 30px;
  border-top: 1px solid var(--rb-border);
  background: var(--rb-bg-2);
  padding: 34px 0 26px;
}
.rb-footer__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.rb-footer__links { display: flex; flex-wrap: wrap; gap: 16px 24px; }
.rb-footer__links a { font-size: 14px; color: var(--rb-text-muted); transition: color 0.18s ease; }
.rb-footer__links a:hover { color: var(--rb-gold-light); }
.rb-footer__legal { font-size: 12px; color: var(--rb-text-muted); line-height: 1.7; margin-top: 18px; }
.rb-footer__legal strong { color: #c9cdd8; }
.rb-footer__copy {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--rb-border);
  font-size: 13px;
  color: var(--rb-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  justify-content: space-between;
}
.rb-age {
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid var(--rb-text-muted);
  font-size: 11px; font-weight: 700;
}

/* ============================================================
   Breakpoints
   ============================================================ */
@media (min-width: 480px) {
  body { font-size: 15.5px; }
  .rb-stats { gap: 14px; }
}

@media (min-width: 768px) {
  :root { --rb-gutter: 24px; }
  .rb-hero__card { min-height: 440px; }
  .rb-hero__content { max-width: 620px; padding: 40px 40px 44px; }
  .rb-features { grid-template-columns: repeat(2, 1fr); }
  .rb-stats { grid-template-columns: repeat(4, 1fr); }
  .rb-games { grid-template-columns: repeat(3, 1fr); }
  .rb-footer__top { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .rb-nav { display: flex; }
  .rb-burger { display: none; }
  .rb-section { padding: 44px 0; }
  .rb-hero { padding: 36px 0 22px; }
  .rb-games { grid-template-columns: repeat(6, 1fr); }
}

@media (min-width: 1280px) {
  :root { --rb-gutter: 0px; }
  .rb-header__inner, .rb-container { padding-inline: 24px; }
}
