:root {
  --bg: #ffffff;
  --ink: #09221c;
  --muted: #5b6b68;
  --line: #e2ebe8;
  --dark: #06110f;
  --green: #008a54;
  --green-2: #09b55f;
  --teal: #00a9a5;
  --blue: #0875dc;
  --red: #e42525;
  --gold: #ffd33d;
  --gold-2: #e4a500;
  --shadow: 0 18px 44px rgba(4, 45, 32, 0.16);
  --radius: 8px;
  --wrap: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", "Arial", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.hitclub-page {
  min-width: 0;
  overflow-x: clip;
  background: #fff;
}

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

.topbar {
  background: linear-gradient(180deg, #071513, #06100e);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  color: #fff;
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 3px 0 rgba(0,0,0,.55), 0 8px 22px rgba(0, 255, 176, .28);
}

.brand-mark strong {
  margin-left: 4px;
  color: var(--red);
  text-shadow: 0 2px 0 #680909, 0 10px 18px rgba(255, 30, 30, .38);
}

.brand small {
  color: rgba(255,255,255,.75);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 12px 22px rgba(0,0,0,.26);
}

.pill-green { background: linear-gradient(180deg, #19d86f, #009946); }
.pill-blue { background: linear-gradient(180deg, #2a92ff, #0756bd); }

.nav-strip {
  background: linear-gradient(180deg, #067d62, #005e4f);
  box-shadow: 0 8px 20px rgba(0, 80, 64, .18);
}

.nav-list {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}

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

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 19px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}

.nav-list a:hover,
.nav-list a.active {
  color: #ffe777;
  border-bottom-color: var(--red);
}

.hero {
  position: relative;
  min-height: 474px;
  overflow: hidden;
  background: #06251e;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1,18,14,.8) 0%, rgba(3,38,30,.5) 38%, rgba(3,38,30,.04) 78%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 474px;
  display: flex;
  align-items: center;
  padding: 52px 0 58px;
}

.hero-copy {
  width: min(600px, 100%);
  color: #fff;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: .98;
  font-weight: 950;
  text-transform: uppercase;
  text-shadow: 0 4px 18px rgba(0,0,0,.42);
}

.hero-copy p {
  width: min(470px, 100%);
  margin: 22px 0 0;
  color: rgba(255,255,255,.92);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  width: min(470px, 100%);
  margin-top: 18px;
  color: #d8fff0;
  font-size: 14px;
  font-weight: 800;
}

.hero-checks span::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 7px;
  border-radius: 50%;
  color: #fff;
  background: var(--green-2);
  font-size: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 950;
  font-size: 15px;
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
}

.cta-primary {
  background: linear-gradient(180deg, #19d66d, #038b43);
  color: #fff;
}

.cta-secondary {
  background: rgba(5, 22, 34, .66);
  color: #fff;
  border-color: rgba(255,255,255,.72);
  backdrop-filter: blur(8px);
}

.section { padding: 54px 0; }
.section-tight { padding: 34px 0 46px; }

.section h2 {
  margin: 0;
  color: #063e32;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  font-weight: 950;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 54px;
  align-items: center;
}

.intro-copy p {
  margin: 18px 0 0;
  color: #31443f;
  font-size: 16px;
}

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

.proof-item {
  min-height: 105px;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 15px 10px 12px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(5, 60, 44, .08);
}

.proof-icon {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: linear-gradient(180deg, var(--green-2), var(--green));
}

.proof-item strong {
  font-size: 13px;
  line-height: 1.25;
}

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  background: #061b17;
  box-shadow: var(--shadow);
  border: 1px solid rgba(6, 27, 23, .12);
}

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

.dashboard-frame { aspect-ratio: 1.58; }

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

.image-card {
  position: relative;
  min-height: 266px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #061b17;
  color: #fff;
  box-shadow: 0 14px 34px rgba(5, 60, 44, .16);
}

.image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.76) 70%);
}

.image-card:hover img { transform: scale(1.04); }

.image-card-body {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 16px;
  text-align: center;
}

.image-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 950;
}

.image-card p {
  margin: 8px 0 14px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
}

.mini-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  width: min(170px, 100%);
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(180deg, #22ce63, #088a38);
  font-size: 14px;
  font-weight: 900;
}

.mini-cta.blue { background: linear-gradient(180deg, #2194ff, #0757bd); }
.mini-cta.red { background: linear-gradient(180deg, #ff4037, #b11114); }
.mini-cta.purple { background: linear-gradient(180deg, #a965ff, #6125b9); }

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 18px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(120deg, #004634, #057754 52%, #064f48);
  box-shadow: var(--shadow);
}

.feature-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px 18px;
  border-right: 1px solid rgba(255,255,255,.22);
}

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

.feature-item span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(101,255,181,.65);
  border-radius: 50%;
  color: #baffd9;
  font-weight: 950;
}

.feature-item strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
}

.feature-item small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.8);
  font-size: 12px;
}

.promo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 28px;
  text-align: center;
}

.promo-title::before,
.promo-title::after {
  content: "";
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

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

.promo-card {
  position: relative;
  min-height: 282px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #061b17;
  color: #fff;
  box-shadow: 0 14px 34px rgba(5, 60, 44, .14);
}

.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1,15,13,.18), rgba(1,15,13,.66));
}

.promo-copy {
  position: absolute;
  z-index: 1;
  inset: auto 18px 18px;
  text-align: center;
}

.promo-copy b {
  display: block;
  color: var(--gold);
  font-size: 15px;
  line-height: 1.15;
  text-transform: uppercase;
}

.promo-copy strong {
  display: block;
  margin-top: 5px;
  color: #ffe75c;
  font-size: 40px;
  line-height: 1;
  font-weight: 950;
}

.promo-copy .mini-cta {
  margin-top: 16px;
  border: 1px solid rgba(255,255,255,.5);
}

.steps {
  text-align: center;
  background: linear-gradient(180deg, #fff, #f7fbf9);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.step-card {
  position: relative;
  min-height: 160px;
  padding: 34px 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(5, 60, 44, .1);
}

.step-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--green);
  border-right: 2px solid var(--green);
  transform: translateY(-50%) rotate(45deg);
}

.step-card:last-child::after { display: none; }

.step-no {
  position: absolute;
  top: -14px;
  left: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #15c75c, #07833c);
  font-weight: 950;
  transform: translateX(-50%);
}

.step-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 950;
}

.step-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 1px solid #b7d7cb;
  border-radius: 999px;
  color: #006040;
  background: #fff;
  font-weight: 900;
  font-size: 14px;
}

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

.news-card {
  min-width: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(5, 60, 44, .08);
}

.news-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.news-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1.55;
  background: #061b17 center / cover no-repeat;
}

.news-grid .news-card:nth-child(6n+1) .news-thumb { background-image: url("/assets/article-security.jpg"); }
.news-grid .news-card:nth-child(6n+2) .news-thumb { background-image: url("/assets/article-maintenance.jpg"); }
.news-grid .news-card:nth-child(6n+3) .news-thumb { background-image: url("/assets/article-reload.jpg"); }
.news-grid .news-card:nth-child(6n+4) .news-thumb { background-image: url("/assets/article-slots.jpg"); }
.news-grid .news-card:nth-child(6n+5) .news-thumb { background-image: url("/assets/article-vip.jpg"); }
.news-grid .news-card:nth-child(6n) .news-thumb { background-image: url("/assets/article-app.jpg"); }

.news-body { padding: 12px 12px 15px; }

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
  color: #7a8985;
  font-size: 11px;
  font-weight: 800;
}

.tag {
  display: inline-flex;
  min-height: 20px;
  align-items: center;
  padding: 0 8px;
  border-radius: 4px;
  color: #fff;
  background: var(--blue);
  font-size: 10px;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 0;
  color: #06271f;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 950;
}

.news-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.pager {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.pager ul,
.pager ol {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pager a,
.pager span,
.pager li {
  display: inline-flex;
  min-width: 38px;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #073326;
  font-size: 13px;
  font-weight: 900;
}

.pager a:hover,
.pager .thisclass {
  border-color: transparent;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-2));
}

.site-footer {
  margin-top: 32px;
  padding: 42px 0 22px;
  color: rgba(255,255,255,.78);
  background: linear-gradient(180deg, #004b3a, #06201a);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(0, .8fr));
  gap: 34px;
}

.footer-brand p {
  margin: 14px 0 0;
  max-width: 330px;
  font-size: 14px;
}

.footer-col h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
}

.footer-col a,
.footer-col span {
  display: block;
  margin: 8px 0;
  color: rgba(255,255,255,.75);
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.14);
  font-size: 12px;
}

.pay-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pay-row span {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 28px;
  border-radius: 5px;
  color: #073421;
  background: #fff;
  font-size: 11px;
  font-weight: 950;
}

.article-hero {
  position: relative;
  padding: 72px 0;
  overflow: hidden;
  color: #fff;
  background: #06251e;
}

.article-hero .hero-bg { opacity: .5; }

.article-hero h1 {
  position: relative;
  z-index: 1;
  width: min(840px, 100%);
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 950;
}

.article-hero p {
  position: relative;
  z-index: 1;
  width: min(660px, 100%);
  margin: 18px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 17px;
  font-weight: 700;
}

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

.article-main,
.article-side { min-width: 0; }

.article-main {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(5, 60, 44, .08);
}

.article-main .media-frame { margin-bottom: 24px; }
.article-main h2 { margin: 30px 0 12px; font-size: 28px; }
.article-main h3 { margin: 24px 0 10px; font-size: 22px; }
.article-main p, .article-main li { color: #31443f; font-size: 16px; }
.article-main ul { padding-left: 20px; }

.article-note {
  padding: 18px;
  border-left: 4px solid var(--green-2);
  border-radius: var(--radius);
  background: #eafff2;
  color: #123d2f;
  font-weight: 750;
}

.article-side {
  position: sticky;
  top: 20px;
}

.side-panel {
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 30px rgba(5, 60, 44, .08);
}

.side-panel h2 { font-size: 22px; }

.side-list {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.side-link {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
}

.side-link img {
  width: 92px;
  height: 68px;
  object-fit: cover;
  border-radius: 6px;
}

.side-link strong {
  display: block;
  font-size: 14px;
  line-height: 1.3;
}

.side-link span span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 1080px) {
  .category-grid, .promo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .feature-band { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .feature-item { border-right: 0; }
  .step-grid { gap: 16px; }
  .step-card::after { display: none; }
}

@media (max-width: 820px) {
  .topbar-inner {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }
  .brand-mark { font-size: 32px; }
  .top-actions { width: 100%; }
  .pill { flex: 1; }
  .nav-list a { padding: 0 14px; font-size: 13px; }
  .hero, .hero-inner { min-height: 548px; }
  .hero-inner { align-items: end; padding: 64px 0 42px; }
  .hero-shade { background: linear-gradient(180deg, rgba(2,18,14,.14) 0%, rgba(2,18,14,.78) 58%, rgba(2,18,14,.95) 100%); }
  .hero-copy h1 { font-size: clamp(34px, 11vw, 54px); }
  .hero-copy p { font-size: 15px; }
  .hero-checks { grid-template-columns: 1fr; }
  .intro-grid, .article-layout { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .article-side { position: static; }
}

@media (max-width: 560px) {
  .hitclub-wrap { width: min(100% - 24px, var(--wrap)); }
  .section { padding: 38px 0; }
  .hero-actions, .section-head, .footer-bottom { align-items: stretch; flex-direction: column; }
  .cta, .ghost-btn { width: 100%; }
  .category-grid, .promo-grid, .news-grid, .step-grid, .footer-grid, .feature-band { grid-template-columns: 1fr; }
  .image-card { min-height: 320px; }
  .promo-card { min-height: 320px; }
  .article-main { padding: 20px; }
  .side-link { grid-template-columns: 86px 1fr; }
}
