/* ============================================================
   Boomerang Casino — satellite site styles
   Prefix: .bmr-   |  Mobile-first  |  BP: 480 768 1024 1280
   ============================================================ */

:root {
  /* Brand colors */
  --bmr-bg:        #0D0D0F;
  --bmr-bg-2:      #16161A;
  --bmr-bg-3:      #1E1E24;
  --bmr-bg-4:      #26262E;
  --bmr-gold:      #F5C518;
  --bmr-gold-2:    #FFD23F;
  --bmr-gold-deep: #D9A800;
  --bmr-red:       #E63950;
  --bmr-blue:      #3B4CCA;
  --bmr-text:      #FFFFFF;
  --bmr-muted:     #A0A0A8;
  --bmr-muted-2:   #6E6E78;
  --bmr-border:    rgba(255, 255, 255, 0.08);
  --bmr-border-2:  rgba(255, 255, 255, 0.14);

  /* Shape */
  --bmr-r-pill:    28px;
  --bmr-r-btn:     22px;
  --bmr-r-card:    16px;
  --bmr-r-chip:    24px;

  /* Layout */
  --bmr-header-h:  66px;
  --bmr-max:       1280px;

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

  /* Motion */
  --bmr-ease: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--bmr-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--bmr-text);
  background: var(--bmr-bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

/* ---------- Utilities ---------- */
.bmr-wrap {
  width: 100%;
  max-width: var(--bmr-max);
  margin: 0 auto;
  padding: 0 16px;
}
.bmr-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bmr-gold);
}

/* ---------- Buttons ---------- */
.bmr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 26px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border: 0;
  border-radius: var(--bmr-r-btn);
  cursor: pointer;
  transition: transform var(--bmr-ease), box-shadow var(--bmr-ease),
              background var(--bmr-ease), color var(--bmr-ease);
}
.bmr-btn--gold {
  color: #1A1206;
  background: linear-gradient(180deg, var(--bmr-gold-2), var(--bmr-gold));
  box-shadow: 0 6px 18px rgba(245, 197, 24, 0.28);
}
.bmr-btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(245, 197, 24, 0.42);
}
.bmr-btn--ghost {
  color: var(--bmr-text);
  background: var(--bmr-bg-3);
  border: 1px solid var(--bmr-border-2);
}
.bmr-btn--ghost:hover {
  background: var(--bmr-bg-4);
  border-color: var(--bmr-gold);
}
.bmr-btn--lg {
  min-height: 56px;
  padding: 16px 40px;
  font-size: 18px;
  border-radius: var(--bmr-r-pill);
}

/* ============================================================
   HEADER
   ============================================================ */
.bmr-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--bmr-header-h);
  background: rgba(13, 13, 15, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--bmr-border);
}
.bmr-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.bmr-logo { display: flex; align-items: center; }
.bmr-logo img { height: 40px; width: auto; }

.bmr-nav { display: none; }
.bmr-nav__list { display: flex; align-items: center; gap: 28px; }
.bmr-nav__link {
  font-size: 15px;
  font-weight: 600;
  color: var(--bmr-text);
  position: relative;
  padding: 6px 0;
  transition: color var(--bmr-ease);
}
.bmr-nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--bmr-gold);
  transition: width var(--bmr-ease);
}
.bmr-nav__link:hover { color: var(--bmr-gold); }
.bmr-nav__link:hover::after { width: 100%; }

.bmr-header__actions { display: flex; align-items: center; gap: 10px; }
.bmr-header__actions .bmr-btn { min-height: 40px; padding: 8px 18px; font-size: 14px; }

.bmr-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 44px; height: 44px;
  padding: 0;
  background: var(--bmr-bg-3);
  border: 1px solid var(--bmr-border-2);
  border-radius: 12px;
  cursor: pointer;
}
.bmr-burger span {
  display: block;
  width: 18px; height: 2px;
  margin: 0 auto;
  background: var(--bmr-gold);
  border-radius: 2px;
}

/* ============================================================
   HERO
   ============================================================ */
.bmr-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(59, 76, 202, 0.22), transparent 55%),
    radial-gradient(110% 80% at 0% 0%, rgba(230, 57, 80, 0.18), transparent 50%),
    var(--bmr-bg);
  border-bottom: 1px solid var(--bmr-border);
}
.bmr-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-top: 40px;
  padding-bottom: 40px;
  align-items: center;
}
.bmr-hero__copy { max-width: 640px; }
.bmr-hero__offer {
  font-size: clamp(34px, 9vw, 62px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 14px 0 18px;
}
.bmr-hero__offer .bmr-amt { color: var(--bmr-gold); }
.bmr-hero__offer .bmr-fs  {
  color: var(--bmr-text);
  -webkit-text-stroke: 1px rgba(255,255,255,0.5);
}
.bmr-hero__title {
  font-size: clamp(20px, 4.4vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 14px;
}
.bmr-hero__subtitle {
  font-size: 16px;
  color: var(--bmr-muted);
  margin-bottom: 26px;
}
.bmr-hero__media {
  position: relative;
  min-height: 220px;
  border-radius: var(--bmr-r-card);
}
.bmr-hero__img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border-radius: var(--bmr-r-card);
  border: 1px solid var(--bmr-border);
}

/* ---------- Category chips ---------- */
.bmr-chips {
  background: var(--bmr-bg);
  border-bottom: 1px solid var(--bmr-border);
  padding: 16px 0;
}
.bmr-chips__row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.bmr-chips__row::-webkit-scrollbar { display: none; }
.bmr-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  color: var(--bmr-text);
  background: var(--bmr-bg-2);
  border: 1px solid var(--bmr-border);
  border-radius: var(--bmr-r-chip);
  cursor: pointer;
  transition: border-color var(--bmr-ease), background var(--bmr-ease), transform var(--bmr-ease);
}
.bmr-chip::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bmr-gold);
}
.bmr-chip:hover { border-color: var(--bmr-gold); transform: translateY(-1px); }
.bmr-chip--search {
  margin-left: auto;
  flex: 0 0 auto;
  position: relative;
}
.bmr-chip--search::before { display: none; }
.bmr-search {
  display: flex;
  align-items: center;
  background: var(--bmr-bg-2);
  border: 1px solid var(--bmr-border);
  border-radius: var(--bmr-r-chip);
  overflow: hidden;
  min-height: 44px;
}
.bmr-search input {
  flex: 1;
  min-width: 120px;
  border: 0;
  background: transparent;
  color: var(--bmr-text);
  font-family: inherit;
  font-size: 14px;
  padding: 0 14px;
  outline: none;
}
.bmr-search input::placeholder { color: var(--bmr-muted-2); }
.bmr-search button {
  width: 44px; height: 44px;
  border: 0;
  cursor: pointer;
  color: #1A1206;
  font-weight: 800;
  background: linear-gradient(180deg, var(--bmr-gold-2), var(--bmr-gold));
}

/* ============================================================
   MAIN CONTENT
   ============================================================ */
.bmr-main { padding: 40px 0 20px; }
.bmr-intro {
  max-width: 820px;
  margin: 0 auto 8px;
}
.bmr-intro p { color: var(--bmr-muted); margin-bottom: 16px; font-size: 16px; }
.bmr-intro p:first-child { color: var(--bmr-text); font-size: 18px; }

.bmr-section { padding: 30px 0; border-top: 1px solid var(--bmr-border); }
.bmr-section:first-of-type { border-top: 0; }
.bmr-section__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.bmr-section__head::before {
  content: "";
  flex: 0 0 auto;
  width: 6px; height: 28px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--bmr-gold-2), var(--bmr-red));
}
.bmr-section h2 {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  line-height: 1.2;
}
.bmr-section p { color: var(--bmr-muted); margin-bottom: 16px; }
.bmr-section p:last-child { margin-bottom: 0; }

/* Lists */
.bmr-list { display: grid; gap: 10px; margin: 6px 0 18px; }
.bmr-list li {
  position: relative;
  padding: 12px 16px 12px 42px;
  background: var(--bmr-bg-2);
  border: 1px solid var(--bmr-border);
  border-radius: 12px;
  color: var(--bmr-text);
  font-size: 15px;
}
.bmr-list li::before {
  content: "";
  position: absolute;
  left: 16px; top: 50%;
  transform: translateY(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--bmr-gold);
  box-shadow: 0 0 0 4px rgba(245, 197, 24, 0.16);
}

/* Tables */
.bmr-tablewrap { overflow-x: auto; margin: 6px 0 18px; border-radius: var(--bmr-r-card); }
.bmr-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
  background: var(--bmr-bg-2);
  border: 1px solid var(--bmr-border);
  border-radius: var(--bmr-r-card);
  overflow: hidden;
}
.bmr-table thead th {
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1A1206;
  background: linear-gradient(180deg, var(--bmr-gold-2), var(--bmr-gold));
  padding: 12px 16px;
}
.bmr-table tbody td {
  padding: 13px 16px;
  font-size: 15px;
  color: var(--bmr-text);
  border-top: 1px solid var(--bmr-border);
}
.bmr-table tbody td:first-child { color: var(--bmr-muted); font-weight: 600; }
.bmr-table tbody tr:nth-child(even) { background: rgba(255,255,255,0.02); }

/* ---------- Media placeholders ---------- */
.bmr-media {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 220px;
  margin: 6px 0 20px;
  padding: 20px;
  color: var(--bmr-muted);
  background:
    repeating-linear-gradient(45deg, rgba(245,197,24,0.05) 0 14px, transparent 14px 28px),
    var(--bmr-bg-3);
  border: 2px dashed var(--bmr-border-2);
  border-radius: var(--bmr-r-card);
}
.bmr-media__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--bmr-gold);
  word-break: break-all;
}
.bmr-media__note { display: block; font-size: 12px; color: var(--bmr-muted-2); margin-top: 6px; letter-spacing: 0; }
.bmr-media--hero { min-height: 280px; margin: 0; }

/* ---------- Screenshots ---------- */
.bmr-shot {
  margin: 6px 0 20px;
  border-radius: var(--bmr-r-card);
  overflow: hidden;
  border: 1px solid var(--bmr-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.bmr-shot img { width: 100%; display: block; }

/* ---------- Payment icons ---------- */
.bmr-pays {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 6px 0 20px;
}
.bmr-pay {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 12px 16px;
  background: var(--bmr-bg-2);
  border: 1px solid var(--bmr-border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--bmr-ease), box-shadow var(--bmr-ease), border-color var(--bmr-ease);
}
.bmr-pay img { max-height: 44px; width: auto; object-fit: contain; }
.bmr-pay:hover { transform: translateY(-2px); border-color: var(--bmr-gold); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); }

/* ---------- Game cards ---------- */
.bmr-games {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 6px 0 20px;
}
.bmr-game {
  margin: 0;
  background: var(--bmr-bg-2);
  border: 1px solid var(--bmr-border);
  border-radius: var(--bmr-r-card);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--bmr-ease), border-color var(--bmr-ease), box-shadow var(--bmr-ease);
}
.bmr-game img {
  width: 100%;
  aspect-ratio: 281 / 180;
  object-fit: cover;
}
.bmr-game figcaption {
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--bmr-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bmr-game:hover {
  transform: translateY(-3px);
  border-color: var(--bmr-gold);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   FAQ
   ============================================================ */
.bmr-faq { padding: 30px 0 10px; border-top: 1px solid var(--bmr-border); }
.bmr-faq h2 {
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 800;
  margin-bottom: 20px;
}
.bmr-faq__item {
  background: var(--bmr-bg-2);
  border: 1px solid var(--bmr-border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.bmr-faq__item > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 700;
  color: var(--bmr-text);
  transition: color var(--bmr-ease);
}
.bmr-faq__item > summary::-webkit-details-marker { display: none; }
.bmr-faq__item > summary::after {
  content: "+";
  flex: 0 0 auto;
  font-size: 24px;
  font-weight: 400;
  color: var(--bmr-gold);
  transition: transform var(--bmr-ease);
}
.bmr-faq__item[open] > summary::after { transform: rotate(45deg); }
.bmr-faq__item:hover > summary { color: var(--bmr-gold); }
.bmr-faq__answer {
  padding: 0 20px 18px;
  color: var(--bmr-muted);
  font-size: 15px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.bmr-footer {
  background: var(--bmr-bg-2);
  border-top: 1px solid var(--bmr-border);
  padding: 40px 0 28px;
  margin-top: 30px;
}
.bmr-footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-bottom: 28px;
}
.bmr-footer__logo img { height: 44px; margin-bottom: 14px; }
.bmr-footer__about { color: var(--bmr-muted); font-size: 14px; max-width: 420px; }
.bmr-footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bmr-muted);
  margin-bottom: 14px;
}
.bmr-footer__links { display: grid; gap: 10px; }
.bmr-footer__links a {
  color: var(--bmr-text);
  font-size: 15px;
  transition: color var(--bmr-ease);
}
.bmr-footer__links a:hover { color: var(--bmr-gold); }

.bmr-footer__rg {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bmr-bg-3);
  border: 1px solid var(--bmr-border);
  border-radius: 12px;
  margin-bottom: 22px;
}
.bmr-age {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  font-size: 15px;
  font-weight: 800;
  color: var(--bmr-text);
  border: 2px solid var(--bmr-red);
  border-radius: 50%;
}
.bmr-footer__rg p { font-size: 13px; color: var(--bmr-muted); }
.bmr-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 20px;
  border-top: 1px solid var(--bmr-border);
  font-size: 13px;
  color: var(--bmr-muted-2);
}

/* ============================================================
   BREAKPOINTS
   ============================================================ */
@media (min-width: 480px) {
  .bmr-wrap { padding: 0 20px; }
  .bmr-footer__top { grid-template-columns: 1fr 1fr; }
  .bmr-games { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 768px) {
  .bmr-hero__inner { padding-top: 56px; padding-bottom: 56px; }
  .bmr-hero__media { min-height: 320px; }
  .bmr-footer__top { grid-template-columns: 2fr 1fr 1fr; }
  .bmr-media { min-height: 280px; }
  .bmr-games { grid-template-columns: repeat(3, 1fr); }
  .bmr-pays { grid-template-columns: repeat(6, 1fr); }
}

@media (min-width: 1024px) {
  .bmr-nav { display: block; }
  .bmr-burger { display: none; }
  .bmr-games { grid-template-columns: repeat(6, 1fr); }
  .bmr-hero__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .bmr-hero__media { min-height: 380px; }
}

@media (min-width: 1280px) {
  .bmr-hero__inner { gap: 56px; }
}
