
    :root {
      --ink: #161924;
      --muted: #6a7282;
      --paper: #ffffff;
      --soft: #f2f3f1;
      --line: #e2e2dc;
      --green-950: #041d14;
      --green-900: #08291c;
      --green-700: #0f6d47;
      --green-500: #20c989;
      --red-700: #a7191d;
      --red-600: #d52b2f;
      --gold: #f5c353;
      --gold-dark: #c78926;
      --shadow: 0 20px 50px rgba(21, 23, 28, .12);
      --radius: 8px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--soft);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.6;
      letter-spacing: 0;
    }

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

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      color: #fff;
      background: rgba(4, 29, 20, .96);
      border-bottom: 1px solid rgba(255, 255, 255, .12);
      backdrop-filter: blur(16px);
    }

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

    .header-inner {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-weight: 950;
      white-space: nowrap;
    }

    .brand-mark {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #fff;
      background: linear-gradient(135deg, var(--red-600), var(--gold) 58%, var(--green-500));
      box-shadow: 0 12px 26px rgba(213, 43, 47, .24);
      font-size: 15px;
    }

    .brand strong {
      display: block;
      font-size: 24px;
      line-height: 1;
    }

    .brand span span {
      display: block;
      margin-top: 3px;
      color: rgba(255, 255, 255, .64);
      font-size: 10px;
      font-weight: 800;
      line-height: 1;
      text-transform: uppercase;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 4px;
      color: rgba(255, 255, 255, .74);
      font-size: 13px;
      font-weight: 850;
      text-transform: uppercase;
    }

    .nav a {
      padding: 10px 12px;
      border-radius: 6px;
    }

    .nav a:hover {
      color: #fff;
      background: rgba(255, 255, 255, .08);
    }

    .nav .action {
      color: #261605;
      background: var(--gold);
      box-shadow: 0 12px 24px rgba(245, 195, 83, .22);
    }

    .hero {
      min-height: 690px;
      color: #fff;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(4, 29, 20, .98) 0%, rgba(4, 29, 20, .91) 34%, rgba(4, 29, 20, .52) 62%, rgba(4, 29, 20, .14) 100%),
        url("/assets/me88-hero.png") center right / cover no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 140px;
      background: linear-gradient(180deg, rgba(242, 243, 241, 0), var(--soft));
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      padding: 88px 0 118px;
    }

    .hero-copy {
      width: min(640px, 100%);
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(58px, 9vw, 116px);
      line-height: .88;
      letter-spacing: 0;
      font-weight: 950;
    }

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

    .hero-lead {
      width: min(590px, 100%);
      margin: 26px 0 0;
      color: rgba(255, 255, 255, .82);
      font-size: 19px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 36px;
    }

    .btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 13px 20px;
      border-radius: 6px;
      border: 1px solid transparent;
      font-size: 14px;
      font-weight: 950;
      text-transform: uppercase;
    }

    .btn-primary {
      color: #261605;
      background: var(--gold);
      box-shadow: 0 15px 34px rgba(245, 195, 83, .28);
    }

    .btn-secondary {
      color: #fff;
      border-color: rgba(255, 255, 255, .28);
      background: rgba(255, 255, 255, .08);
    }

    .hero-metrics {
      width: min(620px, 100%);
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 54px;
    }

    .metric {
      min-height: 98px;
      padding: 17px 18px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, .14);
      background: rgba(255, 255, 255, .08);
    }

    .metric strong {
      display: block;
      color: #fff;
      font-size: 26px;
      line-height: 1.1;
    }

    .metric span {
      display: block;
      margin-top: 7px;
      color: rgba(255, 255, 255, .7);
      font-size: 13px;
      font-weight: 700;
    }

    .section {
      padding: 86px 0;
    }

    .section.white {
      background: #fff;
    }

    .section.dark {
      color: #fff;
      background: var(--green-950);
    }

    .section-head {
      width: min(760px, 100%);
      margin-bottom: 36px;
    }

    .center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .section-title {
      margin: 0;
      color: var(--ink);
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.07;
      letter-spacing: 0;
      font-weight: 950;
    }

    .dark .section-title {
      color: #fff;
    }

    .section-copy {
      margin: 16px 0 0;
      color: var(--muted);
      font-size: 16px;
    }

    .dark .section-copy {
      color: rgba(255, 255, 255, .72);
    }

    .intro-grid {
      display: grid;
      grid-template-columns: 1.08fr .92fr .92fr;
      gap: 16px;
    }

    .panel,
    .feature,
    .lobby-card,
    .step,
    .faq,
    .article-card,
    .table-card {
      border-radius: var(--radius);
      background: var(--paper);
      border: 1px solid var(--line);
    }

    .panel {
      min-height: 248px;
      padding: 30px;
      box-shadow: var(--shadow);
    }

    .panel.featured {
      color: #fff;
      border-color: transparent;
      background:
        linear-gradient(135deg, rgba(167, 25, 29, .94), rgba(4, 29, 20, .97)),
        linear-gradient(90deg, rgba(245, 195, 83, .16), rgba(245, 195, 83, 0));
    }

    .panel.featured .section-title,
    .panel.featured h3 {
      color: #fff;
    }

    .number {
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      margin-bottom: 24px;
      border-radius: 8px;
      color: #321d08;
      background: var(--gold);
      font-weight: 950;
    }

    .panel h3,
    .feature h3,
    .lobby-card h3,
    .step h3,
    .faq h3,
    .article-card h3 {
      margin: 0;
      color: var(--ink);
      font-size: 20px;
      line-height: 1.2;
      font-weight: 900;
      letter-spacing: 0;
    }

    .panel p,
    .feature p,
    .lobby-card p,
    .step p,
    .faq p,
    .article-card p {
      margin: 13px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .panel.featured p {
      color: rgba(255, 255, 255, .72);
    }

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

    .feature {
      min-height: 270px;
      padding: 26px;
    }

    .feature-icon {
      width: 62px;
      height: 62px;
      margin-bottom: 24px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #fff;
      background: linear-gradient(135deg, var(--red-600), var(--gold));
      font-size: 28px;
      font-weight: 950;
    }

    .lobby-layout {
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      gap: 28px;
      align-items: stretch;
    }

    .visual-frame {
      min-height: 590px;
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      background:
        linear-gradient(180deg, rgba(4, 29, 20, .12), rgba(4, 29, 20, .92)),
        url("/assets/me88-hero.png") center / cover no-repeat;
      box-shadow: var(--shadow);
    }

    .visual-copy {
      position: absolute;
      left: 30px;
      right: 30px;
      bottom: 30px;
      color: #fff;
    }

    .visual-copy h3 {
      margin: 0;
      font-size: 32px;
      line-height: 1.08;
      font-weight: 950;
      letter-spacing: 0;
    }

    .visual-copy p {
      margin: 12px 0 0;
      color: rgba(255, 255, 255, .75);
    }

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

    .lobby-card {
      min-height: 220px;
      padding: 24px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 4px 10px;
      margin-bottom: 24px;
      border-radius: 6px;
      color: #fff;
      background: var(--red-600);
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
    }

    .table-card {
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .table-card table {
      width: 100%;
      border-collapse: collapse;
      background: #fff;
      font-size: 14px;
    }

    .table-card th,
    .table-card td {
      padding: 16px 18px;
      border-bottom: 1px solid var(--line);
      text-align: left;
      vertical-align: top;
    }

    .table-card th {
      color: #fff;
      background: var(--green-950);
      font-weight: 900;
    }

    .table-card tr:last-child td {
      border-bottom: 0;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      counter-reset: step;
    }

    .step {
      min-height: 248px;
      padding: 25px;
      counter-increment: step;
    }

    .step::before {
      content: counter(step, decimal-leading-zero);
      display: inline-grid;
      place-items: center;
      width: 44px;
      height: 44px;
      margin-bottom: 42px;
      border-radius: 8px;
      color: #321d08;
      background: var(--gold);
      font-weight: 950;
    }

    .band {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 42px;
      align-items: center;
    }

    .band h2 {
      margin: 0;
      color: #fff;
      font-size: clamp(34px, 5vw, 64px);
      line-height: 1;
      letter-spacing: 0;
      font-weight: 950;
    }

    .band-points {
      display: grid;
      gap: 12px;
    }

    .band-point {
      min-height: 86px;
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 16px;
      align-items: center;
      padding: 17px;
      border-radius: 8px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .12);
    }

    .band-point strong {
      display: grid;
      place-items: center;
      width: 54px;
      height: 54px;
      border-radius: 8px;
      color: #321d08;
      background: var(--gold);
      font-size: 18px;
    }

    .band-point h3 {
      margin: 0;
      color: #fff;
      font-size: 17px;
    }

    .band-point p {
      margin: 4px 0 0;
      color: rgba(255, 255, 255, .64);
      font-size: 13px;
    }

    .faq-grid,
    .article-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .faq {
      min-height: 196px;
      padding: 24px;
    }

    .article-card {
      min-height: 232px;
      padding: 23px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .date {
      display: inline-flex;
      width: max-content;
      min-height: 30px;
      align-items: center;
      padding: 4px 9px;
      border-radius: 6px;
      color: #fff;
      background: var(--red-600);
      font-size: 12px;
      font-weight: 950;
    }

    .read {
      margin-top: 18px;
      color: var(--red-700);
      font-size: 14px;
      font-weight: 950;
      text-transform: uppercase;
    }

    .site-footer {
      color: rgba(255, 255, 255, .72);
      background: #06110d;
      padding: 52px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.25fr .75fr .75fr .75fr;
      gap: 28px;
    }

    .site-footer h3 {
      margin: 0 0 13px;
      color: #fff;
      font-size: 17px;
    }

    .site-footer ul {
      display: grid;
      gap: 9px;
      margin: 0;
      padding: 0;
      list-style: none;
      font-size: 14px;
    }

    .footer-bottom {
      margin-top: 38px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, .12);
      color: rgba(255, 255, 255, .52);
      font-size: 13px;
      text-align: center;
    }

    @media (max-width: 1020px) {
      .header-inner {
        min-height: auto;
        padding: 16px 0;
        align-items: flex-start;
        flex-direction: column;
      }

      .nav {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 4px;
      }

      .nav a {
        flex: 0 0 auto;
      }

      .hero {
        min-height: 650px;
        background:
          linear-gradient(180deg, rgba(4, 29, 20, .86) 0%, rgba(4, 29, 20, .88) 48%, rgba(4, 29, 20, .42) 100%),
          url("/assets/me88-hero.png") center bottom / cover no-repeat;
      }

      .hero-inner {
        padding: 62px 0 210px;
      }

      .intro-grid,
      .lobby-layout,
      .band,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .feature-grid,
      .steps,
      .faq-grid,
      .article-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 680px) {
      .wrap {
        width: min(100% - 28px, var(--max));
      }

      .brand strong {
        font-size: 21px;
      }

      .nav {
        font-size: 12px;
      }

      .hero {
        min-height: 720px;
        background:
          linear-gradient(180deg, rgba(4, 29, 20, .9) 0%, rgba(4, 29, 20, .92) 46%, rgba(4, 29, 20, .36) 100%),
          url("/assets/me88-hero.png") 62% bottom / 132% auto no-repeat;
      }

      .hero-inner {
        padding: 34px 0 168px;
      }

      .hero h1 {
        font-size: clamp(50px, 17vw, 70px);
      }

      .hero-lead {
        margin-top: 18px;
        font-size: 16px;
      }

      .hero-actions {
        margin-top: 22px;
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .hero-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 24px;
      }

      .metric {
        min-height: 74px;
        padding: 11px 10px;
      }

      .metric strong {
        font-size: 19px;
      }

      .metric span {
        font-size: 11px;
      }

      .feature-grid,
      .lobby-grid,
      .steps,
      .faq-grid,
      .article-grid {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 64px 0;
      }

      .panel,
      .feature,
      .lobby-card,
      .step,
      .faq,
      .article-card {
        min-height: auto;
      }

      .visual-frame {
        min-height: 410px;
      }

      .visual-copy {
        left: 22px;
        right: 22px;
        bottom: 22px;
      }

      .table-card {
        overflow-x: auto;
      }

      .table-card table {
        min-width: 620px;
      }
    }
  

.breadcrumb {
  margin: 18px auto 0;
  padding: 12px 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.article-hero {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 29, 20, .98), rgba(4, 29, 20, .72)),
    url("/assets/me88-hero.png") center right / cover no-repeat;
  padding: 90px 0;
}

.article-hero h1 {
  width: min(860px, 100%);
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 950;
}

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

.article-box,
.side-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.article-box {
  padding: 34px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
}

.article-body,
.article-body p,
.article-body li {
  color: #2d3340;
  font-size: 16px;
  line-height: 1.85;
}

.article-body h2,
.article-body h3 {
  color: var(--ink);
  font-weight: 950;
  line-height: 1.18;
}

.article-body img {
  height: auto;
  border-radius: 8px;
}

.page-tools,
.prenext {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.page-tools ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-tools a,
.prenext a {
  color: var(--red-700);
  font-weight: 950;
}

.side-box {
  overflow: hidden;
}

.side-visual {
  min-height: 240px;
  background: url("/assets/me88-hero.png") center / cover no-repeat;
}

.side-content {
  padding: 24px;
}

.side-content h2 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.05;
  font-weight: 950;
}

.side-content p {
  color: var(--muted);
}

@media (max-width: 1020px) {
  .article-layout { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .article-hero { padding: 62px 0; }
  .article-box { padding: 24px; }
}
