:root {
  --bg: #f8f5ff;
  --ink: #1f1a2b;
  --muted: #5b5269;
  --card: rgba(255, 255, 255, 0.9);
  --card-strong: #ffffff;
  --stroke: rgba(28, 17, 50, 0.12);
  --shadow: 0 18px 45px rgba(22, 13, 44, 0.14);
  --shadow-soft: 0 10px 25px rgba(22, 13, 44, 0.12);
  --radius: 22px;
  --radius-lg: 30px;
  --grad-a: linear-gradient(135deg, #7c6cff 0%, #ff6fb7 50%, #ffd76a 100%);
  --grad-b: linear-gradient(135deg, #7cf6ff 0%, #7cffc7 45%, #ffe07c 100%);
  --grad-c: linear-gradient(135deg, #ffd1ff 0%, #d6e6ff 50%, #d9fff4 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Nunito", "Comic Sans MS", "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(124, 108, 255, 0.25), transparent 40%),
    radial-gradient(circle at 85% 16%, rgba(255, 111, 183, 0.22), transparent 38%),
    radial-gradient(circle at 10% 80%, rgba(124, 255, 199, 0.18), transparent 44%),
    radial-gradient(circle at 90% 82%, rgba(255, 215, 106, 0.2), transparent 45%),
    var(--bg);
}

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

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

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--card-strong);
  border: 2px solid var(--stroke);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  transform: translateY(-200%);
  transition: transform 180ms ease;
  z-index: 9999;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  margin: 12px auto;
  border-radius: 22px;
  border: 1px solid rgba(28, 17, 50, 0.1);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(22, 13, 44, 0.12);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 16px;
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(22, 13, 44, 0.18);
}

.brand-name {
  font-weight: 900;
  letter-spacing: 0.2px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
}

.nav a {
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid transparent;
  color: rgba(31, 26, 43, 0.9);
  font-weight: 800;
  font-size: 14px;
}

.nav a:hover,
.nav a:focus-visible {
  outline: none;
  border-color: rgba(28, 17, 50, 0.12);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 20px rgba(22, 13, 44, 0.08);
}

.hero {
  padding: 10px 0 34px;
}

.hero-top-inner {
  display: grid;
  gap: 14px;
}

.hero-visual {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(28, 17, 50, 0.12);
  box-shadow: var(--shadow);
  background: var(--grad-c);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.hero-visual--short img {
  aspect-ratio: 16 / 6;
  max-height: 320px;
}

.hero-actions-panel {
  margin-top: -26px;
  padding: 16px 14px 14px;
  border-radius: 28px;
  border: 1px solid rgba(28, 17, 50, 0.12);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 45px rgba(22, 13, 44, 0.16);
}

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

.badge {
  display: inline-flex;
  border-radius: 22px;
  overflow: hidden;
  transform: translateZ(0);
  box-shadow: 0 14px 30px rgba(22, 13, 44, 0.16);
  border: 1px solid rgba(28, 17, 50, 0.12);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(22, 13, 44, 0.2);
}

.badge img {
  width: 240px;
  height: 62px;
  object-fit: cover;
}

.hero-tagline {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero-tag-icon {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(22, 13, 44, 0.14);
}

.hero-tag-title {
  font-weight: 1000;
  letter-spacing: -0.2px;
}

.hero-tag-sub {
  color: var(--muted);
  font-weight: 850;
  font-size: 13px;
}

.section {
  padding: 52px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
}

.section-head {
  text-align: center;
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 40px);
  letter-spacing: -0.2px;
  font-weight: 1000;
}

.section-head p {
  margin: 0 auto;
  max-width: 880px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.7;
}

.checkout-summary {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.summary-item {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(28, 17, 50, 0.12);
  border-radius: 18px;
  box-shadow: 0 10px 20px rgba(22, 13, 44, 0.08);
  padding: 10px 12px;
}

.summary-label {
  font-weight: 900;
  font-size: 12px;
  color: var(--muted);
}

.summary-value {
  margin-top: 4px;
  font-weight: 1000;
  font-size: 14px;
  color: rgba(31, 26, 43, 0.95);
}

.section-head--hero {
  margin-bottom: 12px;
}

.section-head--hero h2 {
  font-size: clamp(24px, 2.5vw, 34px);
}

.section-head--hero p {
  max-width: 820px;
}

.split {
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  background: var(--card-strong);
  padding: 18px 18px;
}

.card-soft {
  background: rgba(255, 255, 255, 0.86);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 950;
}

.card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.7;
}

.contact-details {
  margin: 0 auto 12px;
  max-width: 860px;
}

.contact-dl a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.adv-list {
  margin: 0;
  display: grid;
  gap: 10px;
}

.adv-list dt {
  font-weight: 1000;
  color: rgba(31, 26, 43, 0.98);
}

.adv-list dd {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.65;
}

.receipt {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.receipt-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.receipt-status {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(124, 255, 199, 0.9);
  border: 1px solid rgba(28, 17, 50, 0.12);
  font-weight: 1000;
  font-size: 12px;
  color: rgba(31, 26, 43, 0.95);
}

.receipt-code {
  display: inline-flex;
  gap: 8px;
  align-items: baseline;
  padding: 8px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(28, 17, 50, 0.12);
  box-shadow: 0 10px 20px rgba(22, 13, 44, 0.08);
}

.receipt-code-label {
  font-weight: 900;
  font-size: 12px;
  color: var(--muted);
}

.receipt-code-value {
  font-weight: 1000;
  font-size: 13px;
  color: rgba(31, 26, 43, 0.95);
}

.receipt-rows {
  display: grid;
  gap: 10px;
}

.receipt-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(28, 17, 50, 0.12);
}

.receipt-k {
  font-weight: 900;
  color: rgba(31, 26, 43, 0.95);
  flex: 0 0 auto;
}

.receipt-v {
  text-align: right;
  color: var(--muted);
  font-weight: 800;
  word-break: break-word;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--grad-c);
  border: 1px solid rgba(28, 17, 50, 0.1);
  font-weight: 900;
  font-size: 13px;
}

.media-card {
  border: 1px solid rgba(28, 17, 50, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--grad-b);
  display: grid;
}

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

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(28, 17, 50, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 16px 16px 14px;
  text-align: left;
}

.feature img {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(22, 13, 44, 0.14);
  margin-bottom: 10px;
}

.feature h3 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 950;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.6;
}

.showcase {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(28, 17, 50, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 16px;
}

.showcase-copy h3 {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 1000;
}

.showcase-copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.7;
}

.showcase-subhead {
  margin: 14px 0 8px;
  font-size: 16px;
  font-weight: 1000;
  letter-spacing: -0.1px;
}

.feature-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.6;
}

.feature-list li::marker {
  color: rgba(124, 108, 255, 0.9);
}

.showcase-media {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(28, 17, 50, 0.1);
  background: var(--grad-a);
  box-shadow: 0 14px 30px rgba(22, 13, 44, 0.14);
}

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

.store-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.store-btn {
  display: inline-flex;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(28, 17, 50, 0.12);
  box-shadow: 0 14px 30px rgba(22, 13, 44, 0.14);
}

.store-btn img {
  width: 240px;
  height: 62px;
  object-fit: cover;
}

.subhead {
  margin: 26px 0 14px;
  text-align: center;
  font-weight: 1000;
  letter-spacing: -0.2px;
}

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

.promo-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(28, 17, 50, 0.12);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-rows: auto 1fr;
}

.promo-card img {
  width: 100%;
  aspect-ratio: 1.05 / 1;
  object-fit: cover;
  background: var(--grad-c);
}

.promo-body {
  padding: 12px 12px 14px;
  display: grid;
  gap: 6px;
}

.promo-title {
  font-weight: 1000;
}

.promo-meta {
  color: var(--muted);
  font-weight: 750;
  font-size: 13px;
}

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

.coin-card .promo-body {
  gap: 8px;
}

.coin-amount {
  font-weight: 1000;
  font-size: 16px;
  color: rgba(31, 26, 43, 0.95);
}

.coin-packs-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.coin-pack {
  appearance: none;
  border: 1px solid rgba(28, 17, 50, 0.12);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  box-shadow: 0 12px 26px rgba(22, 13, 44, 0.1);
  padding: 12px 10px 10px;
  cursor: pointer;
  text-align: center;
  display: grid;
  gap: 6px;
  align-content: start;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  position: relative;
}

.coin-pack:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(22, 13, 44, 0.16);
}

.coin-pack:focus-visible {
  outline: none;
  box-shadow: 0 0 0 5px rgba(124, 108, 255, 0.22), 0 18px 38px rgba(22, 13, 44, 0.16);
}

.coin-pack.is-selected {
  background: linear-gradient(180deg, rgba(124, 108, 255, 0.18), rgba(255, 255, 255, 0.92));
  border-color: rgba(124, 108, 255, 0.5);
  box-shadow: 0 0 0 5px rgba(124, 108, 255, 0.22), 0 18px 38px rgba(22, 13, 44, 0.16);
  transform: translateY(-2px);
}

.coin-pack.is-selected::after {
  content: "Selected";
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(124, 255, 199, 0.9);
  border: 1px solid rgba(28, 17, 50, 0.12);
  font-weight: 1000;
  font-size: 12px;
  color: rgba(31, 26, 43, 0.95);
}

.coin-icon {
  width: 54px;
  height: 40px;
  object-fit: contain;
  margin: 0 auto 2px;
  filter: drop-shadow(0 10px 14px rgba(22, 13, 44, 0.18));
}

.coin-pack-title {
  font-weight: 1000;
  font-size: 14px;
  color: rgba(31, 26, 43, 0.98);
}

.coin-pack-price {
  font-weight: 1000;
  font-size: 14px;
  color: rgba(31, 26, 43, 0.98);
}

.coin-pack-meta {
  font-weight: 850;
  font-size: 12px;
  color: var(--muted);
}

.contact-form {
  margin: 0 auto;
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(28, 17, 50, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  position: relative;
}

.contact-form .field-wrap {
  position: relative;
}

.contact-form .custom-placeholder {
  position: absolute;
  pointer-events: none;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  transition: opacity 120ms ease, transform 120ms ease;
  opacity: 1;
}

.contact-form textarea + .custom-placeholder {
  top: 14px;
  transform: none;
}

.contact-form .field-wrap:focus-within .custom-placeholder,
.contact-form input.has-value + .custom-placeholder,
.contact-form textarea.has-value + .custom-placeholder {
  opacity: 0;
  transform: translateY(-100%);
}

.contact-form .field-error {
  min-height: 16px;
  font-size: 12px;
  font-weight: 850;
  color: #b00020;
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid,
.contact-form select.is-invalid {
  border-color: rgba(176, 0, 32, 0.65);
  box-shadow: 0 0 0 4px rgba(176, 0, 32, 0.12), inset 0 2px 0 rgba(22, 13, 44, 0.05);
}

.contact-form label.consent {
  gap: 10px;
}

.consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 850;
  color: rgba(31, 26, 43, 0.92);
  line-height: 1.6;
}

.consent-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: #7c6cff;
  flex: 0 0 auto;
}

.consent-row a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.contact-form span {
  font-size: 13px;
  color: rgba(31, 26, 43, 0.9);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(28, 17, 50, 0.14);
  padding: 12px 12px;
  font: inherit;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.92);
  outline: none;
  box-shadow: inset 0 2px 0 rgba(22, 13, 44, 0.05);
}

.contact-form select {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(28, 17, 50, 0.14);
  padding: 12px 12px;
  font: inherit;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.92);
  outline: none;
  box-shadow: inset 0 2px 0 rgba(22, 13, 44, 0.05);
  appearance: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(124, 108, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(124, 108, 255, 0.18), inset 0 2px 0 rgba(22, 13, 44, 0.05);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}

.btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 18px;
  font: inherit;
  font-weight: 1000;
  background: var(--grad-a);
  color: #1a1130;
  box-shadow: 0 16px 36px rgba(22, 13, 44, 0.18);
  border: 1px solid rgba(28, 17, 50, 0.12);
}

.btn:hover {
  transform: translateY(-1px);
  transition: transform 160ms ease;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.92);
  color: rgba(31, 26, 43, 0.95);
}

.site-footer {
  padding: 26px 0 38px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(28, 17, 50, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 14px 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.footer-links a {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(28, 17, 50, 0.12);
  box-shadow: 0 10px 20px rgba(22, 13, 44, 0.08);
  font-weight: 900;
  font-size: 13px;
  color: rgba(31, 26, 43, 0.92);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  outline: none;
  transform: translateY(-1px);
  transition: transform 160ms ease;
}

.footer-title {
  font-weight: 1000;
}

.footer-sub {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.footer-note {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

@media (max-width: 980px) {
  .split,
  .showcase {
    grid-template-columns: 1fr;
  }

  .coin-packs-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 680px) {
  .badge img,
  .store-btn img {
    width: 210px;
    height: 56px;
  }

  .hero-visual--short img {
    max-height: 240px;
  }

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

  .checkout-summary {
    grid-template-columns: 1fr;
  }

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

  .contact-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(1100px, calc(100% - 26px));
  }

  .coin-packs-grid {
    grid-template-columns: 1fr;
  }

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

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