:root {
  --bg: #ffffff;
  --ink: #071225;
  --muted: #596678;
  --line: #e5e9f1;
  --dark: #08090d;
  --dark-2: #101722;
  --blue: #0b3f8e;
  --blue-2: #155fd0;
  --gold: #ffd12a;
  --gold-2: #f4a700;
  --green: #0c6d36;
  --shadow: 0 18px 48px rgba(7, 18, 37, 0.14);
  --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;
}

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

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

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

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

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

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  color: #fff;
  font-size: 38px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 #7b4b05,
    0 7px 18px rgba(255, 203, 31, 0.55);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
}

.brand-mark strong {
  color: var(--gold);
  background: linear-gradient(180deg, #fff7bd 8%, #ffd325 45%, #e18000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.blue-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2b81ff, #0752bd);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 10px 20px rgba(0, 58, 150, 0.32);
}

.nav-strip {
  background: linear-gradient(180deg, #ffe94b, #f4cf13);
  box-shadow: 0 6px 18px rgba(168, 128, 0, 0.16);
}

.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: #111827;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
}

.nav-list a:hover,
.nav-list a.active {
  color: #b50017;
  border-bottom-color: #ef233c;
}

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

.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, 9, 25, 0.8) 0%, rgba(2, 13, 33, 0.52) 38%, rgba(2, 13, 33, 0.05) 75%);
  pointer-events: none;
}

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

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

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

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

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

.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: 900;
  font-size: 15px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.cta-primary {
  background: linear-gradient(180deg, #ffef76, #ffc721 52%, #ed9b00);
  color: #151000;
}

.cta-secondary {
  background: rgba(5, 18, 39, 0.62);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
}

.section {
  padding: 54px 0;
}

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

.section h2 {
  margin: 0;
  color: #071225;
  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, 0.78fr) minmax(0, 1.22fr);
  gap: 54px;
  align-items: center;
}

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

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

.proof-item {
  min-height: 108px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px 10px 12px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(13, 35, 72, 0.08);
}

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

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

.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  background: #08111f;
  box-shadow: var(--shadow);
  border: 1px solid rgba(8, 17, 31, 0.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: #071225;
  color: #fff;
  box-shadow: 0 14px 34px rgba(13, 35, 72, 0.16);
}

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

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 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, 0.86);
  font-size: 14px;
  line-height: 1.45;
}

.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, #29b34b, #0d8529);
  font-size: 14px;
  font-weight: 900;
}

.mini-cta.gold {
  background: linear-gradient(180deg, #ffe573, #c68a00);
  color: #211700;
}

.mini-cta.blue {
  background: linear-gradient(180deg, #2194ff, #0757bd);
}

.mini-cta.purple {
  background: linear-gradient(180deg, #a965ff, #6125b9);
}

.promo-band {
  display: grid;
  grid-template-columns: 0.68fr 1fr 1fr 1fr 1fr;
  gap: 14px;
  align-items: stretch;
  padding: 16px;
  border-radius: var(--radius);
  background: linear-gradient(120deg, #06142a, #082049 52%, #071225);
  box-shadow: var(--shadow);
}

.promo-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 18px;
  color: #fff;
}

.promo-title h2 {
  color: #fff;
  font-size: 30px;
}

.promo-title .cta {
  min-height: 42px;
  width: fit-content;
  padding: 0 20px;
  font-size: 13px;
  box-shadow: none;
}

.promo-card {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 211, 42, 0.28);
  background: #082049;
}

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

.promo-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 16px 14px;
  background: linear-gradient(90deg, rgba(4, 16, 36, 0.72), rgba(4, 16, 36, 0.08));
}

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

.promo-copy strong {
  margin-top: 4px;
  color: #ffe75c;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.promo-copy span {
  margin-top: 6px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.steps {
  padding-top: 8px;
  text-align: center;
}

.step-grid {
  position: relative;
  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(13, 35, 72, 0.1);
}

.step-card::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -22px;
  width: 16px;
  height: 16px;
  border-top: 2px solid var(--blue-2);
  border-right: 2px solid var(--blue-2);
  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, #2d86ff, #0a55c2);
  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 var(--line);
  border-radius: 999px;
  color: #071225;
  background: #fff;
  font-weight: 900;
  font-size: 14px;
  box-shadow: 0 8px 22px rgba(13, 35, 72, 0.06);
}

.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(13, 35, 72, 0.08);
}

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

.news-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1.55;
  background: #071225 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-sports.jpg");
}

.news-grid .news-card:nth-child(6n+3) .news-thumb {
  background-image: url("/assets/article-promo.jpg");
}

.news-grid .news-card:nth-child(6n+4) .news-thumb {
  background-image: url("/assets/article-cardgame.jpg");
}

.news-grid .news-card:nth-child(6n+5) .news-thumb {
  background-image: url("/assets/article-lottery.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: #7a8797;
  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-2);
  font-size: 10px;
  text-transform: uppercase;
}

.news-card h3 {
  margin: 0;
  color: #071225;
  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;
}

.site-footer {
  margin-top: 32px;
  padding: 42px 0 22px;
  color: rgba(255, 255, 255, 0.78);
  background: linear-gradient(180deg, #0b0d12, #07080b);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(0, 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, 0.72);
  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, 0.12);
  font-size: 12px;
}

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

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

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

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

.article-hero h1 {
  position: relative;
  z-index: 1;
  width: min(820px, 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, 0.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(13, 35, 72, 0.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: #334155;
  font-size: 16px;
}

.article-main ul {
  padding-left: 20px;
}

.article-note {
  padding: 18px;
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: #fff8db;
  color: #1c2638;
  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(13, 35, 72, 0.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 {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 1080px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .promo-title {
    grid-column: 1 / -1;
  }

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

  .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: 34px;
  }

  .top-actions {
    width: 100%;
  }

  .blue-pill {
    flex: 1;
  }

  .nav-list a {
    padding: 0 14px;
    font-size: 13px;
  }

  .hero,
  .hero-inner {
    min-height: 520px;
  }

  .hero-inner {
    align-items: end;
    padding: 64px 0 42px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(2, 10, 24, 0.18) 0%, rgba(2, 10, 24, 0.78) 58%, rgba(2, 10, 24, 0.95) 100%);
  }

  .hero-copy h1 {
    font-size: clamp(36px, 12vw, 54px);
  }

  .hero-copy p {
    font-size: 15px;
  }

  .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) {
  .ww88-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-band,
  .news-grid,
  .step-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .image-card {
    min-height: 320px;
  }

  .promo-card {
    min-height: 190px;
  }

  .article-main {
    padding: 20px;
  }

  .side-link {
    grid-template-columns: 86px 1fr;
  }
}
