
    :root {
      --black: #090909;
      --ink: #111317;
      --muted: #5d6674;
      --red: #e11824;
      --red-dark: #990811;
      --gold: #ffd64d;
      --lime: #c6df53;
      --cream: #f8f7ef;
      --line: #e6e3d7;
      --shadow: 0 24px 70px rgba(20, 17, 8, 0.18);
      --radius: 14px;
      font-family: Inter, Arial, Helvetica, sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: #fff;
      font-size: 16px;
      line-height: 1.65;
      letter-spacing: 0;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

    .topbar {
      background: #050506;
      color: #fff;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .topbar .wrap {
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 950;
    }

    .brand-mark {
      width: 58px;
      height: 38px;
      border-radius: 4px;
      display: grid;
      place-items: center;
      color: var(--gold);
      background: linear-gradient(135deg, #1b1b1d 0%, #e11925 55%, #ffe15a 100%);
      box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.12), 0 10px 26px rgba(225, 24, 36, 0.34);
      font-size: 19px;
      letter-spacing: 0;
    }

    .brand strong {
      display: block;
      font-size: 28px;
      line-height: 1;
      color: #fff;
    }

    .brand span {
      display: block;
      color: var(--gold);
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      line-height: 1.2;
    }

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

    .btn {
      min-height: 38px;
      padding: 0 20px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
    }

    .btn.gold {
      color: #231300;
      background: linear-gradient(180deg, #ffed77 0%, #ffc223 48%, #ff8c1a 100%);
      border-color: rgba(255, 229, 98, 0.8);
      box-shadow: 0 10px 26px rgba(255, 187, 36, 0.24);
    }

    .nav {
      background: linear-gradient(180deg, #f22a32, #d51520);
      color: #fff;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }

    .nav .wrap {
      min-height: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 34px;
      overflow-x: auto;
      scrollbar-width: none;
    }

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

    .nav a {
      padding: 15px 0 12px;
      border-bottom: 3px solid transparent;
      color: #fff;
      white-space: nowrap;
      font-size: 12px;
      font-weight: 950;
      text-transform: uppercase;
    }

    .nav a.active {
      color: #fff8cf;
      border-bottom-color: var(--gold);
    }

    .hero {
      position: relative;
      min-height: 520px;
      color: #fff;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(6, 5, 4, 0.94) 0%, rgba(9, 7, 6, 0.82) 35%, rgba(6, 5, 4, 0.14) 72%),
        url("/assets/go88vip-hero.jpg") center right / cover no-repeat,
        #090909;
      border-bottom: 8px solid var(--red);
    }

    .hero .wrap {
      min-height: 520px;
      display: grid;
      grid-template-columns: minmax(0, 640px) 1fr;
      align-items: center;
      padding: 72px 0 76px;
    }

    .hero h1 {
      margin: 0 0 22px;
      max-width: 650px;
      font-size: clamp(48px, 7vw, 104px);
      line-height: 0.95;
      letter-spacing: 0;
      font-weight: 1000;
      text-transform: uppercase;
    }

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

    .hero p {
      margin: 0 0 30px;
      max-width: 560px;
      color: #f6f6f1;
      font-size: 18px;
      line-height: 1.7;
      font-weight: 750;
    }

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

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      max-width: 560px;
    }

    .stat {
      min-height: 86px;
      padding: 16px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(6px);
    }

    .stat b {
      display: block;
      color: var(--gold);
      font-size: 26px;
      line-height: 1;
      font-weight: 1000;
    }

    .stat span {
      display: block;
      margin-top: 8px;
      color: #fff;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .section { padding: 74px 0; }
    .section.white { background: #fff; }
    .section.soft { background: var(--cream); }
    .section.dark {
      background: radial-gradient(circle at 88% 12%, rgba(255, 210, 67, 0.14), transparent 30%), #08090b;
      color: #fff;
    }

    .intro-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) 420px;
      gap: 38px;
      align-items: start;
    }

    .article-card,
    .media-card,
    .news-panel,
    .step-panel,
    .detail-card {
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .article-card {
      padding: 46px;
    }

    .article-card h2,
    .section-head h2,
    .news-title h2 {
      margin: 0 0 18px;
      color: var(--ink);
      font-size: clamp(34px, 4.8vw, 64px);
      line-height: 1.02;
      letter-spacing: 0;
      font-weight: 1000;
    }

    .article-card h2 span,
    .section-head h2 span,
    .news-title h2 span { color: var(--red); }

    .article-card h3 {
      margin: 28px 0 10px;
      color: var(--red);
      font-size: 25px;
      line-height: 1.18;
      font-weight: 1000;
    }

    .article-card p,
    .detail-card p,
    .section-head p,
    .news-title p {
      color: var(--muted);
      font-weight: 650;
      margin: 0 0 16px;
    }

    .info-list {
      margin: 30px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 11px;
    }

    .info-list li {
      padding-left: 22px;
      position: relative;
      color: #222831;
      font-weight: 700;
    }

    .info-list li::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--red);
      position: absolute;
      left: 0;
      top: 11px;
    }

    .media-card {
      position: sticky;
      top: 18px;
      overflow: hidden;
    }

    .media-card img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .media-body {
      padding: 24px;
      background: #0b0b0c;
      color: #fff;
    }

    .media-body h3 {
      margin: 0 0 8px;
      color: #fff;
      font-size: 28px;
      line-height: 1.08;
    }

    .media-body p {
      margin: 0;
      color: rgba(255, 255, 255, 0.78);
      font-weight: 650;
    }

    .dark-layout {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 44px;
      align-items: center;
    }

    .section-head h2 { color: #fff; }
    .section-head p { color: rgba(255,255,255,0.76); }

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

    .category {
      min-height: 150px;
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background:
        linear-gradient(135deg, rgba(225, 24, 36, 0.38), rgba(255, 214, 77, 0.08)),
        rgba(255, 255, 255, 0.05);
    }

    .category h3 {
      margin: 0 0 8px;
      color: var(--gold);
      font-size: 24px;
      line-height: 1.1;
    }

    .category p {
      margin: 0;
      color: rgba(255, 255, 255, 0.78);
      font-weight: 650;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 32px;
      align-items: center;
    }

    .feature-image {
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      background: #050505;
    }

    .feature-image img {
      width: 100%;
      aspect-ratio: 16 / 11;
      object-fit: cover;
    }

    .step-panel {
      padding: 34px;
    }

    .step-panel h2 {
      margin: 0 0 22px;
      font-size: clamp(34px, 4vw, 58px);
      line-height: 1.04;
      font-weight: 1000;
    }

    .step-panel h2 span { color: var(--red); }

    .step {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 16px;
      align-items: start;
      padding: 18px 0;
      border-top: 1px solid var(--line);
    }

    .step:first-of-type { border-top: 0; }

    .step b {
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      color: #1d0e00;
      background: linear-gradient(180deg, var(--gold), #ff9d1b);
      font-size: 21px;
      font-weight: 1000;
    }

    .step strong {
      display: block;
      font-size: 19px;
      line-height: 1.2;
      color: var(--ink);
      font-weight: 1000;
    }

    .step span {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-weight: 650;
    }

    .detail-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 34px;
    }

    .detail-card {
      padding: 28px;
      min-height: 210px;
      box-shadow: 0 18px 46px rgba(20, 17, 8, 0.11);
    }

    .detail-card h3 {
      margin: 0 0 12px;
      font-size: 25px;
      line-height: 1.12;
    }

    .news-block {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
      gap: 30px;
      align-items: start;
      margin-top: 32px;
    }

    .featured-news {
      min-height: 460px;
      display: flex;
      align-items: flex-end;
      color: #fff;
      overflow: hidden;
      background:
        linear-gradient(180deg, transparent 35%, rgba(5, 5, 5, 0.92) 100%),
        url("/assets/go88vip-lobby.jpg") center / cover no-repeat;
      box-shadow: var(--shadow);
    }

    .featured-news div { padding: 30px; }
    .featured-news h3 {
      margin: 0 0 8px;
      font-size: 34px;
      line-height: 1.05;
      font-weight: 1000;
    }
    .featured-news p {
      margin: 0;
      color: rgba(255,255,255,0.84);
      font-weight: 700;
    }

    .news-list {
      display: grid;
      gap: 12px;
    }

    .news-item {
      display: grid;
      grid-template-columns: 138px 1fr;
      gap: 16px;
      padding: 14px;
      align-items: center;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 12px 34px rgba(20, 17, 8, 0.08);
    }

    .thumb {
      min-height: 98px;
      background: url("/assets/go88vip-panel.jpg") center / cover no-repeat;
    }

    .news-item:nth-child(2) .thumb,
    .news-item:nth-child(4) .thumb {
      background-image: url("/assets/go88vip-lobby.jpg");
    }

    .news-item h4 {
      margin: 0 0 5px;
      color: var(--ink);
      font-size: 20px;
      line-height: 1.2;
      font-weight: 1000;
    }

    .news-item p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
      font-weight: 650;
    }

    .footer {
      padding: 60px 0 34px;
      background: var(--lime);
      color: #28310c;
      border-top: 8px solid var(--red);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.7fr 0.7fr;
      gap: 36px;
      align-items: start;
    }

    .footer .brand strong { color: #fff; }
    .footer p,
    .footer a {
      color: #28310c;
      font-weight: 700;
    }

    .footer h3 {
      margin: 0 0 12px;
      font-size: 18px;
      text-transform: uppercase;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .copyright {
      margin-top: 38px;
      padding-top: 24px;
      border-top: 1px solid rgba(40, 49, 12, 0.22);
      font-size: 13px;
      font-weight: 700;
    }

    @media (max-width: 940px) {
      .topbar .wrap {
        align-items: flex-start;
        flex-direction: column;
        padding: 16px 0;
      }
      .actions { width: 100%; }
      .actions .btn { flex: 1; }
      .nav .wrap {
        justify-content: flex-start;
        gap: 22px;
      }
      .hero .wrap,
      .intro-grid,
      .dark-layout,
      .feature-grid,
      .news-block,
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .hero {
        min-height: 650px;
        background-position: 57% center;
      }
      .hero .wrap {
        min-height: 650px;
        align-items: end;
        padding: 72px 0 46px;
      }
      .hero h1 { font-size: clamp(44px, 15vw, 72px); }
      .hero p { font-size: 16px; }
      .hero-stats,
      .category-grid,
      .detail-grid {
        grid-template-columns: 1fr;
      }
      .media-card { position: static; }
      .article-card,
      .step-panel { padding: 28px; }
      .section { padding: 54px 0; }
    }

    @media (max-width: 540px) {
      .wrap { width: min(100% - 28px, 1160px); }
      .brand strong { font-size: 24px; }
      .brand-mark { width: 50px; height: 36px; }
      .nav .wrap {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2px 16px;
        padding: 8px 0;
        overflow: visible;
      }
      .nav a {
        padding: 6px 0 4px;
        font-size: 11px;
        white-space: normal;
        text-align: center;
      }
      .hero-actions .btn { width: 100%; }
      .article-card h2,
      .section-head h2,
      .news-title h2 { font-size: 37px; }
      .news-item { grid-template-columns: 1fr; }
      .thumb { min-height: 128px; }
      .featured-news { min-height: 360px; }
      .featured-news h3 { font-size: 28px; }
    }
  

.article-shell {
  background: #f8f7ef;
  padding: 76px 0;
}

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

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

.article-detail {
  padding: 42px;
}

.article-detail h1 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.04;
  letter-spacing: 0;
  font-weight: 1000;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.article-body {
  color: #242a33;
  font-size: 17px;
  line-height: 1.86;
  font-weight: 650;
}

.article-body h2,
.article-body h3 {
  color: var(--red);
  line-height: 1.18;
  margin: 32px 0 12px;
}

.article-body a {
  color: var(--red);
  font-weight: 900;
}

.article-body img {
  max-width: 100%;
  height: auto;
}

.article-prevnext {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #242a33;
  font-weight: 800;
}

.article-aside {
  overflow: hidden;
}

.article-aside img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.article-aside div {
  padding: 24px;
  background: #0b0b0c;
  color: #fff;
}

.article-aside h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 28px;
  line-height: 1.12;
}

.article-aside p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  font-weight: 650;
}

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

  .article-detail {
    padding: 28px;
  }
}
