:root {
  --color-brand: #d66d12;
  --color-dark: #14121d;
  --color-light: #f7f2ec;
  --color-card: #1f1f34;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-muted: #c8c0d9;
  --color-secondary: #2e2247;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-light);
  background:
    radial-gradient(circle at top, rgba(255, 170, 58, 0.14), transparent 24%),
    linear-gradient(180deg, #171328 0%, #0f1221 100%);
  -webkit-font-smoothing: antialiased;
}

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

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

.text-brand {
  color: #ff972a;
}

.mobile-shell {
  display: flex;
  justify-content: center;
  padding-bottom: 24px;
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100vw, 430px);
  z-index: 20;
  padding-top: env(safe-area-inset-top);
  background: rgba(20, 18, 29, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 70px;
  padding: 12px;
}

.header-logo img,
.header-logo svg {
  height: 28px;
  width: auto;
}

.header-actions {
  display: flex;
  gap: 8px;
}

.page {
  width: min(100vw, 430px);
  min-height: 100vh;
  padding: 88px 12px calc(24px + env(safe-area-inset-bottom));
}

.page-alt {
  background:
    linear-gradient(180deg, rgba(47, 36, 78, 0.98) 0%, rgba(28, 26, 46, 0.99) 100%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-weight: 700;
}

.btn-primary {
  color: #fff7ee;
  background: linear-gradient(135deg, #ff9e2c, #d66d12);
  box-shadow: 0 10px 24px rgba(214, 109, 18, 0.28);
}

.btn-outline {
  color: var(--color-light);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-border);
}

.btn-sm {
  min-height: 36px;
  padding: 0 14px;
  font-size: 13px;
}

.btn-lg {
  min-height: 48px;
  padding: 0 18px;
  font-size: 15px;
}

.page-kicker,
.banner-label {
  display: inline-block;
  margin-bottom: 8px;
  color: #ffbd66;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card,
.download-banner,
.icon-nav,
.intro-copy,
.text-block,
.table-block,
.faq-block,
.offer-card,
.perk-card,
.payment-grid,
.info-list,
.footer-note,
.game-card {
  border: 1px solid var(--color-border);
}

.hero-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  margin-bottom: 14px;
  border-radius: 26px;
}

.hero-card-alt {
  background:
    radial-gradient(circle at top right, rgba(255, 162, 63, 0.16), transparent 30%),
    linear-gradient(145deg, #3d255d 0%, #2a1d45 48%, #1e1832 100%);
}

.hero-card h1 {
  font-size: 33px;
  line-height: 1.04;
  margin-bottom: 10px;
}

.hero-text {
  color: #e4dbf2;
  font-size: 14px;
  line-height: 1.48;
  margin-bottom: 16px;
}

.hero-actions-stack {
  display: grid;
  gap: 10px;
}

.hero-visual {
  position: relative;
  min-height: 160px;
  border-radius: 22px;
  overflow: hidden;
}

.hero-visual-alt {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 158, 44, 0.06));
}

.hero-arc {
  position: absolute;
  inset: 14px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  transform: rotate(12deg);
}

.badge-orb {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-weight: 800;
}

.orb-main {
  top: 26px;
  right: 18px;
  width: 104px;
  height: 104px;
  background: radial-gradient(circle at 30% 30%, #ffe9a5, #ff9427 72%);
  color: #331f08;
  font-size: 26px;
}

.orb-side {
  left: 16px;
  bottom: 18px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #ff4f69, #fe9a26);
  font-size: 18px;
}

.orb-mini {
  left: 98px;
  top: 20px;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #7a50ff, #3bc6ff);
  font-size: 15px;
}

.download-banner,
.intro-copy,
.text-block,
.table-block,
.faq-block,
.footer-note {
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.download-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.download-banner strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.icon-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
}

.icon-nav a {
  display: grid;
  place-items: center;
  min-height: 52px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 700;
}

.content-block {
  margin-bottom: 24px;
}

.content-block p {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.62;
}

.content-block p + p {
  margin-top: 12px;
}

.section-lead {
  margin-bottom: 12px;
}

.block-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.block-head h2 {
  font-size: 28px;
  line-height: 1.05;
}

.mini-link {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 12px;
  font-weight: 700;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.game-card {
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(76, 54, 116, 0.95), rgba(45, 36, 72, 0.95));
}

.game-thumb {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: end start;
  padding: 10px;
  border-radius: 16px;
}

.game-thumb span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border-radius: 12px;
  background: rgba(20, 18, 29, 0.38);
  font-size: 13px;
  font-weight: 800;
}

.thumb-purple { background: linear-gradient(135deg, #6a2dff, #d457ff); }
.thumb-orange { background: linear-gradient(135deg, #ff8f20, #ff486e); }
.thumb-pink { background: linear-gradient(135deg, #ff5274, #ffa327); }
.thumb-red { background: linear-gradient(135deg, #ff623f, #9e1f50); }
.thumb-cyan { background: linear-gradient(135deg, #3be0ff, #2f79ff); }
.thumb-blue { background: linear-gradient(135deg, #2d89ff, #8558ff); }
.thumb-gold { background: linear-gradient(135deg, #ffc03d, #ff7f34); }
.thumb-brown { background: linear-gradient(135deg, #865127, #d38d34); }
.thumb-neon { background: linear-gradient(135deg, #8d2eff, #ffb426); }

.game-info {
  padding: 10px 8px 12px;
}

.game-name {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.game-category {
  margin-top: 4px;
  color: var(--color-muted);
  font-size: 11px;
}

.offer-list,
.pros-cons-grid,
.faq-list {
  display: grid;
  gap: 12px;
}

.offer-card,
.perk-card,
.bullet-card,
.faq-item {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.offer-card,
.perk-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.offer-card-active {
  border-color: rgba(255, 158, 44, 0.5);
}

.offer-title {
  margin-bottom: 6px;
  color: var(--color-muted);
  font-size: 13px;
}

.offer-card strong,
.perk-card strong {
  display: block;
  font-size: 16px;
  line-height: 1.24;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
}

.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px;
  border-radius: 20px;
}

.payment-grid span {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  font-size: 12px;
  font-weight: 700;
}

.data-table {
  display: grid;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.table-row {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 12px;
  padding: 13px 14px;
  border-bottom: 1px solid var(--color-border);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row span:first-child {
  color: var(--color-light);
  font-size: 12px;
  font-weight: 700;
}

.table-row span:last-child {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.45;
}

.table-head {
  background: rgba(255, 255, 255, 0.06);
}

.table-head span {
  color: var(--color-light) !important;
}

.bullet-card h3,
.faq-item h3 {
  margin-bottom: 10px;
  font-size: 17px;
}

.bullet-card ul {
  list-style: none;
}

.bullet-card li {
  position: relative;
  padding-left: 16px;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.55;
}

.bullet-card li + li {
  margin-top: 10px;
}

.bullet-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff972a;
}

.faq-item p {
  font-size: 13px;
}

.info-list {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
}

.info-row:last-child {
  border-bottom: 0;
}

.info-row span {
  color: var(--color-muted);
  font-size: 13px;
}

.info-row strong {
  font-size: 13px;
  text-align: right;
}

.footer-note p {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 380px) {
  .header-inner,
  .page {
    padding-left: 10px;
    padding-right: 10px;
  }

  .download-banner,
  .offer-card,
  .perk-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-banner .btn,
  .offer-card .btn,
  .perk-card .btn,
  .status-pill {
    width: 100%;
  }

  .table-row {
    grid-template-columns: 1fr;
  }
}
