@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700;800;900&display=swap');

/* ── Variables ─────────────────────────────────────── */
:root {
  --bg:        #080A1C;
  --surface:   #0F1226;
  --card:      #161A35;
  --card-2:    #1E2348;
  --border:    rgba(255,255,255,0.07);
  --gold:      #F0A500;
  --gold-d:    #C98A00;
  --flame:     #E05C00;
  --text:      #E4ECFF;
  --muted:     #7480A8;
  --radius:    6px;
  --radius-lg: 12px;
  --max:       1200px;
  --trans:     0.22s ease;
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--gold-d); }
ul { list-style: none; }
table { border-collapse: collapse; width: 100%; }

/* ── Typography ────────────────────────────────────── */
.mlu-h1 { font-size: clamp(26px, 4.5vw, 46px); font-weight: 900; line-height: 1.15; color: var(--text); }
.mlu-h2 { font-size: clamp(20px, 3vw, 32px); font-weight: 800; line-height: 1.25; color: var(--text); margin-bottom: 10px; }
.mlu-h3 { font-size: clamp(16px, 2vw, 22px); font-weight: 700; line-height: 1.3; color: var(--text); margin-bottom: 8px; }
.mlu-lead { font-size: 17px; color: var(--muted); margin-bottom: 32px; max-width: 720px; }
.mlu-gold { color: var(--gold); }

/* ── Layout ────────────────────────────────────────── */
.mlu-wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.mlu-section { padding: 72px 0; }
.mlu-section--alt { background: var(--surface); }
.mlu-section--dark { background: var(--card); }

/* ── Buttons ───────────────────────────────────────── */
.mlu-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Mulish', sans-serif; font-size: 15px; font-weight: 700;
  padding: 11px 26px; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: all var(--trans); white-space: nowrap;
}
.mlu-btn--gold {
  background: var(--gold); color: #0A0C1A; border-color: var(--gold);
}
.mlu-btn--gold:hover { background: var(--gold-d); border-color: var(--gold-d); color: #0A0C1A; }
.mlu-btn--outline {
  background: transparent; color: var(--gold); border-color: var(--gold);
}
.mlu-btn--outline:hover { background: var(--gold); color: #0A0C1A; }
.mlu-btn--ghost {
  background: transparent; color: var(--text); border-color: var(--border);
}
.mlu-btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.mlu-btn--lg { padding: 14px 32px; font-size: 16px; }

/* ── Section CTA ───────────────────────────────────── */
.mlu-section-cta { display: flex; justify-content: center; margin-top: 36px; }
@media (max-width: 767px) { .mlu-section-cta { margin-top: 24px; } }

/* ── Header ────────────────────────────────────────── */
.mlu-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8, 10, 28, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.mlu-header__bar {
  max-width: var(--max); margin: 0 auto; padding: 12px 20px;
  display: flex; align-items: center; gap: 20px;
}
.mlu-head__left { display: flex; align-items: center; gap: 12px; }
.mlu-logo { display: flex; align-items: center; }
.mlu-logo img { height: 36px; width: auto; }
.mlu-burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: transparent;
  border: 1px solid var(--border); border-radius: var(--radius); cursor: pointer;
  padding: 8px;
}
.mlu-burger span { display: block; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--trans); }
.mlu-burger:hover { border-color: var(--gold); }
.mlu-burger:hover span { background: var(--gold); }

.mlu-nav { flex: 1; }
.mlu-nav ul { display: flex; gap: 4px; justify-content: center; }
.mlu-nav a {
  display: block; padding: 8px 14px; font-size: 14px; font-weight: 600; color: var(--muted);
  border-radius: var(--radius); transition: all var(--trans); position: relative;
}
.mlu-nav a::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px; background: var(--gold); border-radius: 2px; transform: scaleX(0); transition: transform var(--trans);
}
.mlu-nav a:hover, .mlu-nav a.active { color: var(--text); }
.mlu-nav a:hover::after, .mlu-nav a.active::after { transform: scaleX(1); }

.mlu-head__actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }

/* ── Mobile overlay & panel ────────────────────────── */
.mlu-overlay {
  display: none; position: fixed; inset: 0; z-index: 110;
  background: rgba(0,0,0,0.7); opacity: 0; transition: opacity var(--trans);
}
.mlu-mobile-panel {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 120;
  width: min(300px, 88vw); background: var(--surface);
  border-right: 1px solid var(--border);
  transform: translateX(-100%); transition: transform 0.3s ease;
  display: flex; flex-direction: column; overflow-y: auto;
}
.mlu-mobile-panel__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.mlu-mobile-panel__logo img { height: 32px; }
.mlu-mobile-panel__close {
  width: 36px; height: 36px; background: transparent;
  border: 1px solid var(--border); border-radius: var(--radius);
  cursor: pointer; position: relative; color: var(--text);
}
.mlu-mobile-panel__close::before,
.mlu-mobile-panel__close::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: 16px; height: 2px; background: var(--text); border-radius: 2px;
}
.mlu-mobile-panel__close::before { transform: translate(-50%, -50%) rotate(45deg); }
.mlu-mobile-panel__close::after  { transform: translate(-50%, -50%) rotate(-45deg); }
.mlu-mobile-panel__nav { padding: 16px; flex: 1; }
.mlu-mobile-panel__nav li { border-bottom: 1px solid var(--border); }
.mlu-mobile-panel__nav a {
  display: block; padding: 13px 8px; font-size: 15px; font-weight: 600; color: var(--muted);
  transition: color var(--trans);
}
.mlu-mobile-panel__nav a:hover, .mlu-mobile-panel__nav a.active { color: var(--gold); }
.mlu-mobile-panel__actions {
  padding: 16px; display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--border);
}
.mlu-mobile-panel__actions .mlu-btn { justify-content: center; }

body.mlu-menu-open { overflow: hidden; }

/* ── Hero ──────────────────────────────────────────── */
.mlu-hero {
  position: relative; overflow: hidden;
  background: var(--surface);
  min-height: 460px; display: flex; align-items: center;
}
.mlu-hero__media {
  position: absolute; inset: 0;
}
.mlu-hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.mlu-hero__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(8,10,28,0.88) 0%, rgba(8,10,28,0.5) 60%, transparent 100%);
}
.mlu-hero__body {
  position: relative; z-index: 2; padding: 60px 0;
}
.mlu-hero__wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.mlu-hero__title { margin-bottom: 16px; max-width: 640px; }
.mlu-hero__sub { font-size: 17px; color: rgba(228,236,255,0.75); margin-bottom: 32px; max-width: 520px; }
.mlu-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.mlu-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(240,165,0,0.12); border: 1px solid rgba(240,165,0,0.3);
  border-radius: 50px; padding: 6px 16px; font-size: 13px; font-weight: 700; color: var(--gold);
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .mlu-hero { min-height: 340px; }
  .mlu-hero__body { padding: 48px 0; }
  .mlu-hero__media::after {
    background: linear-gradient(180deg, rgba(8,10,28,0.5) 0%, rgba(8,10,28,0.9) 60%, rgba(8,10,28,1) 100%);
  }
}

/* ── Stat strip ────────────────────────────────────── */
.mlu-stats {
  background: var(--card);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.mlu-stats__row { display: flex; justify-content: center; flex-wrap: wrap; }
.mlu-stat {
  flex: 1 1 140px; display: flex; flex-direction: column; align-items: center;
  padding: 24px 20px; text-align: center;
  border-right: 1px solid var(--border);
}
.mlu-stat:last-child { border-right: none; }
.mlu-stat__num { font-size: 28px; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.mlu-stat__lbl { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.6px; }
@media (max-width: 767px) {
  .mlu-stat { flex: 1 1 50%; }
  .mlu-stat:nth-child(2) { border-right: none; }
  .mlu-stat:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
  .mlu-stat:nth-child(4) { border-top: 1px solid var(--border); }
}

/* ── Feature cards ─────────────────────────────────── */
.mlu-features { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 40px; }
.mlu-feature {
  flex: 1 1 calc(33.333% - 14px); background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; transition: border-color var(--trans), transform var(--trans);
}
.mlu-feature:hover { border-color: rgba(240,165,0,0.3); transform: translateY(-3px); }
.mlu-feature__icon { margin-bottom: 16px; }
.mlu-feature__title { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.mlu-feature__text { font-size: 14px; color: var(--muted); line-height: 1.6; }
@media (max-width: 767px) { .mlu-feature { flex: 1 1 100%; } }
@media (min-width: 768px) and (max-width: 1000px) { .mlu-feature { flex: 1 1 calc(50% - 10px); } }

/* ── Bonus promo grid ──────────────────────────────── */
.mlu-promos { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 40px; }
.mlu-promo-card {
  flex: 1 1 calc(50% - 10px); background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; transition: border-color var(--trans), transform var(--trans);
}
.mlu-promo-card:hover { border-color: rgba(240,165,0,0.3); transform: translateY(-3px); }
.mlu-promo-card__img { width: 100%; aspect-ratio: 16/8; object-fit: cover; display: block; }
.mlu-promo-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; gap: 8px; }
.mlu-promo-card__title { font-size: 16px; font-weight: 800; color: var(--text); }
.mlu-promo-card__tag {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.7px; padding: 3px 10px; border-radius: 50px;
  background: rgba(240,165,0,0.12); color: var(--gold); border: 1px solid rgba(240,165,0,0.25);
  width: fit-content;
}
.mlu-promo-card__text { font-size: 13px; color: var(--muted); flex: 1; }
.mlu-promo-card__cta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; background: rgba(240,165,0,0.06); border-top: 1px solid var(--border);
  font-size: 13px; font-weight: 700; color: var(--gold);
  transition: background var(--trans);
}
.mlu-promo-card__cta:hover { background: rgba(240,165,0,0.12); color: var(--gold); }
@media (max-width: 767px) { .mlu-promo-card { flex: 1 1 100%; } }

/* ── Bonus table ───────────────────────────────────── */
.mlu-table-wrap { overflow-x: auto; margin-top: 24px; border-radius: var(--radius-lg); }
.mlu-table {
  width: 100%; background: var(--card); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.mlu-table th {
  background: var(--card-2); padding: 14px 18px; text-align: left;
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.7px;
  color: var(--muted); border-bottom: 1px solid var(--border);
}
.mlu-table td { padding: 14px 18px; font-size: 14px; border-bottom: 1px solid var(--border); color: var(--text); }
.mlu-table tr:last-child td { border-bottom: none; }
.mlu-table td strong { color: var(--gold); font-weight: 800; }
.mlu-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ── Welcome package tabs ──────────────────────────── */
.mlu-tabs { margin-top: 32px; }
.mlu-tabs__nav {
  display: flex; border-bottom: 2px solid var(--border); margin-bottom: 24px; gap: 4px;
}
.mlu-tabs__btn {
  padding: 10px 22px; font-size: 14px; font-weight: 700; font-family: 'Mulish', sans-serif;
  background: transparent; border: none; color: var(--muted); cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all var(--trans);
  border-radius: var(--radius) var(--radius) 0 0;
}
.mlu-tabs__btn.active, .mlu-tabs__btn:hover { color: var(--gold); border-bottom-color: var(--gold); }
.mlu-tabs__panel { display: none; }
.mlu-tabs__panel.active { display: block; }

/* ── Cashback table ────────────────────────────────── */
.mlu-cashback-table th:first-child, .mlu-cashback-table td:first-child { color: var(--gold); font-weight: 800; }

/* ── Games grid ────────────────────────────────────── */
.mlu-games-grid { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.mlu-game-card {
  flex: 0 0 calc(20% - 10px); text-decoration: none;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--card); border: 1px solid var(--border);
  transition: transform var(--trans), border-color var(--trans);
}
.mlu-game-card:hover { transform: translateY(-5px); border-color: rgba(240,165,0,0.4); }
.mlu-game-card__img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.mlu-game-card__name {
  display: block; font-size: 11px; font-weight: 600; padding: 8px 10px;
  color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
@media (max-width: 767px) { .mlu-game-card { flex: 0 0 calc(50% - 6px); } }
@media (min-width: 768px) and (max-width: 1000px) { .mlu-game-card { flex: 0 0 calc(25% - 9px); } }

/* ── Categories strip ──────────────────────────────── */
.mlu-cats { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.mlu-cat {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; background: var(--card);
  border: 1px solid var(--border); border-radius: 50px;
  font-size: 13px; font-weight: 700; color: var(--muted);
  transition: all var(--trans); cursor: default;
}
.mlu-cat--active { background: rgba(240,165,0,0.1); border-color: rgba(240,165,0,0.4); color: var(--gold); }

/* ── Providers grid ────────────────────────────────── */
.mlu-providers-grid { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; align-items: center; }
.mlu-provider-card {
  flex: 1 1 160px; display: flex; align-items: center; justify-content: center;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 20px 16px; transition: border-color var(--trans);
}
.mlu-provider-card:hover { border-color: rgba(240,165,0,0.3); }
.mlu-provider-card img {
  max-width: 110px; height: 36px; object-fit: contain;
  filter: grayscale(40%) brightness(0.9); transition: filter var(--trans);
}
.mlu-provider-card:hover img { filter: grayscale(0%) brightness(1.1); }

/* ── Payments grid ─────────────────────────────────── */
.mlu-payments-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; align-items: center; }
.mlu-payment-card {
  display: flex; align-items: center; justify-content: center;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 10px 16px; transition: border-color var(--trans);
}
.mlu-payment-card:hover { border-color: rgba(240,165,0,0.3); }
.mlu-payment-card img { height: 28px; width: auto; }

/* ── Two-col layout ────────────────────────────────── */
.mlu-two-col { display: flex; gap: 48px; align-items: center; }
.mlu-two-col__text { flex: 1; }
.mlu-two-col__visual { flex: 1; }
.mlu-two-col--rev { flex-direction: row-reverse; }
@media (max-width: 767px) {
  .mlu-two-col, .mlu-two-col--rev { flex-direction: column; gap: 32px; }
}
.mlu-device-frame {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; text-align: center;
}
.mlu-device-frame img { border-radius: var(--radius); }

/* ── Info list ─────────────────────────────────────── */
.mlu-checklist { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.mlu-checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; }
.mlu-checklist li::before {
  content: ''; display: flex; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(240,165,0,0.15); border: 1px solid rgba(240,165,0,0.35);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3 3 7-7' stroke='%23F0A500' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ── Limitations list ──────────────────────────────── */
.mlu-limits { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.mlu-limits li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--muted); }
.mlu-limits li::before {
  content: ''; display: flex; flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M2 2l6 6M8 2l-6 6' stroke='%237480A8' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ── Reviews slider ────────────────────────────────── */
.mlu-reviews-slider { position: relative; overflow: hidden; margin-top: 36px; }
.mlu-reviews-track { display: flex; gap: 20px; transition: transform 0.4s ease; }
.mlu-review-card {
  flex: 0 0 calc(33.333% - 14px); min-width: 280px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
}
.mlu-review-card__header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 10px; }
.mlu-review-card__name { font-size: 14px; font-weight: 800; color: var(--text); }
.mlu-review-card__loc { font-size: 12px; color: var(--muted); margin-top: 2px; }
.mlu-review-card__stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.mlu-review-card__meta { font-size: 12px; color: var(--flame); font-weight: 600; margin-bottom: 12px; }
.mlu-review-card__text { font-size: 14px; color: var(--muted); line-height: 1.65; font-style: italic; }
.mlu-slider-controls { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 28px; }
.mlu-slider-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--border); background: var(--card);
  color: var(--text); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--trans);
}
.mlu-slider-btn:hover { border-color: var(--gold); color: var(--gold); }
.mlu-slider-dots { display: flex; gap: 8px; }
.mlu-slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; background: var(--card-2); cursor: pointer; transition: background var(--trans);
}
.mlu-slider-dot.active { background: var(--gold); }
@media (max-width: 767px) { .mlu-review-card { flex: 0 0 100%; } }
@media (min-width: 768px) and (max-width: 1000px) { .mlu-review-card { flex: 0 0 calc(50% - 10px); } }

/* ── FAQ accordion ─────────────────────────────────── */
.mlu-faq { display: flex; flex-direction: column; gap: 8px; margin-top: 36px; }
.mlu-faq__item { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.mlu-faq__q {
  width: 100%; background: transparent; border: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; text-align: left; cursor: pointer; gap: 16px;
  font-family: 'Mulish', sans-serif; font-size: 15px; font-weight: 700; color: var(--text);
  transition: color var(--trans);
}
.mlu-faq__q:hover { color: var(--gold); }
.mlu-faq__arrow {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
  background: var(--card-2); display: flex; align-items: center; justify-content: center;
  transition: transform var(--trans), background var(--trans);
}
.mlu-faq__arrow svg { display: block; }
.mlu-faq__item.open .mlu-faq__arrow { transform: rotate(180deg); background: rgba(240,165,0,0.15); }
.mlu-faq__item.open .mlu-faq__q { color: var(--gold); }
.mlu-faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.mlu-faq__a-inner { padding: 0 24px 20px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.mlu-faq__item.open .mlu-faq__a { max-height: 600px; }

/* ── CTA banner ────────────────────────────────────── */
.mlu-cta-banner {
  background: linear-gradient(120deg, #1A0F00 0%, #0F1226 50%, #0A0F30 100%);
  border: 1px solid rgba(240,165,0,0.2); border-radius: var(--radius-lg);
  padding: 52px 40px; text-align: center; position: relative; overflow: hidden;
}
.mlu-cta-banner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(240,165,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.mlu-cta-banner__title { font-size: clamp(22px, 3vw, 36px); font-weight: 900; margin-bottom: 12px; }
.mlu-cta-banner__sub { font-size: 16px; color: var(--muted); margin-bottom: 28px; }
@media (max-width: 767px) { .mlu-cta-banner { padding: 36px 20px; } }

/* ── Footer ────────────────────────────────────────── */
.mlu-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: 52px;
}
.mlu-footer__top { display: flex; gap: 48px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.mlu-footer__brand { flex: 0 0 240px; }
.mlu-footer__logo img { height: 34px; margin-bottom: 16px; }
.mlu-footer__tagline { font-size: 13px; color: var(--muted); line-height: 1.6; }
.mlu-footer__cols { flex: 1; display: flex; gap: 32px; flex-wrap: wrap; }
.mlu-footer__col { flex: 1 1 120px; }
.mlu-footer__col-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); margin-bottom: 14px; }
.mlu-footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.mlu-footer__col a { font-size: 13px; color: var(--muted); transition: color var(--trans); }
.mlu-footer__col a:hover { color: var(--gold); }
.mlu-footer__reviewers {
  padding: 28px 0; border-bottom: 1px solid var(--border);
}
.mlu-footer__reviewers-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); margin-bottom: 16px; }
.mlu-footer__reviewers-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.mlu-footer__reviewer {
  display: flex; align-items: center; justify-content: center;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 8px 14px; transition: border-color var(--trans);
}
.mlu-footer__reviewer:hover { border-color: rgba(240,165,0,0.3); }
.mlu-footer__reviewer img { height: 22px; width: auto; filter: grayscale(60%) brightness(0.85); transition: filter var(--trans); }
.mlu-footer__reviewer:hover img { filter: grayscale(0%) brightness(1); }
.mlu-footer__bottom { padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.mlu-footer__copy { font-size: 12px; color: var(--muted); }
.mlu-footer__legal { font-size: 12px; color: var(--muted); text-align: right; max-width: 480px; line-height: 1.5; }
@media (max-width: 767px) {
  .mlu-footer__top { flex-direction: column; gap: 32px; }
  .mlu-footer__brand { flex: 1 1 100%; }
  .mlu-footer__bottom { flex-direction: column; align-items: flex-start; }
  .mlu-footer__legal { text-align: left; }
}

/* ── Responsive header ─────────────────────────────── */
@media (max-width: 980px) {
  .mlu-nav { display: none; }
  .mlu-burger { display: flex; }
}
@media (max-width: 767px) {
  .mlu-head__actions { display: none; }
}

/* ── Breadcrumb ────────────────────────────────────── */
.mlu-bread {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.mlu-bread__inner { max-width: var(--max); margin: 0 auto; padding: 0 20px; display: flex; gap: 8px; align-items: center; font-size: 12px; }
.mlu-bread a { color: var(--muted); }
.mlu-bread a:hover { color: var(--gold); }
.mlu-bread__sep { color: var(--muted); }
.mlu-bread__cur { color: var(--text); font-weight: 600; }

/* ── Page hero (subpages) ──────────────────────────── */
.mlu-page-hero {
  position: relative; overflow: hidden;
  padding: 72px 0 64px;
  border-bottom: 1px solid var(--border); text-align: center;
  background: var(--surface);
  min-height: 340px; display: flex; align-items: center;
}
.mlu-page-hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.mlu-page-hero__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
  display: block;
}
.mlu-page-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,10,28,0.72) 0%, rgba(8,10,28,0.88) 60%, rgba(8,10,28,0.97) 100%);
}
.mlu-page-hero__content {
  position: relative; z-index: 1; width: 100%;
}
.mlu-page-hero__icon { display: flex; justify-content: center; margin-bottom: 16px; }
.mlu-page-hero__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
@media (max-width: 767px) {
  .mlu-page-hero { min-height: 280px; padding: 56px 0 48px; }
}

/* ── Inline promo grid (all promos page) ───────────── */
.mlu-promos-full { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 40px; }
.mlu-promos-full .mlu-promo-card { flex: 1 1 calc(33.333% - 14px); }
@media (max-width: 767px) { .mlu-promos-full .mlu-promo-card { flex: 1 1 100%; } }
@media (min-width: 768px) and (max-width: 1000px) { .mlu-promos-full .mlu-promo-card { flex: 1 1 calc(50% - 10px); } }

/* ── Text content ──────────────────────────────────── */
.mlu-prose p { font-size: 15px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; }
.mlu-prose p:last-child { margin-bottom: 0; }
.mlu-prose strong { color: var(--text); }
.mlu-notice {
  background: rgba(240,165,0,0.06); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px; margin: 20px 0; font-size: 14px; color: var(--muted);
}
.mlu-notice strong { color: var(--gold); }

/* ── Utility ───────────────────────────────────────── */
.mlu-mb-4 { margin-bottom: 4px; }
.mlu-mb-8 { margin-bottom: 8px; }
.mlu-mb-16 { margin-bottom: 16px; }
.mlu-mb-24 { margin-bottom: 24px; }
.mlu-mt-8 { margin-top: 8px; }
.mlu-mt-16 { margin-top: 16px; }
.mlu-mt-24 { margin-top: 24px; }
.mlu-mt-32 { margin-top: 32px; }
.mlu-text-center { text-align: center; }
.mlu-text-center .mlu-lead { margin-left: auto; margin-right: auto; }
