/*
  BlackMint Casino (Site #3)
  - Solid background only (NO gradients) per request
  - No external libs/fonts
  - Main: rgb(11 12 13)
  - Accent: #BBEB00
  - Container max: 1440px
  - Unique classes (bm-*)
*/
:root{
  --bm-bg: rgb(11 12 13);
  --bm-ac: #BBEB00;
  --bm-t: rgba(255,255,255,.92);
  --bm-m: rgba(255,255,255,.70);
  --bm-b: rgba(255,255,255,.04);
  --bm-l: rgba(187,235,0,.30);
  --bm-w: 1440px;
  --bm-r1: 16px;
  --bm-r2: 24px;
  --bm-sh: 0 16px 44px rgba(0,0,0,.62);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
.bm-body{
  margin: 0;
  background: var(--bm-bg);
  color: var(--bm-t);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.45;
}

:focus-visible{ outline: 2px solid var(--bm-ac); outline-offset: 3px; }

.bm-skip{
  position: absolute;
  top: 10px; left: -9999px;
  background: var(--bm-ac);
  color: #0b0c0d;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 900;
  z-index: 9999;
}
.bm-skip:focus{ left: 10px; }

.bm-frame{
  width: min(var(--bm-w), calc(100% - 32px));
  margin: 0 auto;
}

/* header */
.bm-head{
  position: sticky;
  top: 0;
  z-index: 2300;
  background: rgba(11,12,13,.92);
  border-bottom: 1px solid rgba(187,235,0,.18);
}
.bm-head__in{
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.bm-mark{
  display: inline-flex;
  gap: 12px;
  align-items: center;
  user-select: none;
}
.bm-mark__cube{
  width: 40px; height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(187,235,0,.55);
  background: rgba(255,255,255,.03);
  box-shadow: 0 18px 40px rgba(187,235,0,.10);
  position: relative;
}
.bm-mark__cube::after{
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 10px;
  border: 1px dashed rgba(187,235,0,.35);
}
.bm-mark__name{ font-weight: 950; letter-spacing: .5px; font-size: 18px; }
.bm-mark__cap{ font-size: 12px; color: var(--bm-m); letter-spacing: .22em; text-transform: uppercase; margin-top: 2px; }

.bm-nav{ display: flex; align-items: center; gap: 10px; }
.bm-act{
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: .1px;
  background: var(--bm-ac);
  color: #0b0c0d;
  border: 1px solid rgba(187,235,0,.85);
  transition: transform .12s ease, filter .12s ease;
  white-space: nowrap;
}
.bm-act:hover{ transform: translateY(-1px); filter: brightness(1.03); }
.bm-act:active{ transform: translateY(0); filter: brightness(.98); }
.bm-act--hollow{
  background: transparent;
  color: var(--bm-t);
  border-color: rgba(187,235,0,.35);
}
.bm-act--soft{
  background: rgba(255,255,255,.04);
  color: var(--bm-t);
  border-color: rgba(187,235,0,.22);
}

.bm-menu{
  display: none;
  width: 46px; height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(187,235,0,.22);
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.bm-menu__line{
  display: block;
  width: 18px; height: 2px;
  background: rgba(255,255,255,.86);
  margin: 4px auto;
  border-radius: 99px;
}

/* dropdown */
.bm-drop{
  border-top: 1px solid rgba(187,235,0,.12);
  background: rgba(11,12,13,.96);
}
.bm-drop__in{
  padding: 12px 0 16px;
  display: grid;
  gap: 10px;
}
.bm-drop__a{
  text-decoration: none;
  color: var(--bm-t);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(187,235,0,.16);
  background: rgba(255,255,255,.03);
}
.bm-drop__hr{ height: 1px; background: rgba(255,255,255,.08); margin: 6px 0; }

/* hero */
.bm-hero{ padding: 16px 0 4px; }
.bm-banner{
  border-radius: 28px;
  border: 1px solid rgba(187,235,0,.20);
  background: rgba(255,255,255,.03);
  box-shadow: var(--bm-sh);
  overflow: hidden;
  position: relative;
}
.bm-banner__view{
  position: relative;
  height: clamp(290px, 38vw, 420px);
}
.bm-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .30s ease, transform .30s ease;
  padding: clamp(18px, 3vw, 34px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: center;
}
.bm-slide.is-on{
  opacity: 1;
  transform: translateY(0);
}
.bm-k{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,.72);
}
.bm-k::before{
  content: "";
  width: 14px; height: 14px;
  border-radius: 6px;
  background: var(--bm-ac);
}
.bm-h1{
  margin: 10px 0 10px;
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 1.06;
}
.bm-lead{
  margin: 0;
  color: rgba(255,255,255,.76);
  max-width: 62ch;
}
.bm-acts{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bm-btn{
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: .1px;
  background: var(--bm-ac);
  color: #0b0c0d;
  border: 1px solid rgba(187,235,0,.85);
  transition: transform .12s ease, filter .12s ease;
}
.bm-btn:hover{ transform: translateY(-1px); filter: brightness(1.03); }
.bm-btn:active{ transform: translateY(0); filter: brightness(.98); }
.bm-btn--line{
  background: transparent;
  color: var(--bm-t);
  border-color: rgba(187,235,0,.35);
}

/* right side visual placeholder, still no gradients */
.bm-plate{
  width: min(360px, 92%);
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  border: 1px solid rgba(187,235,0,.22);
  background: rgba(255,255,255,.02);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.55);
  
}
.bm-plate::before{
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 22px;
  border: 1px dashed rgba(187,235,0,.35);
  /* чтобы фон-картинка нормально ложилась */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/banner-3.png");
}

.bm-plate__cap{
  position: absolute;
  left: 16px; right: 16px; bottom: 16px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(187,235,0,.16);
  background: rgba(11,12,13,.78);
}
.bm-plate__t{ font-weight: 950; letter-spacing: .2px; }
.bm-plate__s{ margin-top: 4px; color: rgba(255,255,255,.70); font-size: 13px; }

/* dock */
.bm-banner__dock{
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 10;
}
.bm-pips{ display: inline-flex; gap: 8px; align-items: center; justify-content: center; flex: 1; }
.bm-pip{
  width: 10px; height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(187,235,0,.35);
  background: rgba(255,255,255,.06);
  cursor: pointer;
  transition: transform .12s ease, background .12s ease;
}
.bm-pip.is-on{ background: var(--bm-ac); transform: scale(1.1); }
.bm-keys{ display: inline-flex; gap: 10px; }
.bm-key{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(187,235,0,.22);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.90);
  cursor: pointer;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  transition: transform .12s ease, border-color .12s ease, background .12s ease;
}
.bm-key:hover{ transform: translateY(-1px); border-color: rgba(187,235,0,.35); background: rgba(255,255,255,.06); }
.bm-key:active{ transform: translateY(0); }

/* section titles */
.bm-title{ display: grid; gap: 8px; margin: 16px 0 12px; }
.bm-h2{ margin: 0; font-size: clamp(22px, 2.2vw, 30px); letter-spacing: .2px; }
.bm-sub{ margin: 0; color: var(--bm-m); }
.bm-sub code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  padding: 2px 6px;
  border-radius: 10px;
}

/* slots grid */
.bm-slots{ padding: 6px 0 0; }
.bm-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.bm-slot{
  text-decoration: none;
  color: var(--bm-t);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(187,235,0,.14);
  border-radius: 22px;
  padding: 12px;
  display: grid;
  gap: 10px;
  box-shadow: 0 10px 26px rgba(0,0,0,.36);
  transition: transform .14s ease, border-color .14s ease, background .14s ease;
  min-height: 176px;
}
.bm-slot:hover{
  transform: translateY(-2px);
  border-color: rgba(187,235,0,.30);
  background: rgba(187,235,0,.05);
}
.bm-slot__img{
  border-radius: 18px;
  border: 1px dashed rgba(187,235,0,.26);
  background: rgba(255,255,255,.02);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bm-ph{
  font-weight: 950;
  letter-spacing: .18em;
  font-size: 12px;
  color: rgba(255,255,255,.55);
}
.bm-slot__bar{ display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.bm-slot__nm{ font-weight: 950; }
.bm-tag{
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(187,235,0,.20);
  background: rgba(255,255,255,.02);
  color: rgba(255,255,255,.78);
}

.bm-slot:nth-child(1) .bm-slot__img { background-image: url("../images/slot-1.webp"); }
.bm-slot:nth-child(2) .bm-slot__img { background-image: url("../images/slot-2.webp"); }
.bm-slot:nth-child(3) .bm-slot__img { background-image: url("../images/slot-3.webp"); }
.bm-slot:nth-child(4) .bm-slot__img { background-image: url("../images/slot-4.webp"); }
.bm-slot:nth-child(5) .bm-slot__img { background-image: url("../images/slot-5.webp"); }
.bm-slot:nth-child(6) .bm-slot__img { background-image: url("../images/slot-6.webp"); }
.bm-slot:nth-child(7) .bm-slot__img { background-image: url("../images/slot-7.webp"); }
.bm-slot:nth-child(8) .bm-slot__img { background-image: url("../images/slot-8.webp"); }
/* content */
.bm-content{ padding: 6px 0 0; }
.bm
  border-radius: 28px;
  border: 1px solid rgba(187,235,0,.14);
  background: rgba(255,255,255,.02);
  box-shadow: 0 10px 26px rgba(0,0,0,.32);
  padding: clamp(16px, 2.6vw, 26px);
  min-height: 160px;
}

/* prepared prose styles */
.bm-prose :is(h2,h3,h4){ margin: 18px 0 10px; line-height: 1.12; }
.bm-prose h3{ font-size: 18px; color: rgba(255,255,255,.90); }
.bm-prose p{ margin: 10px 0; color: rgba(255,255,255,.78); }
.bm-prose a{ color: var(--bm-ac); text-decoration: none; border-bottom: 1px dashed rgba(187,235,0,.45); }
.bm-prose a:hover{ border-bottom-style: solid; }
.bm-prose ul, .bm-prose ol{ margin: 10px 0 10px 18px; color: rgba(255,255,255,.78); }
.bm-prose li{ margin: 6px 0; }
.bm-prose img{ max-width: 100%; height: auto; border-radius: 18px; border: 1px solid rgba(187,235,0,.14); }
.bm-prose blockquote{
  margin: 14px 0;
  padding: 12px 14px;
  border-left: 3px solid var(--bm-ac);
  border-radius: 16px;
  background: rgba(187,235,0,.05);
  color: rgba(255,255,255,.82);
}
.bm-prose table{
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(187,235,0,.16);
}
.bm-prose thead th{
  text-align: left;
  font-weight: 950;
  background: rgba(187,235,0,.10);
}
.bm-prose th, .bm-prose td{
  padding: 12px 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  vertical-align: top;
}
.bm-prose tbody tr:hover td{ background: rgba(255,255,255,.02); }
.bm-prose code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  padding: 2px 6px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

/* footer */
.bm-foot{ margin-top: 20px; padding: 18px 0 26px; border-top: 1px solid rgba(187,235,0,.14); }
.bm-foot__in{ display: grid; gap: 14px; }
.bm-foot__grid{
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 14px;
}
.bm-foot__brand{ display: inline-flex; gap: 12px; align-items: center; }
.bm-foot__name{ font-weight: 950; letter-spacing: .3px; }
.bm-foot__muted{ color: rgba(255,255,255,.62); font-size: 13px; margin-top: 2px; }
.bm-foot__txt{ margin: 10px 0 0; color: rgba(255,255,255,.68); max-width: 62ch; font-size: 14px; }

.bm-foot__ttl{
  font-weight: 950;
  letter-spacing: .20em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,.80);
  margin-bottom: 8px;
}
.bm-foot__a{
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,.80);
  padding: 8px 10px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.02);
  margin: 8px 0;
}
.bm-foot__a:hover{ border-color: rgba(187,235,0,.25); background: rgba(187,235,0,.05); }

.bm-sponsors{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.bm-sponsor{
  height: 44px;
  border-radius: 14px;
  border: 1px dashed rgba(187,235,0,.22);
  background: rgba(255,255,255,.02);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  font-weight: 950;
  letter-spacing: .14em;
  font-size: 11px;
}
.bm-foot__bar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,.60);
  font-size: 13px;
  padding-top: 8px;
}
.bm-foot__mini{
  color: rgba(255,255,255,.78);
  text-decoration: none;
  border-bottom: 1px dashed rgba(187,235,0,.35);
}
.bm-foot__mini:hover{ border-bottom-style: solid; }

/* responsive */
@media (max-width: 920px){
  .bm-nav{ display: none; }
  .bm-menu{ display: inline-flex; }
  .bm-slide{ grid-template-columns: 1fr; }
  .bm-slide__right{ display: none; }
  .bm-grid{ grid-template-columns: repeat(2, 1fr); }
  .bm-foot__grid{ grid-template-columns: 1fr; }
}
@media (max-width: 520px){
  .bm-frame{ width: calc(100% - 24px); }
  .bm-grid{ grid-template-columns: 1fr; }
  .bm-banner__view{ height: 330px; }
}
