:root {
  --vip-black: #070403;
  --vip-black-2: #111111;
  --vip-red: #a70608;
  --vip-red-2: #d71920;
  --vip-red-3: #4b0505;
  --vip-gold: #f4c45a;
  --vip-gold-2: #ffe08a;
  --vip-cream: #fff8ee;
  --vip-text: #ffffff;
  --vip-muted: #d8c1a8;
  --vip-ink: #20100b;
  --vip-line: rgba(244, 196, 90, .45);
  --vip-shadow: 0 24px 60px rgba(0, 0, 0, .36);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.vip-page {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--vip-text);
  background:
    radial-gradient(circle at 70% 8%, rgba(225, 32, 18, .3), transparent 30rem),
    radial-gradient(circle at 50% 54%, rgba(122, 6, 4, .64), transparent 34rem),
    linear-gradient(180deg, #080403 0%, #200504 45%, #080403 100%);
  font-family: Inter, Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

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

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

.vip-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(90deg, #0a0a09, #151515);
  border-bottom: 1px solid rgba(244, 196, 90, .34);
}

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

.vip-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
}

.vip-brand .vip-gold {
  color: var(--vip-gold);
  text-shadow: 0 0 18px rgba(244, 196, 90, .42);
}

.vip-brand .vip-crown {
  position: relative;
}

.vip-brand .vip-crown::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 16px;
  left: 5px;
  top: -17px;
  background: linear-gradient(135deg, transparent 16%, var(--vip-gold) 17% 28%, transparent 29% 36%, var(--vip-gold) 37% 50%, transparent 51% 58%, var(--vip-gold) 59% 71%, transparent 72%);
  filter: drop-shadow(0 0 8px rgba(244, 196, 90, .55));
}

.vip-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.vip-links a {
  padding: 26px 0 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  border-bottom: 2px solid transparent;
}

.vip-links a:hover,
.vip-links a.is-active {
  color: #ff4a41;
  border-color: #ff4a41;
}

.vip-hero {
  position: relative;
  padding: 78px 0 58px;
  background:
    linear-gradient(90deg, rgba(8, 4, 3, .98) 0%, rgba(59, 6, 4, .95) 49%, rgba(89, 8, 5, .82) 100%);
  overflow: hidden;
}

.vip-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--vip-gold), transparent);
}

.vip-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: 32px;
}

.vip-hero h1 {
  margin: 0;
  max-width: 620px;
  color: #fff;
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1.08;
  font-weight: 950;
}

.vip-hero h1 span {
  color: var(--vip-gold-2);
  text-shadow: 0 0 20px rgba(244, 196, 90, .32);
}

.vip-hero-copy {
  position: relative;
  z-index: 2;
}

.vip-hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.vip-btn {
  min-height: 58px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 900;
  border: 1px solid var(--vip-gold);
}

.vip-btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #d31e18, #a90407);
  box-shadow: 0 0 24px rgba(244, 196, 90, .38), inset 0 1px 0 rgba(255, 255, 255, .24);
}

.vip-btn-ghost {
  color: var(--vip-gold-2);
  background: rgba(0, 0, 0, .22);
}

.vip-hero-media {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: center;
}

.vip-hero-media img {
  width: 100%;
  border-radius: 0;
  mix-blend-mode: screen;
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, .48));
}

.vip-main {
  padding: 0 0 58px;
}

.vip-intro {
  margin-top: -5px;
  padding: 24px 28px;
  color: var(--vip-ink);
  background: linear-gradient(180deg, #fff, var(--vip-cream));
  border: 3px solid var(--vip-red-2);
  border-radius: 8px;
  box-shadow: var(--vip-shadow);
  display: grid;
  grid-template-columns: 245px 1fr;
  gap: 30px;
  align-items: center;
}

.vip-intro-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(63, 0, 0, .25);
}

.vip-title,
.vip-section-title {
  margin: 0;
  color: var(--vip-gold-2);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  font-weight: 950;
}

.vip-intro .vip-title {
  color: var(--vip-red);
}

.vip-intro p,
.vip-copy {
  margin: 14px 0 0;
  color: #3f3027;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}

.vip-points {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.vip-point {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  line-height: 1.45;
  color: #4b372e;
  font-weight: 700;
}

.vip-point b {
  display: block;
  color: var(--vip-red);
  font-size: 14px;
}

.vip-point svg {
  width: 24px;
  height: 24px;
  color: var(--vip-red-2);
}

.vip-section {
  margin-top: 34px;
}

.vip-section-heading {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.vip-section-heading::before,
.vip-section-heading::after {
  content: "";
  width: 38px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--vip-gold));
}

.vip-section-heading::after {
  background: linear-gradient(90deg, var(--vip-gold), transparent);
}

.vip-game-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.vip-game-card {
  overflow: hidden;
  border: 1px solid var(--vip-gold);
  border-radius: 6px;
  background: #170504;
  color: var(--vip-gold-2);
  text-align: center;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
}

.vip-game-card img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
}

.vip-game-card strong {
  display: block;
  padding: 12px 8px 13px;
  font-size: 15px;
  font-weight: 950;
}

.vip-guide,
.vip-choice {
  padding: 30px;
  border: 1px solid var(--vip-red-2);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(87, 5, 4, .92), rgba(28, 4, 3, .9));
  box-shadow: inset 0 0 50px rgba(244, 196, 90, .05), var(--vip-shadow);
}

.vip-guide-steps {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: center;
  gap: 14px;
}

.vip-step {
  position: relative;
  min-height: 210px;
  padding: 32px 22px 22px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(244, 196, 90, .55);
  border-radius: 6px;
  color: #fff;
}

.vip-step-number {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #cf2a27, #8e0708);
  border: 2px solid rgba(255, 230, 150, .85);
  font-size: 22px;
  font-weight: 950;
}

.vip-step svg {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  color: var(--vip-gold);
}

.vip-step h3 {
  margin: 0 0 8px;
  color: var(--vip-gold-2);
  font-size: 18px;
  font-weight: 950;
}

.vip-step p {
  margin: 0;
  color: #f8e7d2;
  font-size: 14px;
  line-height: 1.6;
}

.vip-arrow {
  color: var(--vip-gold);
  font-size: 44px;
  font-weight: 950;
  text-align: center;
}

.vip-choice {
  display: grid;
  grid-template-columns: .95fr 190px 1.25fr;
  gap: 34px;
  align-items: center;
}

.vip-choice p {
  color: #f1dfc8;
  line-height: 1.75;
  font-weight: 600;
}

.vip-shield img {
  width: 170px;
  margin: 0 auto;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, .28));
}

.vip-benefits {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 15px;
}

.vip-benefits li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  color: #fff;
  line-height: 1.45;
}

.vip-benefits svg {
  width: 24px;
  height: 24px;
  color: var(--vip-gold);
}

.vip-benefits b {
  display: block;
  color: #fff;
}

.vip-benefits span {
  color: #d8c1a8;
  font-size: 14px;
}

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

.vip-news-head .vip-section-title {
  text-align: left;
}

.vip-news-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.vip-news-card {
  min-height: 278px;
  border: 1px solid rgba(244, 196, 90, .62);
  border-radius: 6px;
  background: #120504;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
}

.vip-news-card a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.vip-news-card img {
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
  border-bottom: 1px solid rgba(244, 196, 90, .35);
}

.vip-news-card h3 {
  margin: 0;
  padding: 14px 12px 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 900;
}

.vip-news-meta {
  margin-top: auto;
  padding: 14px 12px 16px;
  color: var(--vip-muted);
  font-size: 13px;
  font-weight: 700;
}

.vip-news-meta span {
  color: #ff4a41;
  margin-left: 8px;
}

.vip-footer {
  border-top: 1px solid rgba(244, 196, 90, .22);
  background: linear-gradient(90deg, #0a0a09, #151515);
}

.vip-footer-inner {
  padding: 36px 0 46px;
  display: grid;
  grid-template-columns: 1.5fr .8fr .8fr 1fr;
  gap: 34px;
}

.vip-footer h3,
.vip-footer h4 {
  margin: 0 0 14px;
  color: var(--vip-gold);
  font-weight: 950;
}

.vip-footer p,
.vip-footer a,
.vip-footer li {
  color: #d7d7d7;
  font-size: 14px;
  line-height: 1.7;
}

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

.vip-copyright {
  padding: 16px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #bbb;
  font-size: 13px;
}

.vip-article-hero {
  padding: 86px 0 72px;
  background:
    linear-gradient(90deg, rgba(8, 4, 3, .98), rgba(73, 5, 4, .9)),
    url("789club-vip-hero-scene.jpg") center right / contain no-repeat;
}

.vip-article-hero h1 {
  margin: 0;
  max-width: 820px;
  color: var(--vip-gold-2);
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.08;
  font-weight: 950;
}

.vip-article-hero p {
  max-width: 680px;
  color: #f1dfc8;
  font-weight: 700;
  line-height: 1.75;
}

.vip-article-main {
  padding: 42px 0 70px;
  background: var(--vip-cream);
  color: var(--vip-ink);
}

.vip-breadcrumb {
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  color: #7b6253;
  font-size: 14px;
  font-weight: 800;
}

.vip-breadcrumb a {
  color: var(--vip-red);
}

.vip-article-card {
  padding: clamp(22px, 4vw, 46px);
  background: #fff;
  border: 3px solid var(--vip-red-2);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(143, 12, 8, .18);
}

.vip-article-meta {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #6e4b3e;
  font-weight: 900;
}

.vip-article-body {
  color: #5c4438;
  font-size: 17px;
  line-height: 1.78;
  font-weight: 600;
}

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

.vip-article-body h2 {
  margin-top: 34px;
  font-size: 32px;
}

.vip-article-body h3 {
  margin-top: 28px;
  font-size: 24px;
}

.vip-note {
  margin: 26px 0;
  padding: 18px;
  color: var(--vip-ink);
  background: #fff1db;
  border-left: 5px solid var(--vip-red);
  border-radius: 6px;
  font-weight: 900;
}

.vip-pagebreak,
.vip-prenext {
  margin-top: 24px;
  color: var(--vip-red);
  font-weight: 900;
}

.vip-action-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.vip-action-list a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  color: #2b1106;
  background: var(--vip-gold);
  border-radius: 8px;
  font-weight: 900;
  font-size: 13px;
}

@media (max-width: 1060px) {
  .vip-game-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .vip-news-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 900px) {
  .vip-nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0 12px;
  }

  .vip-links {
    gap: 16px;
  }

  .vip-links a {
    padding: 8px 0;
  }

  .vip-hero-grid,
  .vip-intro,
  .vip-choice {
    grid-template-columns: 1fr;
  }

  .vip-hero {
    padding-top: 48px;
  }

  .vip-hero-media {
    min-height: auto;
  }

  .vip-intro-img img,
  .vip-intro-img {
    width: 190px;
  }

  .vip-guide-steps {
    grid-template-columns: 1fr;
  }

  .vip-arrow {
    transform: rotate(90deg);
  }

  .vip-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .vip-wrap,
  .vip-nav,
  .vip-footer-inner {
    width: min(100% - 26px, 1180px);
  }

  .vip-brand {
    font-size: 24px;
  }

  .vip-links {
    width: 100%;
    justify-content: flex-start;
  }

  .vip-hero h1 {
    font-size: clamp(34px, 12vw, 52px);
  }

  .vip-hero-actions,
  .vip-news-head {
    align-items: stretch;
    flex-direction: column;
  }

  .vip-btn {
    width: 100%;
  }

  .vip-intro,
  .vip-guide,
  .vip-choice,
  .vip-article-card {
    padding: 18px;
  }

  .vip-points,
  .vip-game-grid,
  .vip-news-grid,
  .vip-footer-inner {
    grid-template-columns: 1fr;
  }
}
