:root {
  --vip79-black: #080504;
  --vip79-ink: #24100c;
  --vip79-red: #d71920;
  --vip79-red-deep: #7e0b0f;
  --vip79-gold: #f5c659;
  --vip79-gold-deep: #a96c12;
  --vip79-paper: #fff8f1;
  --vip79-muted: #79645b;
  --vip79-line: #ead7ca;
  --vip79-white: #fff;
  --vip79-shadow: 0 20px 52px rgba(92, 24, 12, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.vip79-page {
  margin: 0;
  min-width: 320px;
  background: var(--vip79-paper);
  color: var(--vip79-ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

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

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

.vip79-shell {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.vip79-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  color: #fff;
  background: #090605;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

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

.vip79-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.vip79-logo-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: #2d1508;
  background: linear-gradient(145deg, #ffe99b, #c98216);
  box-shadow: inset 0 1px rgba(255,255,255,.55), 0 12px 24px rgba(245,198,89,.25);
  font-size: 14px;
  font-weight: 900;
}

.vip79-logo strong {
  color: var(--vip79-gold);
}

.vip79-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.vip79-menu a {
  position: relative;
  display: block;
  padding: 28px 0 24px;
  color: rgba(255,255,255,.9);
}

.vip79-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 3px;
  border-radius: 20px;
  background: transparent;
}

.vip79-menu a.is-active::after,
.vip79-menu a:hover::after {
  background: var(--vip79-gold);
}

.vip79-actions {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}

.vip79-btn {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.vip79-btn.red {
  color: #fff;
  background: linear-gradient(180deg, #f13a3e, #b50f17);
  box-shadow: 0 14px 24px rgba(215, 25, 32, .24);
}

.vip79-btn.gold {
  color: #24150a;
  background: linear-gradient(180deg, #ffe590, #d99a27);
  box-shadow: 0 14px 24px rgba(169,108,18,.24);
}

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

.vip79-redline {
  color: #fff;
  background: linear-gradient(90deg, #8e0d12, #e4262b, #8e0d12);
}

.vip79-redline-inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.vip79-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 72% 40%, rgba(245,198,89,.32), transparent 26%),
    linear-gradient(112deg, #130606 0%, #581014 52%, #140706 100%);
}

.vip79-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 82px 82px;
  opacity: .52;
}

.vip79-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  gap: 42px;
  align-items: center;
  min-height: 590px;
  padding: 70px 0 86px;
}

.vip79-hero h1 {
  max-width: 640px;
  margin: 0;
  font-size: 70px;
  line-height: 1.02;
  font-weight: 900;
}

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

.vip79-hero p {
  max-width: 610px;
  margin: 22px 0 0;
  color: rgba(255,255,255,.87);
  font-size: 19px;
  line-height: 1.7;
}

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

.vip79-proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 38px;
}

.vip79-proof {
  min-height: 76px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 8px;
  background: rgba(10, 5, 5, .38);
}

.vip79-proof strong {
  display: block;
  color: #fff;
  font-size: 18px;
}

.vip79-proof span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}

.vip79-hero-media {
  min-height: 425px;
  overflow: hidden;
  border: 1px solid rgba(245,198,89,.3);
  border-radius: 22px;
  background: url("/assets/vip79-hero.jpg") center / cover no-repeat;
  box-shadow: 0 32px 70px rgba(0,0,0,.36);
}

.vip79-trust {
  position: relative;
  z-index: 3;
  margin-top: -42px;
}

.vip79-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--vip79-shadow);
}

.vip79-trust-item {
  min-height: 116px;
  padding: 24px;
  border-right: 1px solid var(--vip79-line);
}

.vip79-trust-item:last-child {
  border-right: 0;
}

.vip79-trust-item b {
  display: block;
  color: #45100d;
  font-size: 18px;
  margin-bottom: 8px;
}

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

.vip79-section {
  padding: 74px 0;
}

.vip79-section.white {
  background: #fff;
}

.vip79-section.soft {
  background: #fff1ec;
}

.vip79-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.vip79-head.center {
  display: block;
  text-align: center;
}

.vip79-title {
  margin: 0;
  color: #45100d;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 900;
}

.vip79-note {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--vip79-muted);
  font-size: 16px;
  line-height: 1.75;
}

.vip79-head.center .vip79-note {
  margin-left: auto;
  margin-right: auto;
}

.vip79-panel {
  border: 1px solid var(--vip79-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(92,24,12,.08);
}

.vip79-article-flow {
  display: grid;
  gap: 30px;
}

.vip79-article-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: center;
}

.vip79-article-block.reverse {
  grid-template-columns: 420px minmax(0, 1fr);
}

.vip79-media-crop {
  width: 100%;
  height: 250px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 18px 36px rgba(92,24,12,.12);
}

.vip79-article-block h3 {
  margin: 0;
  color: #45100d;
  font-size: 26px;
}

.vip79-article-block p {
  color: var(--vip79-muted);
  line-height: 1.76;
}

.vip79-feature-grid,
.vip79-game-grid,
.vip79-news-grid {
  display: grid;
  gap: 22px;
}

.vip79-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vip79-feature-card {
  min-height: 208px;
  padding: 26px;
}

.vip79-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--vip79-red), var(--vip79-red-deep));
  font-weight: 900;
  font-size: 22px;
}

.vip79-feature-card h3,
.vip79-game-card h3,
.vip79-news-card h3,
.vip79-faq h3 {
  margin: 18px 0 0;
  color: #45100d;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 900;
}

.vip79-feature-card p,
.vip79-game-card p,
.vip79-news-card p,
.vip79-faq p {
  margin: 10px 0 0;
  color: var(--vip79-muted);
  line-height: 1.65;
}

.vip79-game-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vip79-game-card {
  overflow: hidden;
}

.vip79-game-art {
  height: 190px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.vip79-game-art.sports { background-image: url("/assets/vip79-sports.jpg"); }
.vip79-game-art.casino { background-image: url("/assets/vip79-casino.jpg"); }
.vip79-game-art.cards { background-image: url("/assets/vip79-cards.jpg"); }
.vip79-game-art.lottery { background-image: url("/assets/vip79-lottery.jpg"); }

.vip79-game-body {
  padding: 22px;
}

.vip79-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.vip79-step {
  min-height: 178px;
  padding: 26px 20px;
  border: 1px solid var(--vip79-line);
  border-radius: 10px;
  text-align: center;
  background: #fff;
}

.vip79-step b {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  color: #fff;
  background: var(--vip79-red);
  font-size: 20px;
}

.vip79-step h3 {
  margin: 0;
  color: #45100d;
  font-size: 18px;
}

.vip79-step p {
  margin: 10px 0 0;
  color: var(--vip79-muted);
  font-size: 14px;
  line-height: 1.55;
}

.vip79-promo {
  padding: 0;
  color: #fff;
  background: linear-gradient(90deg, #250706, #d71920, #250706);
}

.vip79-promo-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: center;
  min-height: 292px;
  padding: 48px 0;
}

.vip79-promo h2 {
  color: #fff;
  font-size: 50px;
}

.vip79-promo p {
  max-width: 720px;
  color: rgba(255,255,255,.82);
  line-height: 1.72;
}

.vip79-promo-badge {
  display: grid;
  width: 260px;
  height: 180px;
  place-items: center;
  border-radius: 18px;
  color: #211409;
  background: linear-gradient(135deg, #ffe28a, #d99722);
  box-shadow: 0 26px 46px rgba(0,0,0,.26);
  font-size: 52px;
  font-weight: 900;
}

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

.vip79-news-card {
  overflow: hidden;
}

.vip79-news-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.vip79-news-body {
  padding: 20px;
}

.vip79-tag {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 5px;
  color: #fff;
  background: var(--vip79-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.vip79-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 14px;
  color: #927a6d;
  font-size: 13px;
}

.vip79-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
  gap: 28px;
}

.vip79-faq-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.vip79-faq {
  padding: 18px 20px;
}

.vip79-support {
  padding: 34px;
  background: linear-gradient(135deg, #fff, #fff1ec);
}

.vip79-breadcrumb {
  padding: 26px 0 0;
  color: var(--vip79-muted);
  font-size: 14px;
}

.vip79-breadcrumb a {
  color: var(--vip79-red-deep);
  font-weight: 900;
}

.vip79-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  padding: 34px 0 70px;
}

.vip79-article-card {
  padding: 40px;
  border: 1px solid var(--vip79-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--vip79-shadow);
}

.vip79-article-card h1 {
  margin: 0;
  color: #45100d;
  font-size: 42px;
  line-height: 1.18;
}

.vip79-article-content {
  margin-top: 24px;
  color: #332521;
  font-size: 17px;
  line-height: 1.85;
}

.vip79-article-content h2 {
  margin: 34px 0 12px;
  color: #45100d;
  font-size: 28px;
  line-height: 1.28;
}

.vip79-article-content p {
  margin: 0 0 18px;
}

.vip79-article-content img {
  width: 100%;
  border-radius: 10px;
  margin: 26px 0;
}

.vip79-prev-next {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--vip79-line);
  color: var(--vip79-red-deep);
  font-weight: 900;
}

.vip79-utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.vip79-utility-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--vip79-line);
  border-radius: 5px;
  color: var(--vip79-red-deep);
  background: #fff8f1;
  font-size: 13px;
  font-weight: 900;
}

.vip79-side-card {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 24px;
  border: 1px solid var(--vip79-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(92,24,12,.08);
}

.vip79-side-card h3 {
  margin: 18px 0 0;
  color: #45100d;
  font-size: 24px;
}

.vip79-side-card p {
  color: var(--vip79-muted);
  line-height: 1.7;
}

.vip79-side-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 8px;
  margin: 18px 0;
}

.vip79-footer {
  padding: 54px 0 28px;
  color: rgba(255,255,255,.74);
  background: #090605;
}

.vip79-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr .8fr .9fr 1fr;
  gap: 40px;
}

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

.vip79-footer p,
.vip79-footer li {
  margin: 0;
  line-height: 1.75;
}

.vip79-footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vip79-copyright {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  font-size: 13px;
}

@media (max-width: 1120px) {
  .vip79-nav {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .vip79-menu {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 18px;
  }

  .vip79-menu a {
    padding: 10px 0 12px;
  }

  .vip79-menu a::after {
    bottom: 5px;
  }

  .vip79-hero-inner,
  .vip79-article-block,
  .vip79-article-block.reverse {
    grid-template-columns: 1fr;
  }

  .vip79-feature-grid,
  .vip79-game-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 760px) {
  .vip79-shell {
    width: min(100% - 28px, 1160px);
  }

  .vip79-topbar {
    position: relative;
  }

  .vip79-nav {
    align-items: flex-start;
    gap: 14px;
  }

  .vip79-logo {
    font-size: 28px;
  }

  .vip79-actions {
    width: 100%;
    justify-content: space-between;
  }

  .vip79-actions .vip79-btn {
    flex: 1;
    padding: 0 14px;
  }

  .vip79-menu {
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
    font-size: 12px;
  }

  .vip79-redline-inner {
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
    padding: 0 2px;
  }

  .vip79-hero-inner {
    min-height: auto;
    padding: 48px 0 72px;
  }

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

  .vip79-hero p {
    font-size: 16px;
  }

  .vip79-proof-row,
  .vip79-trust-grid,
  .vip79-news-grid,
  .vip79-faq-layout,
  .vip79-article-layout {
    grid-template-columns: 1fr;
  }

  .vip79-hero-media {
    min-height: 270px;
    border-radius: 16px;
  }

  .vip79-trust {
    margin-top: -24px;
  }

  .vip79-trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--vip79-line);
  }

  .vip79-trust-item:last-child {
    border-bottom: 0;
  }

  .vip79-section {
    padding: 52px 0;
  }

  .vip79-head {
    display: block;
  }

  .vip79-head .vip79-btn {
    margin-top: 18px;
  }

  .vip79-title {
    font-size: 32px;
  }

  .vip79-feature-grid,
  .vip79-game-grid,
  .vip79-steps {
    grid-template-columns: 1fr;
  }

  .vip79-promo-inner {
    grid-template-columns: 1fr;
  }

  .vip79-promo h2 {
    font-size: 36px;
  }

  .vip79-promo-badge {
    width: 100%;
    height: 150px;
  }

  .vip79-media-crop {
    height: 220px;
  }

  .vip79-article-card {
    padding: 24px;
  }

  .vip79-article-card h1 {
    font-size: 32px;
  }

  .vip79-prev-next {
    grid-template-columns: 1fr;
  }

  .vip79-side-card {
    position: static;
  }

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