:root {
  --ink: #16120f;
  --muted: #6d6460;
  --paper: #fff7ea;
  --surface: #fffdf7;
  --sun: #ffd338;
  --gold: #f6a800;
  --rose: #ef3340;
  --green: #0f8f62;
  --teal: #18b7a0;
  --blue: #2367e8;
  --line: rgba(22, 18, 15, 0.12);
  --shadow: 0 24px 70px rgba(83, 43, 12, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
  background:
    linear-gradient(135deg, rgba(255, 211, 56, 0.26), transparent 28%),
    linear-gradient(315deg, rgba(24, 183, 160, 0.18), transparent 32%),
    var(--paper);
}

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

button {
  color: inherit;
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 247, 234, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
}

.brand__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 5px 5px 0 var(--ink);
  font-family: Impact, "Arial Black", sans-serif;
}

.brand__text {
  font-family: Impact, "Arial Black", sans-serif;
  letter-spacing: 0;
}

.brand__text strong {
  color: var(--rose);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.main-nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 5px 5px 0 var(--ink);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.58);
}

.btn--dark {
  background: var(--ink);
  color: #fff;
}

.btn--small {
  min-height: 38px;
  padding: 0 15px;
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 80px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: clamp(30px, 5vw, 84px);
  align-items: center;
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 72px) 36px;
  overflow: hidden;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 115px;
  background:
    repeating-linear-gradient(90deg, rgba(22, 18, 15, 0.12) 0 1px, transparent 1px 78px),
    linear-gradient(to top, rgba(255, 247, 234, 0.94), transparent);
  content: "";
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Impact, "Arial Black", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6.2vw, 88px);
  line-height: 0.96;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1;
}

h3 {
  font-size: 23px;
  line-height: 1.1;
}

.hero__lead {
  max-width: 620px;
  color: #3f3732;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.hero__actions,
.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__stats span {
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.hero__stats strong {
  color: var(--ink);
}

.hero__media {
  position: relative;
  z-index: 1;
  min-height: 560px;
}

.hero__media::before {
  position: absolute;
  top: 4px;
  left: calc((min(42vw, 500px) / 2) - 18px);
  z-index: 2;
  width: 0;
  height: 0;
  border-right: 18px solid transparent;
  border-left: 18px solid transparent;
  border-top: 34px solid var(--rose);
  filter: drop-shadow(0 4px 0 var(--ink));
  content: "";
}

.hero__wheel {
  position: absolute;
  inset: 22px auto auto 0;
  z-index: 1;
  width: min(42vw, 500px);
  aspect-ratio: 1;
  border: 18px solid var(--ink);
  border-radius: 50%;
  background:
    radial-gradient(circle, transparent 0 24%, rgba(22, 18, 15, 0.18) 24% 25%, transparent 25%),
    conic-gradient(
      from 22.5deg,
      var(--sun) 0 45deg,
      var(--green) 45deg 90deg,
      #fff 90deg 135deg,
      var(--rose) 135deg 180deg,
      var(--blue) 180deg 225deg,
      var(--gold) 225deg 270deg,
      var(--teal) 270deg 315deg,
      #f7efe0 315deg 360deg
    );
  box-shadow: var(--shadow);
  animation: wheelSpin 22s linear infinite;
}

.hero__wheel::before {
  position: absolute;
  inset: 26%;
  border: 12px solid var(--ink);
  border-radius: 50%;
  background: var(--surface);
  content: "";
}

.hero__wheel::after {
  position: absolute;
  inset: 35%;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 4px solid var(--ink);
  border-radius: 50%;
  background: var(--sun);
  color: var(--ink);
  box-shadow: 0 0 0 8px rgba(255, 253, 247, 0.8);
  content: "PIN-UP UZ";
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 22px;
  line-height: 1;
  text-align: center;
}

.hero__wheel span {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  width: 96px;
  min-height: 58px;
  margin: -29px 0 0 -48px;
  place-items: center;
  padding: 8px 6px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.88);
  color: var(--ink);
  text-align: center;
  box-shadow: 3px 3px 0 rgba(22, 18, 15, 0.72);
  transform: rotate(calc(var(--i) * 45deg)) translateY(-190px) rotate(calc(var(--i) * -45deg));
}

.hero__wheel span b {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 18px;
  line-height: 1;
}

.hero__wheel span small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.hero__phone {
  position: absolute;
  right: 0;
  bottom: 20px;
  z-index: 4;
  width: min(310px, 78vw);
  min-height: 490px;
  padding: 26px;
  border: 5px solid var(--ink);
  border-radius: 36px;
  background:
    linear-gradient(180deg, #202020, #101010 42%, #262017),
    var(--ink);
  box-shadow: 14px 18px 0 rgba(22, 18, 15, 0.18);
  color: #fff;
}

.phone-top {
  width: 74px;
  height: 8px;
  margin: 0 auto 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.phone-card {
  padding: 22px;
  border-radius: 22px;
  background: var(--rose);
}

.phone-card small {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
  text-transform: uppercase;
}

.phone-card strong {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 58px;
}

.phone-card span {
  display: block;
  margin-top: 4px;
  color: #fff;
  font-size: 25px;
  font-weight: 800;
}

.phone-card button {
  width: 100%;
  min-height: 40px;
  margin-top: 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--sun);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
}

.phone-lines {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.phone-lines span {
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.ticker {
  overflow: hidden;
  border-block: 2px solid var(--ink);
  background: var(--sun);
}

.ticker__track {
  display: flex;
  width: max-content;
  gap: 36px;
  padding: 17px 0;
  animation: ticker 22s linear infinite;
}

.ticker__track span {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
}

.section {
  padding: clamp(68px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section--compact {
  padding-bottom: 56px;
}

.section__intro {
  max-width: 740px;
  margin-bottom: 34px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 18px;
}

.bonus-card,
.game-card,
.app-section__panel {
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 7px 7px 0 var(--ink);
}

.bonus-card {
  min-height: 260px;
  padding: 26px;
}

.bonus-card--featured {
  background:
    linear-gradient(135deg, rgba(255, 211, 56, 0.88), rgba(239, 51, 64, 0.86)),
    var(--rose);
  color: var(--ink);
}

.bonus-card__tag {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 7px 10px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.bonus-card p {
  color: #3f3732;
  line-height: 1.6;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.tab {
  min-height: 42px;
  padding: 0 18px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 800;
  cursor: pointer;
}

.tab.is-active {
  background: var(--ink);
  color: #fff;
}

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

.game-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 12px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.game-card.is-hidden {
  display: none;
}

.game-card:hover {
  transform: translateY(-4px);
}

.game-card__art {
  display: grid;
  aspect-ratio: 1.05;
  place-items: center;
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.game-card__art img {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.game-card h3 {
  margin-bottom: 8px;
  font-size: 16px;
}

.game-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.game-card__button {
  min-height: 38px;
  margin-top: auto;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--rose);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.2s ease;
}

.game-card__button:hover {
  transform: translateY(-2px);
}

.app-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 30px;
  align-items: center;
  padding: clamp(58px, 8vw, 98px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(22, 18, 15, 0.95), rgba(22, 18, 15, 0.72)),
    radial-gradient(circle at top right, rgba(255, 211, 56, 0.72), transparent 36%),
    var(--green);
  color: #fff;
}

.app-section__content {
  max-width: 760px;
}

.app-section .eyebrow {
  color: var(--sun);
}

.app-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
}

.app-section__button {
  margin-top: 12px;
}

.app-section__panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 253, 247, 0.96);
  color: var(--ink);
}

.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 800;
}

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

.payment-list span {
  display: grid;
  min-height: 92px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 5px 5px 0 var(--ink);
  font-weight: 800;
}

.content-section {
  padding: clamp(64px, 8vw, 112px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.92), rgba(255, 247, 234, 0.94)),
    var(--surface);
}

.content-article {
  max-width: 1180px;
  margin: 0 auto;
}

.content-article h2 {
  max-width: 860px;
  margin: clamp(44px, 6vw, 72px) 0 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.content-article p {
  max-width: 860px;
  color: #3f3732;
  font-size: 18px;
  line-height: 1.78;
}

.content-lead {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 48px);
  margin-bottom: 34px;
}

.content-lead p {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(18px, 2vw, 21px);
}

.content-image {
  margin: 0;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
}

.content-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.content-image--wide {
  margin-bottom: 24px;
}

.content-image--wide img {
  max-height: 460px;
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(24px, 4vw, 50px);
  align-items: center;
  margin: clamp(46px, 7vw, 82px) 0;
}

.content-split--reverse {
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
}

.content-split--reverse > div {
  order: 2;
}

.content-split--reverse > .content-image {
  order: 1;
}

.table-wrap {
  width: 100%;
  margin: clamp(36px, 6vw, 62px) 0;
  overflow-x: auto;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 7px 7px 0 var(--ink);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.55;
}

th {
  background: var(--sun);
  color: var(--ink);
  font-weight: 800;
}

tr:last-child td {
  border-bottom: 0;
}

th:last-child,
td:last-child {
  border-right: 0;
}

.content-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.content-list li {
  position: relative;
  padding: 16px 18px 16px 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
  color: #3f3732;
  line-height: 1.55;
}

.content-list li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 14px;
  height: 14px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.responsible {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 28px;
  padding: 44px clamp(18px, 5vw, 72px);
  border-block: 2px solid var(--ink);
  background: #f3fff9;
}

.responsible p {
  margin-bottom: 0;
  color: #34443b;
  font-size: 18px;
  line-height: 1.65;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

.faq-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  width: 100%;
  padding: 20px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--surface);
  text-align: left;
  cursor: pointer;
}

.faq-item span {
  font-weight: 800;
}

.faq-item p {
  display: none;
  grid-column: 1 / -1;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.faq-item.is-open p {
  display: block;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 36px clamp(18px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

.site-footer .brand__mark {
  color: var(--ink);
}

.site-footer p,
.footer-links {
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-weight: 800;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(22, 18, 15, 0.72);
  backdrop-filter: blur(14px);
}

.age-gate.is-hidden {
  display: none;
}

.age-gate__panel {
  max-width: 520px;
  padding: 32px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 10px 10px 0 var(--ink);
}

.age-gate__panel h2 {
  margin-bottom: 12px;
  font-size: 36px;
}

.age-gate__panel p {
  color: var(--muted);
  line-height: 1.6;
}

@keyframes wheelSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .main-nav {
    position: fixed;
    top: 79px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: 7px 7px 0 var(--ink);
  }

  .main-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: inline-block;
  }

  .header-actions .btn {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero__media {
    min-height: 440px;
    order: -1;
  }

  .hero__media::before {
    left: calc((min(72vw, 430px) / 2) - 18px);
  }

  .hero__wheel {
    width: min(72vw, 430px);
  }

  .hero__wheel span {
    width: 84px;
    min-height: 52px;
    margin: -26px 0 0 -42px;
    transform: rotate(calc(var(--i) * 45deg)) translateY(-160px) rotate(calc(var(--i) * -45deg));
  }

  .hero__wheel span b {
    font-size: 16px;
  }

  .hero__wheel span small {
    font-size: 10px;
  }

  .bonus-grid,
  .game-grid,
  .payment-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .app-section,
  .responsible,
  .content-lead,
  .content-split,
  .content-split--reverse {
    grid-template-columns: 1fr;
  }

  .content-split--reverse > div,
  .content-split--reverse > .content-image {
    order: initial;
  }
}

@media (max-width: 680px) {
  .site-header {
    display: grid;
    grid-template-columns: 1fr auto;
    padding: 14px 16px;
    gap: 12px;
  }

  .brand__text {
    font-size: 14px;
  }

  .header-actions {
    display: contents;
  }

  .header-actions .btn {
    display: inline-flex;
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .header-actions .btn--ghost {
    grid-column: 1 / 2;
    grid-row: 2;
  }

  .header-actions .btn--primary {
    grid-column: 2 / 3;
    grid-row: 2;
  }

  .menu-toggle {
    grid-column: 2 / 3;
    grid-row: 1;
    justify-self: end;
  }

  .main-nav {
    top: 120px;
  }

  .hero {
    min-height: auto;
    padding-top: 34px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  h2 {
    font-size: 34px;
  }

  .hero__media {
    min-height: 370px;
  }

  .hero__media::before {
    display: none;
  }

  .hero__phone {
    right: 8px;
    width: min(260px, 74vw);
    min-height: 390px;
    padding: 20px;
  }

  .hero__wheel {
    border-width: 12px;
  }

  .hero__wheel span {
    width: 68px;
    min-height: 44px;
    margin: -22px 0 0 -34px;
    padding: 6px 4px;
    transform: rotate(calc(var(--i) * 45deg)) translateY(-118px) rotate(calc(var(--i) * -45deg));
  }

  .hero__wheel::after {
    font-size: 15px;
  }

  .hero__wheel span b {
    font-size: 13px;
  }

  .hero__wheel span small {
    font-size: 8px;
  }

  .bonus-grid,
  .game-grid,
  .payment-list {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 54px 16px;
  }

  .content-article h2 {
    margin-top: 42px;
    font-size: 30px;
  }

  .content-article p {
    font-size: 16px;
    line-height: 1.7;
  }

  .content-lead {
    gap: 16px;
  }

  .content-image img {
    min-height: 220px;
  }

  .content-split {
    margin: 42px 0;
  }

  th,
  td {
    padding: 14px;
    font-size: 14px;
  }

  .site-footer {
    flex-direction: column;
  }
}
