* {
  box-sizing: border-box;
}

:root {
  --mx-bg: #050505;
  --mx-bg-2: #0c0c0d;
  --mx-panel: #121212;
  --mx-panel-2: #171717;
  --mx-line: rgba(255, 184, 54, 0.2);
  --mx-line-strong: rgba(255, 184, 54, 0.48);
  --mx-text: #f8f8f6;
  --mx-muted: #bdb8ad;
  --mx-soft: #8c877e;
  --mx-gold: #ffb728;
  --mx-orange: #ff6b00;
  --mx-deep: #120804;
  --mx-radius: 10px;
  --mx-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--mx-bg);
  color: var(--mx-text);
  overflow-x: hidden;
}

body {
  font-size: 16px;
  line-height: 1.62;
  background:
    radial-gradient(circle at 78% 7%, rgba(255, 128, 0, 0.14), transparent 30rem),
    radial-gradient(circle at 14% 35%, rgba(255, 184, 40, 0.08), transparent 32rem),
    linear-gradient(180deg, #070707 0%, #050505 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.mx-page {
  width: 100%;
  min-height: 100vh;
}

.mx-shell {
  width: min(1250px, calc(100% - 64px));
  margin: 0 auto;
}

.mx-topline {
  background: linear-gradient(90deg, #2e1604 0%, #ff7a0a 55%, #160d06 100%);
  border-bottom: 1px solid rgba(255, 181, 62, 0.24);
  color: #fff7df;
  font-size: 13px;
}

.mx-topline .mx-shell {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.mx-topnote,
.mx-support {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.mx-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mx-brandbar {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.mx-logo {
  display: inline-flex;
  align-items: baseline;
  color: #fff;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
}

.mx-logo span {
  color: var(--mx-orange);
}

.mx-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.mx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid rgba(255, 184, 54, 0.55);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mx-btn-primary {
  border-color: #ff8a18;
  background: linear-gradient(180deg, #ff8f1d 0%, #ff6300 100%);
  box-shadow: 0 14px 34px rgba(255, 105, 0, 0.28);
}

.mx-btn-dark {
  background: #0d0d0d;
}

.mx-navwrap {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mx-nav {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 55px;
  color: #f5f2ec;
  font-size: 15px;
  font-weight: 800;
}

.mx-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 64px;
}

.mx-nav a:first-child {
  color: var(--mx-gold);
}

.mx-nav a:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--mx-gold), var(--mx-orange));
}

.mx-hero {
  position: relative;
  border-bottom: 1px solid rgba(255, 184, 54, 0.1);
  overflow: hidden;
}

.mx-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 50%, rgba(255, 148, 16, 0.2), transparent 28rem),
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.96) 38%, rgba(5, 5, 5, 0.68) 58%, rgba(5, 5, 5, 0.04) 100%);
  pointer-events: none;
  z-index: 1;
}

.mx-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(470px, 0.86fr) minmax(560px, 1.14fr);
  align-items: center;
  min-height: 520px;
  gap: 24px;
}

.mx-hero-copy {
  padding: 58px 0 50px;
}

.mx-hero h1 {
  margin: 0;
  max-width: 570px;
  font-size: clamp(46px, 4.7vw, 68px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: 0;
}

.mx-hero h1 span {
  display: block;
  color: var(--mx-orange);
}

.mx-lead {
  max-width: 570px;
  margin: 28px 0 30px;
  color: #f2eee6;
  font-size: 20px;
  font-weight: 600;
}

.mx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
}

.mx-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  color: #f0eadf;
  font-size: 13px;
  font-weight: 800;
}

.mx-mini span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.mx-hero-art {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.mx-hero-art img {
  width: min(760px, 105%);
  border-radius: 4px;
  filter: saturate(1.05) contrast(1.04);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 11%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 11%, #000 94%, transparent 100%);
}

.mx-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: -18px;
  position: relative;
  z-index: 4;
  border: 1px solid rgba(255, 184, 54, 0.25);
  border-radius: var(--mx-radius);
  background: rgba(18, 18, 18, 0.88);
  box-shadow: var(--mx-shadow);
  overflow: hidden;
}

.mx-benefit {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 28px 28px;
  border-right: 1px solid rgba(255, 184, 54, 0.2);
}

.mx-benefit:last-child {
  border-right: 0;
}

.mx-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 2px solid rgba(255, 184, 54, 0.65);
  color: var(--mx-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: 900;
  background: radial-gradient(circle, rgba(255, 184, 54, 0.15), rgba(255, 184, 54, 0.02));
}

.mx-benefit h3,
.mx-card h3,
.mx-article-card h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  line-height: 1.25;
}

.mx-benefit p,
.mx-card p,
.mx-article-card p,
.mx-footer p {
  margin: 7px 0 0;
  color: var(--mx-muted);
  font-size: 14px;
}

.mx-cats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  padding: 26px 0;
}

.mx-cat {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid rgba(255, 184, 54, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    #121212;
  color: #fff;
  font-size: 19px;
  font-weight: 900;
}

.mx-cat i {
  color: var(--mx-gold);
  font-style: normal;
  font-size: 42px;
  line-height: 1;
}

.mx-cat small {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--mx-gold);
  border: 1px solid rgba(255, 184, 54, 0.55);
  font-size: 13px;
}

.mx-panel {
  border: 1px solid rgba(255, 184, 54, 0.2);
  border-radius: var(--mx-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    var(--mx-panel);
}

.mx-app {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) 1fr;
  gap: 44px;
  padding: 0;
  overflow: hidden;
}

.mx-app-media {
  min-height: 350px;
  background: #080808;
}

.mx-app-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mx-app-copy {
  padding: 42px 42px 38px 0;
}

.mx-section-title {
  margin: 0 0 8px;
  color: var(--mx-orange);
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
}

.mx-section-copy {
  margin: 0 0 30px;
  color: #f2eee6;
  font-size: 18px;
  font-weight: 700;
}

.mx-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0 0 28px;
}

.mx-feature {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  color: var(--mx-muted);
}

.mx-feature strong {
  display: block;
  color: #fff;
  font-size: 17px;
}

.mx-linkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 10px 18px;
  color: var(--mx-gold);
  border: 1px solid rgba(255, 184, 54, 0.55);
  border-radius: 7px;
  font-weight: 900;
}

.mx-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.mx-steps {
  padding: 34px 0 16px;
}

.mx-centered {
  text-align: center;
}

.mx-step-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.mx-step {
  position: relative;
  min-height: 166px;
  padding: 24px 20px;
  text-align: center;
}

.mx-step:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mx-gold);
  font-size: 26px;
  font-weight: 900;
}

.mx-number {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: #111;
  background: linear-gradient(180deg, #ffd06a, #ff7a0a);
  font-size: 24px;
  font-weight: 950;
}

.mx-updates {
  padding: 16px 0 24px;
}

.mx-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.mx-more {
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.mx-article-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mx-article-card {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 18px;
  min-height: 128px;
  padding: 14px;
  border: 1px solid rgba(255, 184, 54, 0.18);
  border-radius: 9px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.mx-thumb {
  min-height: 100px;
  border-radius: 7px;
  border: 1px solid rgba(255, 184, 54, 0.25);
  background:
    radial-gradient(circle at 68% 35%, rgba(255, 198, 79, 0.9), transparent 19%),
    radial-gradient(circle at 35% 55%, rgba(255, 105, 0, 0.42), transparent 32%),
    linear-gradient(135deg, #321303, #0d0d0d);
  position: relative;
  overflow: hidden;
}

.mx-thumb::after {
  content: attr(data-icon);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd45f;
  font-size: 44px;
  font-weight: 950;
  text-shadow: 0 8px 24px rgba(255, 111, 0, 0.55);
}

.mx-card-meta,
.mx-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
  color: #aaa49a;
  font-size: 13px;
}

.mx-faq {
  padding: 6px 0 42px;
}

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

.mx-faq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 20px;
  border: 1px solid rgba(255, 184, 54, 0.16);
  border-radius: 8px;
  background: #121212;
  color: #f4efe6;
  font-weight: 750;
}

.mx-faq-item b {
  color: var(--mx-gold);
  font-size: 24px;
}

.mx-footer {
  border-top: 1px solid rgba(255, 184, 54, 0.24);
  background: #0b0b0b;
}

.mx-footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) 0.8fr 0.8fr 1fr;
  gap: 46px;
  padding: 54px 0 42px;
}

.mx-footer .mx-logo {
  font-size: 44px;
  margin-bottom: 16px;
}

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

.mx-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mx-footer li + li {
  margin-top: 10px;
}

.mx-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.mx-social span {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.mx-copybar {
  padding: 16px 0;
  color: #aaa49a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13px;
}

.mx-article-hero {
  padding: 64px 0 34px;
  border-bottom: 1px solid rgba(255, 184, 54, 0.15);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.72)),
    url("/assets/max79-hero-football.png") right center / contain no-repeat;
}

.mx-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  color: var(--mx-muted);
  font-size: 14px;
}

.mx-article-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.08;
  font-weight: 950;
}

.mx-article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  padding: 42px 0 58px;
}

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

.mx-article-main h2,
.mx-article-main h3 {
  color: var(--mx-orange);
  line-height: 1.18;
}

.mx-article-main p,
.mx-article-main li {
  color: #ddd5ca;
}

.mx-article-main a {
  color: var(--mx-gold);
}

.mx-article-main img {
  border-radius: 8px;
  border: 1px solid rgba(255, 184, 54, 0.18);
}

.mx-article-side {
  align-self: start;
  padding: 24px;
}

.mx-side-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.mx-side-list li + li {
  border-top: 1px solid rgba(255, 184, 54, 0.13);
  margin-top: 13px;
  padding-top: 13px;
}

.mx-pagination,
.mx-prenext {
  margin-top: 24px;
  color: var(--mx-gold);
}

.mx-pagination ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

@media (max-width: 980px) {
  .mx-shell {
    width: min(100% - 36px, 760px);
  }

  .mx-topline .mx-shell,
  .mx-brandbar {
    min-height: 72px;
  }

  .mx-topline {
    display: none;
  }

  .mx-logo {
    font-size: 34px;
  }

  .mx-actions .mx-btn {
    min-height: 42px;
    padding: 0 18px;
    font-size: 14px;
  }

  .mx-nav {
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .mx-nav::-webkit-scrollbar {
    display: none;
  }

  .mx-nav a {
    white-space: nowrap;
  }

  .mx-hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mx-hero::before {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.72) 55%, #050505 100%);
  }

  .mx-hero-copy {
    padding: 34px 0 12px;
  }

  .mx-hero h1 {
    font-size: clamp(42px, 12vw, 68px);
  }

  .mx-lead {
    font-size: 17px;
  }

  .mx-hero-art {
    min-height: auto;
    padding-bottom: 28px;
    justify-content: center;
  }

  .mx-hero-art img {
    width: 100%;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 90%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 90%, transparent 100%);
  }

  .mx-benefits,
  .mx-cats,
  .mx-app,
  .mx-step-grid,
  .mx-article-grid,
  .mx-faq-grid,
  .mx-footer-grid,
  .mx-article-wrap {
    grid-template-columns: 1fr;
  }

  .mx-benefit {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 184, 54, 0.14);
  }

  .mx-cats {
    grid-template-columns: repeat(2, 1fr);
  }

  .mx-app-copy {
    padding: 28px;
  }

  .mx-app-media {
    min-height: 220px;
  }

  .mx-feature-grid {
    grid-template-columns: 1fr;
  }

  .mx-step:not(:last-child)::after {
    display: none;
  }

  .mx-article-card {
    grid-template-columns: 112px 1fr;
  }

  .mx-footer-grid {
    gap: 26px;
  }

  .mx-article-hero {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.88), #050505 78%),
      url("/assets/max79-hero-football.png") center bottom / 100% auto no-repeat;
  }
}

@media (max-width: 560px) {
  .mx-shell {
    width: min(100% - 28px, 460px);
  }

  .mx-brandbar {
    gap: 14px;
  }

  .mx-actions {
    gap: 8px;
  }

  .mx-actions .mx-btn {
    padding: 0 14px;
    min-height: 40px;
  }

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

  .mx-btn {
    width: 100%;
    min-height: 52px;
  }

  .mx-hero-actions,
  .mx-store-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .mx-mini {
    gap: 14px;
  }

  .mx-benefit {
    grid-template-columns: 50px 1fr;
    padding: 20px;
  }

  .mx-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .mx-cat {
    min-height: 118px;
    font-size: 16px;
  }

  .mx-cat i {
    font-size: 32px;
  }

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

  .mx-article-card {
    grid-template-columns: 92px 1fr;
    gap: 12px;
  }

  .mx-thumb {
    min-height: 82px;
  }

  .mx-thumb::after {
    font-size: 34px;
  }

  .mx-article-main {
    padding: 24px 18px;
  }
}
