:root {
  --bg: #0b0410;
  --bg-2: #14061d;
  --panel: #1b0a26;
  --panel-2: #220d30;
  --accent: #ff2fb9;
  --accent-2: #00e5ff;
  --accent-3: #b14bff;
  --lime: #ffe14d;
  --text: #f6ecff;
  --muted: #c3a8d6;
  --top-bar: #7a00d4;
  --star: #ff9d00;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Trebuchet MS", "Segoe UI", Tahoma, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.is-locked { overflow: hidden; }

a { color: var(--accent-2); }

img { max-width: 100%; }

.wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ---------- age gate ---------- */
.AgeGate {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px;
  background: rgba(6, 2, 10, .93);
  backdrop-filter: blur(6px);
}

.AgeGate[hidden] { display: none; }

.AgeGate-box {
  width: 100%;
  max-width: 520px;
  margin-top: 12px;
  background: linear-gradient(160deg, var(--panel-2), #0e0416);
  border: 2px solid var(--accent);
  border-radius: 18px;
  box-shadow: 0 0 44px rgba(255, 47, 185, .35);
  padding: 26px 22px;
  text-align: center;
}

.AgeGate-badge {
  display: inline-block;
  border: 2px solid var(--accent-2);
  color: var(--accent-2);
  border-radius: 999px;
  font-weight: 700;
  padding: 4px 14px;
  margin-bottom: 12px;
}

.AgeGate-box h2 {
  margin: 0 0 8px;
  font-size: 24px;
  color: var(--lime);
  text-transform: uppercase;
}

.AgeGate-box p { margin: 0 0 18px; color: var(--muted); }

.AgeGate-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  padding: 13px 26px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
}

.btn--yes {
  background: linear-gradient(90deg, var(--lime), #ff8a00);
  color: #24061c;
  box-shadow: 0 0 24px rgba(255, 225, 77, .45);
}

.btn--no {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--accent-3);
}

.AgeGate-deny {
  margin-top: 18px;
  border: 1px solid #ff4d6d;
  background: rgba(255, 77, 109, .12);
  color: #ffd9e0;
  border-radius: 12px;
  padding: 14px;
  font-size: 15px;
}

.AgeGate-deny[hidden] { display: none; }

/* ---------- top bar ---------- */
.TopBar {
  background: linear-gradient(90deg, var(--top-bar), var(--accent));
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.TopBar-badge {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- header ---------- */
.AppHeader {
  position: relative;
  z-index: 5;
  padding: 14px 0;
}

.AppHeader-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.Logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}

.Logo-mark {
  flex: 0 0 auto;
  filter: drop-shadow(0 0 6px rgba(255, 47, 185, .55));
}

.Logo-text {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.1;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}

.Logo-text > span { display: block; }

.Logo-text-accent {
  color: var(--accent-2);
  font-size: 12px;
  letter-spacing: .2em;
}

.Nav { display: flex; gap: 26px; }

.Nav a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.Nav a:hover, .Nav a.is-active { color: var(--lime); }

.Nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 8px;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  padding: 5px 9px;
  cursor: pointer;
}

/* ---------- dotted hero background ---------- */
.Dots {
  position: relative;
  background-color: #08030c;
  background-image:
    radial-gradient(circle at 60% 10%, rgba(255, 47, 185, .35), transparent 55%),
    radial-gradient(circle at 5% 80%, rgba(0, 229, 255, .28), transparent 55%),
    radial-gradient(rgba(177, 75, 255, .55) 32%, transparent 33%);
  background-size: auto, auto, 22px 22px;
  overflow: hidden;
}

.Dots::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, transparent 20%, rgba(8, 3, 12, .85) 90%);
  pointer-events: none;
}

.Dots > * { position: relative; z-index: 2; }

.Dots > .AppHeader { z-index: 20; }

/* ---------- hero ---------- */
.Hero { padding: 26px 0 40px; }

.HeroStage { position: relative; }

.HeroStage-figure {
  position: absolute;
  right: -190px;
  top: 10px;
  width: 300px;
  height: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .75));
}

.Hero-card {
  position: relative;
  z-index: 2;
  background: linear-gradient(120deg, rgba(20, 6, 29, .92), rgba(10, 4, 16, .75));
  border: 1px solid rgba(255, 47, 185, .35);
  border-radius: 16px;
  padding: 26px 24px ;
  text-align: center;
  margin: auto;
  max-width: 800px;
}

.Hero-card h1 {
  margin: 0 0 12px;
  font-size: 26px;
  color: var(--accent-2);
  text-shadow: 0 0 18px rgba(0, 229, 255, .45);
}

.Hero-card p { margin: 0; color: #efe3fb; }

/* ---------- offers ---------- */
.Offers {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 22px auto 0;
  padding-bottom: 44px;
}

.Offer {
  display: grid;
  grid-template-columns: 170px 1fr 220px;
  align-items: center;
  gap: 22px;
  background: #0d0512;
  border: 2px solid var(--accent);
  border-radius: 20px;
  padding: 22px 26px;
  box-shadow: 0 0 22px rgba(255, 47, 185, .28);
  transition: transform .15s ease, box-shadow .15s ease;
}

.Offer:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 34px rgba(0, 229, 255, .4);
  border-color: var(--accent-2);
}

.Offer-logo {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Offer-logo img { max-height: 90px; width: auto; }

.Offer-info { text-align: center; }

.Offer-rate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: 22px;
}

.Offer-stars { color: var(--star); letter-spacing: 2px; }

.Offer-bonus {
  margin: 8px 0 0;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.Offer .btn--yes { width: 100%; text-align: center; padding: 15px 12px; font-size: 16px; }

/* ---------- content pages ---------- */
.Page { padding: 30px 0 50px; }

.Page-card {
  background: rgba(13, 5, 18, .92);
  border: 1px solid rgba(177, 75, 255, .4);
  border-radius: 14px;
  padding: 28px 26px;
  max-width: 760px;
  margin: 0 auto;
}

.Page-card h1 {
  margin: 0 0 20px;
  text-align: center;
  font-size: 26px;
  color: var(--lime);
  text-transform: uppercase;
}

.Page-card h2 {
  font-size: 19px;
  color: var(--accent-2);
  margin: 26px 0 8px;
}

.Page-card p, .Page-card li { color: #e7d9f4; }

.Page-card ul { padding-left: 20px; }

.Layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 22px;
  align-items: start;
  padding: 30px 0 50px;
}

.Layout .Page-card { max-width: none; margin: 0; }

.Newsletter {
  background: linear-gradient(160deg, var(--panel-2), #0d0413);
  border: 1px solid rgba(0, 229, 255, .4);
  border-radius: 14px;
  padding: 22px 20px;
  text-align: center;
}

.Newsletter h3 { margin: 0 0 10px; font-size: 17px; color: #fff; }

.Newsletter p { margin: 0 0 16px; font-size: 14px; color: var(--muted); }

.Newsletter input {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  font: inherit;
}

.Newsletter input::placeholder { color: #9c86ad; }

.Newsletter button {
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  color: #1b0522;
  background: linear-gradient(90deg, var(--accent-2), var(--accent-3));
}

.Newsletter-done {
  margin-top: 10px;
  font-size: 14px;
  color: var(--lime);
}

.Newsletter-done[hidden] { display: none; }

/* ---------- footer ---------- */
.Footer {
  background: linear-gradient(180deg, #08030c, #12061a);
  padding: 34px 0 26px;
  border-top: 1px solid rgba(177, 75, 255, .25);
}

.AppHeader-button {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 34px;
  margin-bottom: 30px;
}

.iqiuanaq {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.icon-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  filter: grayscale(1) brightness(1.9);
  opacity: .85;
  transition: filter .15s ease, opacity .15s ease;
}

a.icon-button:hover { filter: none; opacity: 1; }

.icon-button img { max-height: 46px; width: auto; }

.Footer-text { font-size: 14px; color: #cbb5dc; }

.Footer-text p { margin: 0 0 4px; }

.Footer-links {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.Footer-links a {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline;
}

.Footer-links a:hover { color: var(--lime); }

.Footer-copy {
  margin-top: 22px;
  text-align: center;
  font-size: 12px;
  color: #8f7aa1;
}

@media (max-width: 860px) {
  .Layout { grid-template-columns: 1fr; }

  .HeroStage-figure { width: 240px; }

  .Hero-card { padding-left: 160px; }

  .Offers { max-width: 100%; }
}

@media (max-width: 700px) {
  .Nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 16px;
    left: 16px;
    z-index: 50;
    flex-direction: column;
    gap: 0;
    background: var(--panel);
    border: 1px solid rgba(255, 47, 185, .4);
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .6);
  }

  .Nav.is-open { display: flex; }

  .Nav a { padding: 12px 18px; }

  .Nav-toggle { display: block; }

  .Offer {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 20px;
  }

  .Hero { padding: 16px 0 26px; }

  .HeroStage-figure {
    width: 130px;
    left: 10px;
    top: 4px;
  }

  .Hero-card {
    padding: 14px 12px 18px 118px;
    text-align: center;
    min-height: 200px;
    background: none;
    border: 0;
  }

  .Hero-card h1 { font-size: 20px; }

  .Hero-card p { font-size: 15px; }

  .Offers { margin-top: 6px; }

  .TopBar { text-align: left; }
}
