:root {
  --mm99-black: #070a0f;
  --mm99-ink: #111827;
  --mm99-muted: #667085;
  --mm99-red: #db1016;
  --mm99-red-dark: #990005;
  --mm99-gold: #ffc247;
  --mm99-gold-soft: #ffe1a0;
  --mm99-border: #e7e9ee;
  --mm99-surface: #ffffff;
  --mm99-soft: #f6f7f9;
  --mm99-shadow: 0 18px 48px rgba(17, 24, 39, .10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.mm99-page {
  margin: 0;
  color: var(--mm99-ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.mm99-page a {
  color: inherit;
  text-decoration: none;
}

.mm99-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.mm99-topbar {
  background: linear-gradient(90deg, #9b0004, #df1118 55%, #9b0004);
  color: #fff;
  font-size: 14px;
}

.mm99-topbar .mm99-wrap,
.mm99-header .mm99-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.mm99-topbar .mm99-wrap {
  min-height: 50px;
}

.mm99-proof {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  font-weight: 700;
}

.mm99-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mm99-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mm99-gold);
  box-shadow: 0 0 0 4px rgba(255, 194, 71, .18);
  flex: 0 0 auto;
}

.mm99-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 10, 15, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
}

.mm99-header .mm99-wrap {
  min-height: 78px;
}

.mm99-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.mm99-logo img {
  width: 166px;
  height: auto;
  display: block;
}

.mm99-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.mm99-nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  padding: 24px 14px;
  border-bottom: 3px solid transparent;
}

.mm99-nav a:hover,
.mm99-nav a.is-active {
  color: var(--mm99-gold);
  border-bottom-color: var(--mm99-gold);
}

.mm99-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.mm99-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.mm99-btn:hover {
  transform: translateY(-1px);
}

.mm99-btn-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .06);
}

.mm99-btn-red {
  color: #fff;
  background: linear-gradient(135deg, #ff3030, #c80008);
  box-shadow: 0 12px 26px rgba(219, 16, 22, .30);
}

.mm99-btn-gold {
  color: #230b03;
  background: linear-gradient(135deg, #ffe38a, #ffb22e);
  box-shadow: 0 12px 26px rgba(255, 178, 46, .32);
}

.mm99-hero {
  position: relative;
  min-height: 610px;
  color: #fff;
  overflow: hidden;
  background: #05070b;
}

.mm99-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("mm99-hero.png") center right / cover no-repeat;
}

.mm99-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, .95) 0%, rgba(5, 7, 11, .82) 36%, rgba(5, 7, 11, .22) 76%, rgba(5, 7, 11, .10) 100%),
    linear-gradient(180deg, rgba(5, 7, 11, .20), rgba(5, 7, 11, .72));
}

.mm99-hero .mm99-wrap {
  position: relative;
  z-index: 2;
  min-height: 610px;
  display: flex;
  align-items: center;
}

.mm99-hero-copy {
  max-width: 625px;
  padding: 76px 0;
}

.mm99-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

.mm99-hero h1 strong {
  color: var(--mm99-gold);
}

.mm99-hero p {
  max-width: 560px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .88);
  font-size: 21px;
  line-height: 1.7;
}

.mm99-hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0 34px;
}

.mm99-article-hero,
.mm99-article-hero .mm99-wrap {
  min-height: 360px;
}

.mm99-article-hero .mm99-hero-copy {
  max-width: 820px;
  padding: 58px 0;
}

.mm99-article-hero h1 {
  font-size: clamp(34px, 5vw, 58px);
}

.mm99-breadcrumb {
  padding: 18px 0;
  border-bottom: 1px solid var(--mm99-border);
  background: #fff;
}

.mm99-breadcrumb ol {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.mm99-breadcrumb li {
  list-style: none;
  color: var(--mm99-muted);
  font-size: 14px;
  font-weight: 700;
}

.mm99-breadcrumb li + li::before {
  content: "/";
  margin-right: 10px;
  color: #b0b7c3;
}

.mm99-mini {
  min-height: 94px;
  padding: 18px;
  border: 1px solid rgba(255, 194, 71, .26);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

.mm99-mini b {
  display: block;
  color: var(--mm99-gold);
  font-size: 15px;
  line-height: 1.35;
}

.mm99-mini span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.45;
}

.mm99-section {
  padding: 56px 0;
}

.mm99-section-soft {
  background: var(--mm99-soft);
}

.mm99-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.mm99-section-title h2 {
  margin: 0;
  color: #151515;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1.2;
}

.mm99-section-title p {
  max-width: 640px;
  margin: 8px 0 0;
  color: var(--mm99-muted);
}

.mm99-more {
  color: var(--mm99-red);
  font-weight: 900;
  white-space: nowrap;
}

.mm99-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 44px;
  align-items: start;
}

.mm99-copy p {
  margin: 0 0 17px;
  color: #344054;
}

.mm99-checks {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.mm99-checks li {
  list-style: none;
  position: relative;
  padding-left: 30px;
  color: #283341;
  font-weight: 700;
}

.mm99-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--mm99-red);
  box-shadow: inset 0 0 0 5px #fff, 0 0 0 1px var(--mm99-red);
}

.mm99-info-table,
.mm99-bonus-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--mm99-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--mm99-shadow);
}

.mm99-info-table th,
.mm99-info-table td,
.mm99-bonus-table th,
.mm99-bonus-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--mm99-border);
  text-align: left;
  vertical-align: top;
}

.mm99-info-table tr:last-child th,
.mm99-info-table tr:last-child td,
.mm99-bonus-table tr:last-child td {
  border-bottom: 0;
}

.mm99-info-table th,
.mm99-bonus-table th {
  width: 36%;
  color: #1d2939;
  background: #f9fafb;
  font-weight: 900;
}

.mm99-bonus-table thead th {
  width: auto;
  color: #161616;
  background: linear-gradient(180deg, #fff, #f3f4f6);
}

.mm99-promo {
  overflow: hidden;
  border-radius: 8px;
  background: #210306;
  box-shadow: var(--mm99-shadow);
}

.mm99-promo-inner {
  min-height: 280px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  background:
    linear-gradient(90deg, rgba(40, 2, 5, .96) 0%, rgba(58, 4, 8, .84) 45%, rgba(58, 4, 8, .20) 75%),
    url("mm99-promo.png") center right / cover no-repeat;
}

.mm99-promo-copy {
  padding: 42px;
  color: #fff;
}

.mm99-promo-copy h2 {
  margin: 0 0 14px;
  color: var(--mm99-gold);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.mm99-promo-copy p {
  margin: 0 0 24px;
  max-width: 420px;
  color: rgba(255, 255, 255, .86);
}

.mm99-news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.mm99-article-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--mm99-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 24, 39, .08);
}

.mm99-card-thumb {
  position: relative;
  min-height: 168px;
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 194, 71, .65), transparent 30%),
    linear-gradient(135deg, #080b10 0%, #330407 52%, #bd0c13 100%);
}

.mm99-card-thumb.is-sport {
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 194, 71, .65), transparent 30%),
    url("mm99-hero.png") center / cover no-repeat;
}

.mm99-card-thumb.is-promo {
  background:
    linear-gradient(90deg, rgba(40, 2, 5, .70), rgba(40, 2, 5, .10)),
    url("mm99-promo.png") center / cover no-repeat;
}

.mm99-card-thumb.is-guide {
  background:
    radial-gradient(circle at 25% 22%, rgba(255, 194, 71, .55), transparent 28%),
    linear-gradient(135deg, #090c11 0%, #202938 46%, #db1016 100%);
}

.mm99-card-thumb::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 78px;
  height: 78px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, .72);
  background: linear-gradient(135deg, rgba(255,255,255,.20), rgba(255,255,255,.04));
  transform: rotate(-8deg);
}

.mm99-card-thumb span {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 5px;
  color: #fff;
  background: var(--mm99-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mm99-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px;
}

.mm99-date {
  color: var(--mm99-muted);
  font-size: 13px;
  font-weight: 700;
}

.mm99-article-card h3 {
  margin: 8px 0 10px;
  font-size: 20px;
  line-height: 1.35;
}

.mm99-article-card p {
  margin: 0 0 16px;
  color: #475467;
  font-size: 14px;
}

.mm99-read {
  margin-top: auto;
  color: var(--mm99-red);
  font-size: 14px;
  font-weight: 900;
}

.mm99-cats {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border: 1px solid var(--mm99-border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.mm99-cat {
  min-height: 168px;
  padding: 22px 16px;
  border-right: 1px solid var(--mm99-border);
  text-align: center;
}

.mm99-cat:last-child {
  border-right: 0;
}

.mm99-cat-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  border-radius: 50%;
  color: var(--mm99-red);
  background: linear-gradient(180deg, #fff, #fff2f2);
  border: 1px solid #ffd3d3;
  font-size: 27px;
  font-weight: 900;
}

.mm99-cat h3 {
  margin: 0 0 6px;
  color: var(--mm99-red);
  font-size: 18px;
}

.mm99-cat p {
  margin: 0;
  color: #475467;
  font-size: 14px;
}

.mm99-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
}

.mm99-faq details {
  border: 1px solid var(--mm99-border);
  border-radius: 8px;
  background: #fff;
}

.mm99-faq summary {
  cursor: pointer;
  padding: 16px 18px;
  font-weight: 900;
}

.mm99-faq p {
  margin: 0;
  padding: 0 18px 18px;
  color: #475467;
}

.mm99-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
  align-items: start;
}

.mm99-article-main,
.mm99-sidebar-card {
  border: 1px solid var(--mm99-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--mm99-shadow);
}

.mm99-article-main {
  padding: 34px;
}

.mm99-article-main h1 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
}

.mm99-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  color: var(--mm99-muted);
  font-size: 14px;
  font-weight: 700;
}

.mm99-body {
  color: #344054;
}

.mm99-body h2,
.mm99-body h3 {
  color: #161616;
  line-height: 1.25;
}

.mm99-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.mm99-body table {
  width: 100%;
  border-collapse: collapse;
}

.mm99-body th,
.mm99-body td {
  border: 1px solid var(--mm99-border);
  padding: 10px;
}

.mm99-prenext {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--mm99-border);
}

.mm99-sidebar-card {
  padding: 22px;
}

.mm99-sidebar-card h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.mm99-side-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.mm99-side-list li {
  list-style: none;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--mm99-border);
}

.mm99-side-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.mm99-footer {
  color: #fff;
  background: linear-gradient(180deg, #b40006, #730003);
}

.mm99-footer-main {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1fr;
  gap: 34px;
  padding: 46px 0;
}

.mm99-footer img {
  width: 150px;
  height: auto;
  margin-bottom: 14px;
}

.mm99-footer h3 {
  margin: 0 0 12px;
  color: var(--mm99-gold);
  font-size: 18px;
}

.mm99-footer p,
.mm99-footer li {
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
}

.mm99-footer ul {
  margin: 0;
  padding: 0;
}

.mm99-footer li {
  list-style: none;
  margin: 7px 0;
}

.mm99-payments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.mm99-payments span {
  display: grid;
  place-items: center;
  min-height: 38px;
  border-radius: 6px;
  color: #111827;
  background: #fff;
  font-weight: 900;
}

.mm99-footer-bottom {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.mm99-pagination {
  margin-top: 24px;
}

.mm99-pagination ul,
.mm99-pagination .pagination {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.mm99-pagination li {
  list-style: none;
}

.mm99-pagination a,
.mm99-pagination span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--mm99-border);
  border-radius: 6px;
  background: #fff;
}

@media (max-width: 1040px) {
  .mm99-nav {
    display: none;
  }

  .mm99-hero-points,
  .mm99-overview,
  .mm99-promo-inner,
  .mm99-article-layout,
  .mm99-footer-main {
    grid-template-columns: 1fr;
  }

  .mm99-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mm99-cats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .mm99-cat {
    border-bottom: 1px solid var(--mm99-border);
  }
}

@media (max-width: 700px) {
  .mm99-wrap {
    width: min(100% - 24px, 1180px);
  }

  .mm99-topbar {
    display: none;
  }

  .mm99-header .mm99-wrap {
    min-height: 68px;
  }

  .mm99-logo img {
    width: 132px;
  }

  .mm99-actions .mm99-btn-dark {
    display: none;
  }

  .mm99-btn {
    min-height: 40px;
    padding: 0 16px;
  }

  .mm99-hero,
  .mm99-hero .mm99-wrap {
    min-height: 560px;
  }

  .mm99-hero::before {
    background-position: 62% center;
  }

  .mm99-hero::after {
    background: linear-gradient(90deg, rgba(5, 7, 11, .96), rgba(5, 7, 11, .72));
  }

  .mm99-hero h1 {
    font-size: 42px;
  }

  .mm99-hero p {
    font-size: 18px;
  }

  .mm99-hero-points,
  .mm99-news-grid,
  .mm99-cats,
  .mm99-faq {
    grid-template-columns: 1fr;
  }

  .mm99-section {
    padding: 40px 0;
  }

  .mm99-section-title {
    display: block;
  }

  .mm99-section-title h2 {
    font-size: 30px;
  }

  .mm99-promo-copy,
  .mm99-article-main {
    padding: 24px;
  }
}


/* mm99 cleanup 2026070102 */
.mm99-article-card {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.mm99-card-body {
  padding: 16px 0 0;
}

.mm99-card-thumb {
  border-radius: 8px;
  overflow: hidden;
}

.mm99-card-thumb::after {
  display: none;
}

.mm99-card-thumb.is-guide {
  background:
    linear-gradient(90deg, rgba(7, 10, 15, .34), rgba(219, 16, 22, .12)),
    url("mm99-hero.png") center / cover no-repeat;
}

.mm99-cats {
  border: 0;
  background: transparent;
  gap: 18px;
}

.mm99-cat {
  min-height: auto;
  padding: 0 12px;
  border-right: 0;
  border-bottom: 0;
  background: transparent;
}

.mm99-cat-icon {
  display: none;
}


/* mm99 topic thumbnails 2026070103 */
.mm99-card-thumb.is-register,
.mm99-news-grid .mm99-article-card:nth-child(4n+1) .mm99-card-thumb {
  background:
    linear-gradient(90deg, rgba(7, 10, 15, .22), rgba(219, 16, 22, .10)),
    url("mm99-news-register.png") center / cover no-repeat;
}

.mm99-card-thumb.is-sport,
.mm99-news-grid .mm99-article-card:nth-child(4n+2) .mm99-card-thumb {
  background:
    linear-gradient(90deg, rgba(7, 10, 15, .22), rgba(219, 16, 22, .10)),
    url("mm99-hero.png") center / cover no-repeat;
}

.mm99-card-thumb.is-promo,
.mm99-news-grid .mm99-article-card:nth-child(4n+3) .mm99-card-thumb {
  background:
    linear-gradient(90deg, rgba(40, 2, 5, .38), rgba(40, 2, 5, .08)),
    url("mm99-promo.png") center / cover no-repeat;
}

.mm99-card-thumb.is-payment,
.mm99-news-grid .mm99-article-card:nth-child(4n+4) .mm99-card-thumb {
  background:
    linear-gradient(90deg, rgba(7, 10, 15, .20), rgba(219, 16, 22, .10)),
    url("mm99-news-payment.png") center / cover no-repeat;
}
