/* ==========================================================
   Melbet Mobil Türkiye Rehberi — CSS
   ========================================================== */
:root {
  --bg: #0F1923;
  --bg-2: #152332;
  --bg-3: #1c2c3e;
  --card: rgba(255,255,255,.04);
  --line: rgba(255,255,255,.10);
  --line-2: rgba(255,255,255,.06);
  --text: #ffffff;
  --text-2: rgba(255,255,255,.74);
  --text-3: rgba(255,255,255,.55);
  --accent: #FFC107;
  --accent-2: #ffb300;
  --green: #4caf50;
  --red: #e53935;
  --container: 1200px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-2); text-decoration: underline; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  color: var(--text);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.01em;
}
h1 { font-size: 32px; margin: 18px 0 16px; }
h2 { font-size: 24px; margin: 36px 0 14px; }
h3 { font-size: 19px; margin: 24px 0 10px; }
h4 { font-size: 16px; margin: 16px 0 8px; }
p { margin: 0 0 14px; color: var(--text-2); }
p strong { color: var(--text); }
table { border-collapse: collapse; width: 100%; }

.mb-visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.mb-skip-link {
  position: absolute; left: -9999px;
  background: var(--accent); color: var(--bg); padding: 8px 14px;
  border-radius: 4px; z-index: 1000;
}
.mb-skip-link:focus { left: 16px; top: 16px; }

/* ==========================================================
   HEADER
   ========================================================== */
.mb-header {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 14px rgba(0,0,0,.25);
}
.mb-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap;
}
.mb-header__logo {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text); text-decoration: none;
  font-weight: 700; font-size: 17px;
}
.mb-header__logo:hover { text-decoration: none; }
.mb-logo-img {
  width: 36px; height: 36px;
  border-radius: 8px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  flex-shrink: 0;
}
.mb-header__title { letter-spacing: -.01em; }
.mb-header__nav { margin-left: auto; }
.mb-header__nav-list {
  display: flex; gap: 22px;
  list-style: none;
}
.mb-header__nav-list a {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
  transition: color .2s;
}
.mb-header__nav-list a:hover { color: var(--accent); text-decoration: none; }
.mb-header__auth { display: inline-flex; gap: 8px; }
.mb-header__auth-btn {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  transition: all .2s;
}
.mb-header__auth-btn--login {
  color: var(--text);
  border: 1px solid var(--line);
}
.mb-header__auth-btn--login:hover { background: var(--card); }
.mb-header__auth-btn--signup {
  background: var(--accent);
  color: var(--bg);
}
.mb-header__auth-btn--signup:hover { background: var(--accent-2); }

/* ==========================================================
   MAIN
   ========================================================== */
.mb-main { padding: 24px 0 60px; }
.mb-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}
.mb-container--legal { max-width: 880px; }

/* ==========================================================
   HERO
   ========================================================== */
.mb-hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 24px 0 36px;
}
.mb-eyebrow {
  display: inline-block;
  background: rgba(255,193,7,.12);
  color: var(--accent);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.mb-hero__title {
  font-size: 36px;
  line-height: 1.15;
  margin: 0 0 14px;
}
.mb-hero__lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 22px;
}
.mb-hero__cta {
  display: flex; gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.mb-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600; font-size: 14px;
  letter-spacing: .3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
}
.mb-btn--primary { background: var(--accent); color: var(--bg); }
.mb-btn--primary:hover { background: var(--accent-2); transform: translateY(-1px); text-decoration: none; }
.mb-btn--ghost {
  color: var(--text);
  border-color: var(--line);
  background: transparent;
}
.mb-btn--ghost:hover { background: var(--card); text-decoration: none; }
.mb-hero__badges {
  display: flex; gap: 8px; flex-wrap: wrap;
  list-style: none;
}
.mb-hero__badges li {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-2);
}
.mb-hero__media img {
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(0,0,0,.4);
}

/* ==========================================================
   TOC
   ========================================================== */
.mb-toc {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
  margin: 0 0 32px;
}
.mb-toc__title {
  font-size: 17px;
  margin: 0 0 14px;
  color: var(--text);
}
.mb-toc__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 24px;
  margin: 0;
  padding-left: 18px;
  list-style: decimal;
  color: var(--text-3);
}
.mb-toc__list li::marker { color: var(--text-3); }
.mb-toc__list a {
  color: var(--text-2);
  font-size: 13.5px;
  text-decoration: none;
  padding: 3px 0;
  display: inline-block;
}
.mb-toc__list a:hover { color: var(--accent); }

/* ==========================================================
   SECTIONS
   ========================================================== */
.mb-section {
  padding: 12px 0 18px;
  border-top: 1px solid var(--line-2);
  margin-top: 22px;
}
.mb-section:first-of-type { border-top: 0; margin-top: 0; }
.mb-section h2 { color: var(--text); }
.mb-section ul:not([class]) {
  margin: 0 0 16px;
  padding-left: 20px;
  list-style: disc;
  color: var(--text-2);
}
.mb-section ul:not([class]) li { margin-bottom: 6px; }

/* ==========================================================
   FEATURE LIST
   ========================================================== */
.mb-feature-list, .mb-req-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
}
.mb-feature-list li, .mb-req-list li {
  padding: 10px 14px;
  background: var(--card);
  border-left: 3px solid var(--accent);
  border-radius: 0 6px 6px 0;
  margin-bottom: 8px;
  color: var(--text-2);
  font-size: 14px;
}
.mb-feature-list li strong, .mb-req-list li strong {
  color: var(--text);
  font-weight: 600;
}

/* ==========================================================
   TABLES
   ========================================================== */
.mb-table-wrap {
  overflow-x: auto;
  margin: 16px 0;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
.mb-table {
  width: 100%;
  font-size: 14px;
}
.mb-table th, .mb-table td {
  padding: 11px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line-2);
}
.mb-table th {
  background: var(--bg-3);
  color: var(--text);
  font-weight: 600;
  font-size: 13px;
}
.mb-table tbody tr:last-child td { border-bottom: 0; }
.mb-table tbody tr:hover { background: rgba(255,255,255,.02); }
.mb-table td { color: var(--text-2); }
.mb-table--specs th { width: 35%; }

/* ==========================================================
   STEPS
   ========================================================== */
.mb-steps {
  list-style: none;
  counter-reset: step;
  margin: 0; padding: 0;
}
.mb-steps > li {
  margin-bottom: 18px;
  padding: 16px 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.mb-steps h3 {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 16px;
}
.mb-steps img {
  border-radius: 6px;
  margin-top: 10px;
  max-width: 320px;
  border: 1px solid var(--line);
}

/* ==========================================================
   CARDS (account registration methods etc)
   ========================================================== */
.mb-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 16px 0;
}
.mb-card {
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
}
.mb-card h4 {
  margin: 0 0 6px;
  color: var(--text);
}
.mb-card p { font-size: 13.5px; margin: 0 0 8px; }
.mb-card__time {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(255,193,7,.1);
  padding: 3px 8px;
  border-radius: 4px;
}

/* ==========================================================
   FIGURE
   ========================================================== */
.mb-figure {
  margin: 16px 0;
}
.mb-figure img {
  border-radius: 10px;
  border: 1px solid var(--line);
}
.mb-figure figcaption {
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}

/* ==========================================================
   PROS / CONS
   ========================================================== */
.mb-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.mb-pros, .mb-cons {
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid var(--line);
}
.mb-pros { background: rgba(76,175,80,.06); border-color: rgba(76,175,80,.25); }
.mb-cons { background: rgba(229,57,53,.06); border-color: rgba(229,57,53,.25); }
.mb-pros h3 { color: var(--green); margin: 0 0 10px; font-size: 16px; }
.mb-cons h3 { color: var(--red); margin: 0 0 10px; font-size: 16px; }
.mb-pros ul, .mb-cons ul {
  list-style: none;
  margin: 0; padding: 0;
}
.mb-pros li, .mb-cons li {
  padding: 6px 0 6px 24px;
  position: relative;
  color: var(--text-2);
  font-size: 13.5px;
}
.mb-pros li::before {
  content: "✓";
  position: absolute; left: 4px; top: 6px;
  color: var(--green); font-weight: 700;
}
.mb-cons li::before {
  content: "−";
  position: absolute; left: 4px; top: 6px;
  color: var(--red); font-weight: 700;
}

/* ==========================================================
   USER REVIEWS
   ========================================================== */
.mb-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
}
.mb-review {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 18px;
}
.mb-review header {
  display: flex; justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.mb-review header strong { color: var(--text); font-size: 13px; }
.mb-review header span { color: var(--accent); font-size: 14px; letter-spacing: -1px; }
.mb-review p { margin: 0; font-size: 13.5px; font-style: italic; color: var(--text-2); }

/* ==========================================================
   FAQ
   ========================================================== */
.mb-faq__item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 8px;
  transition: border-color .2s;
}
.mb-faq__item[open] { border-color: var(--accent); }
.mb-faq__item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  font-size: 15px;
  position: relative;
  padding-right: 28px;
  list-style: none;
}
.mb-faq__item summary::-webkit-details-marker { display: none; }
.mb-faq__item summary::after {
  content: "+";
  position: absolute; right: 0; top: -2px;
  color: var(--accent);
  font-size: 20px;
  transition: transform .2s;
}
.mb-faq__item[open] summary::after { content: "−"; }
.mb-faq__item p {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--text-2);
}

/* ==========================================================
   AUTHOR
   ========================================================== */
.mb-author {
  margin: 36px 0 0;
  padding: 18px 0;
  border-top: 1px solid var(--line-2);
}
.mb-author__card {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
}
.mb-author__card img {
  width: 64px; height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid var(--accent);
}
.mb-author__card strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  margin-bottom: 2px;
}
.mb-author__card span {
  display: block;
  font-size: 12px;
  color: var(--accent);
  margin-bottom: 8px;
}
.mb-author__card p {
  margin: 0; font-size: 13.5px;
}

/* ==========================================================
   LEGAL PAGES
   ========================================================== */
.mb-legal h1 {
  font-size: 28px;
  margin: 16px 0 24px;
}
.mb-legal h2 {
  font-size: 19px;
  color: var(--text);
  margin: 28px 0 10px;
}
.mb-legal p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0 0 14px;
}
.mb-legal p strong { color: var(--text); }
.mb-legal a {
  color: var(--accent);
  text-decoration: underline;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.mb-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  margin-top: 36px;
  padding: 28px 0 24px;
}
.mb-footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}
.mb-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  justify-content: center;
  margin-bottom: 16px;
}
.mb-footer__nav a {
  color: var(--text-2);
  font-size: 13px;
  font-weight: 500;
  transition: color .2s;
}
.mb-footer__nav a:hover { color: var(--accent); }
.mb-footer__copy {
  text-align: center;
  font-size: 12px;
  color: var(--text-3);
  margin: 0;
  line-height: 1.6;
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 900px) {
  .mb-hero { grid-template-columns: 1fr; }
  .mb-hero__title { font-size: 28px; }
  .mb-toc__list { grid-template-columns: 1fr; }
  .mb-header__nav { display: none; }
  .mb-pros-cons { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 14px; }
  h1 { font-size: 24px; }
  h2 { font-size: 20px; }
  h3 { font-size: 17px; }
  .mb-hero__title { font-size: 24px; }
  .mb-hero__cta .mb-btn { flex: 1; min-width: 130px; }
  .mb-header__inner { padding: 10px 14px; gap: 12px; }
  .mb-header__logo { font-size: 15px; }
  .mb-logo-img { width: 32px; height: 32px; }
  .mb-header__auth-btn { padding: 6px 12px; font-size: 12px; }
  .mb-author__card { flex-direction: column; }
  .mb-table { font-size: 13px; }
  .mb-table th, .mb-table td { padding: 8px 10px; }
}


/* ==========================================================
   IMAGES — centered, captioned, responsive
   ========================================================== */
img { transition: transform .3s ease; }
.mb-figure { text-align: center; margin: 22px auto; }
.mb-figure img {
  margin: 0 auto;
  max-width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.mb-hero__media img {
  margin: 0 auto;
  display: block;
}
.mb-steps img {
  display: block;
  margin: 12px auto 0;
  max-width: 280px;
  border-radius: 8px;
}

/* ==========================================================
   RISK BADGES
   ========================================================== */
.mb-risk {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.mb-risk--low { background: rgba(76,175,80,.15); color: #66bb6a; }
.mb-risk--mid { background: rgba(255,193,7,.15); color: var(--accent); }
.mb-risk--high { background: rgba(229,57,53,.15); color: #ef5350; }

/* ==========================================================
   SLOT CARDS GRID
   ========================================================== */
.mb-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
  margin: 16px 0 20px;
}
.mb-slot-card {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 18px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  cursor: default;
}
.mb-slot-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(255,193,7,.15);
}
.mb-slot-card header {
  display: flex; flex-direction: column;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.mb-slot-card h3 {
  margin: 0 0 2px;
  font-size: 17px;
  color: var(--text);
}
.mb-slot-card__provider {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mb-slot-card__stats {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  margin: 0 0 10px;
}
.mb-slot-card__stats li {
  display: flex; flex-direction: column;
  padding: 4px 0;
}
.mb-slot-card__stats li span {
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .8px;
}
.mb-slot-card__stats li strong {
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
}
.mb-slot-card > p {
  font-size: 13px;
  margin: 0;
  line-height: 1.55;
}

/* ==========================================================
   EVENTS GRID
   ========================================================== */
.mb-events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin: 16px 0 20px;
}
.mb-event {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  transition: transform .2s ease, border-left-color .2s ease;
}
.mb-event:hover {
  transform: translateX(4px);
  border-left-color: #ffd54f;
}
.mb-event__date {
  display: inline-block;
  background: rgba(255,193,7,.12);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 8px;
}
.mb-event h3 {
  margin: 0 0 6px;
  font-size: 16px;
}
.mb-event p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

/* ==========================================================
   MODERN BUTTONS — interactive
   ========================================================== */
.mb-btn { position: relative; overflow: hidden; }
.mb-btn::before {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent 30%, rgba(255,255,255,.25) 50%, transparent 70%);
  transition: left .6s ease;
}
.mb-btn:hover::before { left: 120%; }

/* Hover scale on hero image */
.mb-hero__media img:hover { transform: scale(1.02); }

/* Smooth animation on TOC */
.mb-toc__list a {
  position: relative;
  transition: color .2s, padding-left .2s;
}
.mb-toc__list a:hover { padding-left: 6px; }

/* Card cards hover effect */
.mb-card { transition: transform .2s ease, border-color .2s ease; }
.mb-card:hover { transform: translateY(-3px); border-color: var(--accent); }

/* Steps - timeline-like effect */
.mb-steps > li { position: relative; transition: border-color .2s ease, background .2s ease; }
.mb-steps > li:hover { border-color: var(--accent); }

/* FAQ smooth open */
.mb-faq__item { transition: border-color .25s ease, background .25s ease; }
.mb-faq__item:hover { background: rgba(255,255,255,.06); }

/* Reviews cards hover */
.mb-review { transition: transform .2s ease, border-color .2s ease; }
.mb-review:hover { transform: translateY(-2px); border-color: var(--accent); }

/* Tables — modern interactive */
.mb-table tbody tr {
  transition: background .15s ease;
}
.mb-table tbody tr:hover {
  background: rgba(255,193,7,.04);
}

/* Reveal animation on scroll (CSS-only via animation when in view, fallback) */
@media (prefers-reduced-motion: no-preference) {
  .mb-section { animation: fadeUp .55s ease both; animation-timeline: view(); animation-range: entry 0% cover 30%; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* Stronger hero presence */
.mb-hero__title { background: linear-gradient(120deg, #fff 0%, #fff 60%, var(--accent) 110%); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* TOC modern card */
.mb-toc { background: linear-gradient(180deg, var(--bg-2), rgba(21,35,50,.6)); }

/* Mobile responsive for new grids */
@media (max-width: 600px) {
  .mb-slots-grid, .mb-events-grid { grid-template-columns: 1fr; }
  .mb-slot-card__stats { grid-template-columns: 1fr 1fr; }
}

.mb-toc__list a.is-active { color: var(--accent); font-weight: 600; padding-left: 6px; }


/* Footer brand */
.mb-footer__brand {
  display: flex; align-items: center; gap: 14px;
  justify-content: center;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-2);
}
.mb-footer__brand img {
  width: 48px; height: 48px;
  border-radius: 10px;
  flex-shrink: 0;
}
.mb-footer__brand strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}
.mb-footer__brand span {
  display: block;
  color: var(--text-3);
  font-size: 12px;
}

/* Improve header logo */
.mb-logo-img {
  width: 40px; height: 40px;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(255,193,7,.06);
  padding: 4px;
}


/* ==========================================================
   LOGO sizing — horizontal wordmark
   ========================================================== */
.mb-header__logo .mb-logo-img {
  width: 120px;
  height: 22px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  object-fit: contain;
}
.mb-footer__brand img {
  width: 140px;
  height: 25px;
  border-radius: 0;
}
.mb-footer__tagline {
  display: block;
  color: var(--text-3);
  font-size: 12px;
  margin-top: 4px;
}

/* ==========================================================
   CARDS WITH IMG (registration methods + others)
   ========================================================== */
.mb-cards--with-img .mb-card {
  padding: 0;
  overflow: hidden;
}


.mb-cards--with-img .mb-card h4,
.mb-cards--with-img .mb-card p {
  padding: 0 16px;
}
.mb-cards--with-img .mb-card h4 {
  margin-top: 14px;
}
.mb-cards--with-img .mb-card > p:first-of-type,
.mb-cards--with-img .mb-card > p:nth-of-type(2) {
  padding-bottom: 8px;
}
.mb-cards--with-img .mb-card__time {
  margin: 0 16px 14px;
}

/* ==========================================================
   SLOT CARD MEDIA
   ========================================================== */
.mb-slot-card { padding: 0; overflow: hidden; }
.mb-slot-card__media {
  margin: 0;
  aspect-ratio: 16 / 9;
  background: #ffffff;
  overflow: hidden;
}
.mb-slot-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.mb-slot-card:hover .mb-slot-card__media img { transform: scale(1.05); }
.mb-slot-card header,
.mb-slot-card .mb-slot-card__stats,
.mb-slot-card > p {
  padding-left: 18px;
  padding-right: 18px;
}
.mb-slot-card header { padding-top: 14px; }
.mb-slot-card > p { padding-bottom: 16px; }

/* ==========================================================
   EVENT MEDIA
   ========================================================== */
.mb-event { padding: 0; overflow: hidden; }
.mb-event__media {
  margin: 0;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  overflow: hidden;
  max-width: 240px;
}
.mb-event__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.mb-event > div.mb-event__date,
.mb-event h3,
.mb-event > p {
  padding-left: 18px;
  padding-right: 18px;
}
.mb-event > div.mb-event__date {
  margin-top: 14px;
  margin-left: 18px;
  padding-left: 10px;
  padding-right: 10px;
}
.mb-event > p { padding-bottom: 16px; }

/* ==========================================================
   INLINE FIGURES inside sections
   ========================================================== */



/* ==========================================================
   STEPS — fix image alignment
   ========================================================== */
.mb-steps > li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}
.mb-steps > li > h3,
.mb-steps > li > p { grid-column: 1; }
.mb-steps > li > img {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 260px;
  margin: 0;
  border-radius: 8px;
  align-self: start;
}

/* ==========================================================
   RESPONSIVE IMPROVEMENTS
   ========================================================== */
@media (max-width: 1024px) {
  :root { --container: 100%; }
  .mb-container { padding: 0 18px; }
  .mb-header__nav-list { gap: 16px; font-size: 13px; }
  .mb-toc__list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .mb-hero { grid-template-columns: 1fr; }
  .mb-hero__title { font-size: 28px; }
  .mb-header__nav { display: none; }
  .mb-toc__list { grid-template-columns: 1fr; }
  .mb-pros-cons { grid-template-columns: 1fr; }
  .mb-steps > li {
    grid-template-columns: 1fr;
  }
  .mb-steps > li > img {
    grid-column: 1;
    grid-row: auto;
    max-width: 100%;
    margin-top: 10px;
  }
}

@media (max-width: 700px) {
  .mb-slots-grid { grid-template-columns: repeat(2, 1fr); }
  .mb-events-grid { grid-template-columns: 1fr; }
  .mb-cards { grid-template-columns: 1fr; }
  .mb-reviews { grid-template-columns: 1fr; }
  .mb-table { font-size: 12.5px; }
  .mb-table th, .mb-table td { padding: 8px 10px; }
  .mb-hero__title { font-size: 24px; }
  .mb-hero__lead { font-size: 15px; }
  .mb-hero__cta { flex-direction: column; }
  .mb-hero__cta .mb-btn { width: 100%; }
  .mb-section { margin-top: 18px; padding: 8px 0 14px; }
  h2 { font-size: 20px; margin: 24px 0 12px; }
  h3 { font-size: 17px; margin: 18px 0 10px; }
  .mb-toc__list { grid-template-columns: 1fr; }
  
  .mb-footer__brand { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  body { font-size: 14px; }
  .mb-container { padding: 0 14px; }
  .mb-slots-grid { grid-template-columns: 1fr; }
  .mb-slot-card__stats { grid-template-columns: 1fr 1fr; }
  .mb-table { font-size: 12px; }
  .mb-table th, .mb-table td { padding: 7px 8px; }
  .mb-hero__title { font-size: 22px; }
  h1 { font-size: 22px; }
  .mb-header__logo .mb-logo-img { width: 100px; height: 18px; }
  .mb-header__auth-btn { padding: 6px 11px; font-size: 12px; }
  .mb-footer__brand img { width: 120px; height: 22px; }
  .mb-feature-list li, .mb-req-list li {
    padding: 8px 10px;
    font-size: 13px;
  }
}

/* Print: hide nav for printing */
@media print {
  .mb-header, .mb-footer, .mb-toc, .mb-hero__cta, .mb-skip-link { display: none !important; }
  body { background: white; color: black; }
  h1, h2, h3, p { color: black; }
}

/* Reduce motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* Image media containers — white-bg images get subtle inset */
.mb-event__media img,
.mb-card__media img,
.mb-slot-card__media img {
  background: #ffffff;
}


/* Author avatar — use new image */
.mb-author__card img {
  object-fit: cover;
  background: #ffffff;
}


/* Event card — square media variant */
.mb-event {
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mb-event__media {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-bottom: 1px solid var(--line);
}
.mb-events-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* Inline figure — phone mockup centered, max 320 */




/* Reg methods cards — phone mockup top, text below */
.mb-cards--with-img { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.mb-cards--with-img .mb-card {
  padding: 0 0 16px;
  display: flex;
  flex-direction: column;
}
.mb-cards--with-img .mb-card 

@media (max-width: 700px) {
  .mb-events-grid { grid-template-columns: repeat(2, 1fr); }
  .mb-event__media { max-width: 100%; }
}
@media (max-width: 480px) {
  .mb-events-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   COMPACT MOCKUPS — float-wrap inline, smaller reg phone
   =========================================================== */

/* Inline phone mockup: float right with text wrap */
.mb-figure--inline {
  float: right;
  max-width: 240px;
  width: 38%;
  min-width: 200px;
  margin: 6px 0 14px 22px;
  shape-outside: inset(0 round 18px);
  text-align: center;
}
/* Alternate float for variety */
.mb-section:nth-of-type(odd) .mb-figure--inline {
  float: right;
  margin: 6px 0 14px 22px;
}
.mb-section:nth-of-type(even) .mb-figure--inline {
  float: left;
  margin: 6px 22px 14px 0;
}
.mb-figure--inline img {
  width: 100%;
  max-width: 240px;
  height: auto;
  margin: 0;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(0,0,0,.45), 0 0 0 6px rgba(255,255,255,0.03);
  display: block;
}
.mb-figure--inline figcaption {
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-3);
  font-style: italic;
  line-height: 1.4;
}

/* Clear floats at section end so next section doesn't wrap */
.mb-section::after {
  content: "";
  display: block;
  clear: both;
}

/* Reg method cards: smaller phone mockup (160 wide → ~160×347) */
.mb-card__media {
  margin: 0 auto;
  background: transparent;
  overflow: hidden;
  max-width: 100%;
  display: flex;
  justify-content: center;
  padding: 18px 0 6px;
}
.mb-card__media img {
  width: auto;
  max-width: 160px;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,.35);
}

/* Card text shouldn't be too narrow under phone */
.mb-cards--with-img {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.mb-cards--with-img .mb-card h4 {
  text-align: center;
  margin-top: 6px;
}
.mb-cards--with-img .mb-card > p {
  font-size: 13px;
  line-height: 1.55;
}
.mb-cards--with-img .mb-card__time {
  margin-left: auto;
  margin-right: auto;
  display: block;
  text-align: center;
  width: max-content;
}

/* Responsive: stop floating on small screens, center instead */
@media (max-width: 760px) {
  .mb-figure--inline,
  .mb-section:nth-of-type(odd) .mb-figure--inline,
  .mb-section:nth-of-type(even) .mb-figure--inline {
    float: none;
    width: 60%;
    max-width: 240px;
    margin: 18px auto;
  }
}
@media (max-width: 480px) {
  .mb-figure--inline {
    width: 70%;
    max-width: 220px;
  }
  .mb-card__media img {
    max-width: 140px;
  }
}


/* ===========================================================
   SPLIT LAYOUT — text + sticky mockup
   =========================================================== */
.mb-split {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
  margin: 24px 0 12px;
}
.mb-split__main > h3:first-child { margin-top: 4px; }

.mb-mockup {
  position: sticky;
  top: 86px;
  align-self: start;
}
.mb-mockup__inner {
  background: linear-gradient(160deg, rgba(255,193,7,.10) 0%, rgba(28,44,62,.85) 60%, rgba(15,25,35,.85) 100%);
  border: 1px solid rgba(255,193,7,.22);
  border-radius: 20px;
  padding: 18px 16px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mb-mockup__inner::before {
  content: "";
  position: absolute;
  top: -40%; right: -30%;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,193,7,.18) 0%, transparent 70%);
  pointer-events: none;
}
.mb-mockup__label {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,193,7,.08);
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,193,7,.25);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.mb-mockup__frame {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0 auto 12px;
  display: inline-block;
}
.mb-mockup__frame::before {
  content: "";
  position: absolute;
  top: -6px; left: -6px; right: -6px; bottom: -6px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.04), transparent 50%);
  pointer-events: none;
}
.mb-mockup img {
  width: 100%;
  max-width: 240px;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow:
    0 24px 48px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.06),
    inset 0 0 0 1px rgba(0,0,0,.4);
  margin: 0 auto;
}
.mb-mockup__cap {
  font-size: 12px;
  color: var(--text-3);
  font-style: italic;
  margin: 0;
  line-height: 1.45;
  position: relative;
  z-index: 1;
}

/* Disable old float for .mb-figure--inline (we use split now) */
.mb-figure--inline { display: none; }

/* ===========================================================
   CTA BANNERS
   =========================================================== */
.mb-cta-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  margin: 28px 0;
  padding: 22px 28px;
  background: linear-gradient(120deg, rgba(255,193,7,.12) 0%, rgba(28,44,62,.6) 50%);
  border: 1px solid rgba(255,193,7,.25);
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.3);
  position: relative;
  overflow: hidden;
}
.mb-cta-banner::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 100%;
  background: radial-gradient(ellipse at right, rgba(255,193,7,.10) 0%, transparent 70%);
  pointer-events: none;
}
.mb-cta-banner--alt {
  background: linear-gradient(120deg, rgba(28,44,62,.7) 0%, rgba(255,193,7,.10) 100%);
}
.mb-cta-banner__visual {
  position: relative;
  width: 80px; height: 80px;
  display: flex; align-items: center; justify-content: center;
}
.mb-cta-banner__pulse {
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: var(--accent);
  opacity: .22;
  animation: ctaPulse 2.4s ease-in-out infinite;
}
@keyframes ctaPulse {
  0%, 100% { transform: scale(.9); opacity: .25; }
  50%      { transform: scale(1.12); opacity: .10; }
}
.mb-cta-banner__visual img {
  position: relative;
  width: 64px; height: 64px;
  border-radius: 16px;
  z-index: 1;
}
.mb-cta-banner__text { z-index: 1; position: relative; }
.mb-cta-banner__text h3 {
  margin: 0 0 6px;
  font-size: 19px;
  color: var(--text);
}
.mb-cta-banner__text > p {
  margin: 0 0 8px;
  font-size: 14px;
  color: var(--text-2);
  max-width: 580px;
}
.mb-cta-banner__perks {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0; margin: 0;
}
.mb-cta-banner__perks li {
  font-size: 12px;
  color: var(--text-3);
  padding-left: 16px;
  position: relative;
}
.mb-cta-banner__perks li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 700;
}
.mb-cta-banner__actions {
  display: flex; flex-direction: column;
  gap: 8px;
  z-index: 1; position: relative;
}
.mb-btn--lg { padding: 14px 28px; font-size: 15px; }
.mb-btn--sm { padding: 7px 14px; font-size: 12.5px; }

/* ===========================================================
   FOOTER CTA
   =========================================================== */
.mb-footer-cta {
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(255,193,7,.06) 50%, var(--bg-3) 100%);
  border-top: 1px solid rgba(255,193,7,.2);
  padding: 32px 0;
}
.mb-footer-cta__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.mb-footer-cta__text h3 {
  margin: 0 0 6px;
  font-size: 22px;
  color: var(--text);
}
.mb-footer-cta__text p {
  margin: 0;
  font-size: 14px;
  color: var(--text-2);
}

/* ===========================================================
   STICKY POPUP
   =========================================================== */
.mb-sticky-popup {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(21,35,50,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,193,7,.35);
  border-radius: 999px;
  padding: 10px 18px 10px 12px;
  box-shadow: 0 16px 50px rgba(0,0,0,.5);
  max-width: 480px;
  width: calc(100% - 32px);
  transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .3s ease;
  opacity: 0;
}
.mb-sticky-popup[hidden] { display: flex; }  /* Override hidden to allow JS animation */
.mb-sticky-popup.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.mb-sticky-popup img {
  width: 44px; height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
}
.mb-sticky-popup__text { flex: 1; min-width: 0; }
.mb-sticky-popup__text strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}
.mb-sticky-popup__text span {
  display: block;
  font-size: 11.5px;
  color: var(--text-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mb-sticky-popup__close {
  position: absolute;
  top: -8px; right: -8px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--text-2);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
}
.mb-sticky-popup__close:hover {
  background: var(--accent);
  color: var(--bg);
}

/* ===========================================================
   TO-TOP BUTTON
   =========================================================== */
.mb-totop {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,193,7,.95);
  color: var(--bg);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,.4), 0 0 0 4px rgba(255,193,7,.12);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .3s, transform .3s, background .2s;
}
.mb-totop[hidden] { display: flex; }
.mb-totop.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mb-totop:hover {
  background: #ffd54f;
  transform: translateY(-2px);
}

/* If popup visible, lift to-top above it */
.mb-sticky-popup.is-visible ~ .mb-totop.is-visible {
  bottom: 76px;
}

/* ===========================================================
   RESPONSIVE — split + CTA + popup
   =========================================================== */
@media (max-width: 1024px) {
  .mb-split { grid-template-columns: 1fr 280px; gap: 24px; }
  .mb-mockup img { max-width: 220px; }
}
@media (max-width: 860px) {
  .mb-split { grid-template-columns: 1fr; gap: 20px; }
  .mb-mockup { position: static; max-width: 320px; margin: 0 auto; }
  .mb-mockup img { max-width: 240px; }
  .mb-cta-banner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 22px 18px;
  }
  .mb-cta-banner__visual { margin: 0 auto; }
  .mb-cta-banner__perks { justify-content: center; }
  .mb-cta-banner__actions { flex-direction: row; justify-content: center; }
  .mb-footer-cta__inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .mb-sticky-popup {
    padding: 9px 14px 9px 10px;
    gap: 9px;
    max-width: calc(100% - 24px);
  }
  .mb-sticky-popup img { width: 38px; height: 38px; }
  .mb-sticky-popup__text strong { font-size: 13px; }
  .mb-sticky-popup__text span { font-size: 11px; }
  .mb-totop { width: 42px; height: 42px; right: 14px; bottom: 14px; }
  .mb-cta-banner__actions { flex-direction: column; }
  .mb-cta-banner__actions .mb-btn { width: 100%; }
}


/* ===========================================================
   QUICK ANSWER — LLM/AI Overviews optimized callout
   =========================================================== */
.mb-quick-answer {
  background: linear-gradient(120deg, rgba(255,193,7,.08) 0%, rgba(76,175,80,.06) 100%);
  border: 1px solid rgba(255,193,7,.28);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 16px 0 20px;
  position: relative;
}
.mb-quick-answer__label {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,193,7,.15);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.mb-quick-answer p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text);
}


/* ===========================================================
   SCROLL PROGRESS BAR
   =========================================================== */
.mb-scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #ffd54f, var(--accent));
  background-size: 200% 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  z-index: 9999;
  transition: transform .15s ease-out;
  animation: progressShine 3s ease-in-out infinite;
}
@keyframes progressShine {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ===========================================================
   LIVE USERS WIDGET
   =========================================================== */
.mb-live-users {
  position: fixed;
  top: 12px;
  right: 16px;
  z-index: 101;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(28,44,62,.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(76,175,80,.25);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--text-2);
  box-shadow: 0 6px 18px rgba(0,0,0,.35);
  opacity: 0;
  transform: translateY(-10px);
  animation: liveAppear .6s ease-out .8s forwards;
}
.mb-live-users strong { color: var(--text); font-weight: 700; }
.mb-live-users__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4caf50;
  box-shadow: 0 0 0 0 rgba(76,175,80,.5);
  animation: livePulse 1.8s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(76,175,80,.55); }
  50%      { box-shadow: 0 0 0 8px rgba(76,175,80,0); }
}
@keyframes liveAppear {
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 700px) {
  .mb-live-users { top: 8px; right: 8px; font-size: 11px; padding: 5px 10px; }
}

/* ===========================================================
   HERO PARTICLES — animated floating golden dots
   =========================================================== */
.mb-hero {
  position: relative;
  overflow: hidden;
}
.mb-hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.mb-hero__particles span {
  position: absolute;
  display: block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  opacity: .35;
  filter: blur(.5px);
  animation: particleFloat 18s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255,193,7,.6);
}
.mb-hero__particles span:nth-child(1) { left: 8%;  top: 22%; animation-delay: 0s;    animation-duration: 14s; }
.mb-hero__particles span:nth-child(2) { left: 18%; top: 68%; animation-delay: -2s;   animation-duration: 16s; }
.mb-hero__particles span:nth-child(3) { left: 24%; top: 12%; animation-delay: -4s;   animation-duration: 19s; opacity: .25; }
.mb-hero__particles span:nth-child(4) { left: 35%; top: 80%; animation-delay: -1s;   animation-duration: 13s; }
.mb-hero__particles span:nth-child(5) { left: 48%; top: 38%; animation-delay: -7s;   animation-duration: 17s; width: 4px; height: 4px; }
.mb-hero__particles span:nth-child(6) { left: 58%; top: 8%;  animation-delay: -3s;   animation-duration: 15s; }
.mb-hero__particles span:nth-child(7) { left: 68%; top: 72%; animation-delay: -5s;   animation-duration: 18s; }
.mb-hero__particles span:nth-child(8) { left: 76%; top: 28%; animation-delay: -6s;   animation-duration: 14s; opacity: .3; width: 5px; height: 5px; }
.mb-hero__particles span:nth-child(9) { left: 82%; top: 60%; animation-delay: -2.5s; animation-duration: 16s; }
.mb-hero__particles span:nth-child(10){ left: 90%; top: 18%; animation-delay: -8s;   animation-duration: 20s; width: 8px; height: 8px; }
.mb-hero__particles span:nth-child(11){ left: 12%; top: 48%; animation-delay: -9s;   animation-duration: 15s; opacity: .2; }
.mb-hero__particles span:nth-child(12){ left: 62%; top: 52%; animation-delay: -10s;  animation-duration: 17s; }

@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(20px, -30px) scale(1.2); }
  50%      { transform: translate(-15px, -45px) scale(0.9); }
  75%      { transform: translate(10px, -20px) scale(1.1); }
}

/* ===========================================================
   STATS STRIP — animated counters
   =========================================================== */
.mb-stats-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding: 24px 22px;
  margin: 0 auto 28px;
  max-width: var(--container);
  background: linear-gradient(135deg, var(--bg-2) 0%, rgba(255,193,7,.04) 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.mb-stat {
  text-align: center;
  padding: 6px 4px;
  border-right: 1px solid var(--line-2);
  transition: transform .3s ease;
}
.mb-stat:last-child { border-right: 0; }
.mb-stat:hover { transform: translateY(-3px); }
.mb-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
  background: linear-gradient(120deg, #ffd54f, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mb-stat span {
  font-size: 11.5px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .mb-stats-strip { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .mb-stat:nth-child(3n) { border-right: 0; }
  .mb-stat strong { font-size: 22px; }
}
@media (max-width: 480px) {
  .mb-stats-strip { grid-template-columns: repeat(2, 1fr); padding: 18px 14px; }
  .mb-stat:nth-child(odd) { border-right: 1px solid var(--line-2); }
  .mb-stat:nth-child(even) { border-right: 0; }
  .mb-stat strong { font-size: 19px; }
  .mb-stat span { font-size: 10px; }
}

/* ===========================================================
   INTERACTIVE ODDS CALCULATOR
   =========================================================== */
.mb-odds-calc {
  background: linear-gradient(135deg, rgba(255,193,7,.08), rgba(28,44,62,.6));
  border: 1px solid rgba(255,193,7,.3);
  border-radius: 16px;
  padding: 22px 24px;
  margin: 20px 0 28px;
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
}
.mb-odds-calc__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-2);
}
.mb-odds-calc__icon {
  font-size: 24px;
}
.mb-odds-calc__header h3 {
  margin: 0;
  font-size: 18px;
  color: var(--text);
}
.mb-odds-calc__body {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}
.mb-odds-calc__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mb-odds-calc__field label {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}
.mb-odds-calc__field input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.mb-odds-calc__field input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,193,7,.15);
}
.mb-odds-calc__result {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 8px 18px;
  background: rgba(255,193,7,.10);
  border: 1px solid rgba(255,193,7,.3);
  border-radius: 10px;
  min-width: 180px;
}
.mb-odds-calc__result-label {
  font-size: 10px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
.mb-odds-calc__result strong {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin: 2px 0;
  font-variant-numeric: tabular-nums;
}
.mb-odds-calc__result small {
  font-size: 11px;
  color: #66bb6a;
  font-weight: 600;
}
.mb-odds-calc__hint {
  margin: 14px 0 0;
  font-size: 12px;
  color: var(--text-3);
  font-style: italic;
}

@media (max-width: 700px) {
  .mb-odds-calc__body { grid-template-columns: 1fr 1fr; }
  .mb-odds-calc__result { grid-column: 1 / -1; align-items: center; min-width: 0; }
}
@media (max-width: 480px) {
  .mb-odds-calc__body { grid-template-columns: 1fr; }
  .mb-odds-calc__result { padding: 12px 14px; }
}

/* ===========================================================
   Misc — micro hover enhancements
   =========================================================== */
.mb-event__media img,
.mb-slot-card__media img {
  transition: transform .35s ease, filter .35s ease;
}
.mb-event:hover .mb-event__media img { filter: brightness(1.06); }
.mb-slot-card:hover .mb-slot-card__media img { filter: brightness(1.05) saturate(1.1); }
.mb-table tbody tr {
  transition: background .2s ease, transform .2s ease;
}
.mb-table tbody tr:hover {
  background: rgba(255,193,7,.06);
  transform: translateX(2px);
}


/* ===========================================================
   BREADCRUMB
   =========================================================== */
.mb-breadcrumb {
  margin: 0 0 18px;
  font-size: 13px;
}
.mb-breadcrumb__inner {
  padding: 8px 0;
}
.mb-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0; margin: 0;
}
.mb-breadcrumb__list li {
  display: inline-flex;
  align-items: center;
  color: var(--text-3);
}
.mb-breadcrumb__list li + li::before {
  content: "›";
  margin-right: 8px;
  color: var(--text-3);
  opacity: .7;
}
.mb-breadcrumb__list a {
  color: var(--text-2);
  text-decoration: none;
  transition: color .2s;
}
.mb-breadcrumb__list a:hover { color: var(--accent); }
.mb-breadcrumb__list [aria-current="page"] {
  color: var(--text);
  font-weight: 500;
}

/* ===========================================================
   BYLINE
   =========================================================== */
.mb-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0 16px;
  margin: 0 0 14px;
  border-bottom: 1px solid var(--line-2);
}
.mb-byline img {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  flex-shrink: 0;
}
.mb-byline__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;
  color: var(--text-2);
}
.mb-byline__text strong { color: var(--text); font-weight: 600; }
.mb-byline__meta {
  font-size: 12px;
  color: var(--text-3);
}
.mb-byline__meta a {
  color: var(--accent);
  text-decoration: none;
}
.mb-byline__meta a:hover { text-decoration: underline; }


/* ===========================================================
   MOBILE — enlarge phone mockups (desktop untouched)
   =========================================================== */
@media (max-width: 860px) {
  /* Make mockup container wider */
  .mb-mockup {
    max-width: 100% !important;
    width: 100%;
    margin: 14px auto 0 !important;
  }
  .mb-mockup__inner {
    padding: 24px 18px 20px;
    max-width: 420px;
    margin: 0 auto;
  }
  /* Phone image significantly larger */
  .mb-mockup img {
    max-width: 320px !important;
    width: 100%;
  }
  /* Frame breathing room */
  .mb-mockup__frame {
    margin: 0 auto 14px;
    display: block;
    max-width: 320px;
  }
  /* Caption slightly bigger */
  .mb-mockup__cap {
    font-size: 13px;
  }
  /* Label more prominent */
  .mb-mockup__label {
    font-size: 11px;
    padding: 5px 14px;
  }
}

@media (max-width: 600px) {
  .mb-mockup__inner {
    padding: 22px 16px 18px;
    max-width: 380px;
  }
  .mb-mockup img,
  .mb-mockup__frame {
    max-width: 300px !important;
  }
}

@media (max-width: 480px) {
  .mb-mockup__inner {
    padding: 20px 14px 16px;
    max-width: 100%;
  }
  .mb-mockup img,
  .mb-mockup__frame {
    max-width: 280px !important;
  }
}

@media (max-width: 380px) {
  .mb-mockup img,
  .mb-mockup__frame {
    max-width: 260px !important;
  }
}
