:root {
  --primary: #f5c400;
  --primary-light: #ffe16a;
  --gold: #d6a900;
  --purple: #8b2cff;
  --bg: #050505;
  --card: #141414;
  --text: #ffffff;
  --text-muted: #d8d8d8;
  --text-soft: rgba(255, 255, 255, 0.72);
  --border: rgba(245, 196, 0, 0.55);
  --border-soft: rgba(255, 255, 255, 0.14);
  --glow: rgba(245, 196, 0, 0.32);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  background: var(--bg);
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 15px;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 42% at 20% 0%,
      rgba(245, 196, 0, 0.13) 0%,
      transparent 58%
    ),
    radial-gradient(
      ellipse 60% 38% at 88% 18%,
      rgba(139, 44, 255, 0.18) 0%,
      transparent 56%
    ),
    radial-gradient(
      ellipse 70% 48% at 50% 100%,
      rgba(245, 196, 0, 0.07) 0%,
      transparent 52%
    );
  pointer-events: none;
  z-index: 0;
}

a {
  color: inherit;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 16px 36px;
}

.top {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  margin: 0 -16px;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  min-width: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #050505;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff, var(--primary), var(--gold));
  box-shadow: 0 0 18px var(--glow);
  flex: 0 0 auto;
}

.logo-text {
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.top-btns {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 16px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.96);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 2px solid rgba(255, 255, 255, 0.24);
}

.btn-ghost:hover {
  border-color: var(--primary);
}

.btn-fire {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    var(--primary-light) 35%,
    var(--primary) 72%,
    var(--gold) 100%
  );
  color: #050505;
  border: 2px solid var(--primary-light);
  box-shadow: 0 0 22px rgba(245, 196, 0, 0.22);
}

.btn-fire:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 34px rgba(245, 196, 0, 0.36);
}

.btn-xl,
.button-xl {
  width: 100%;
  padding: 17px 24px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes accent-shift {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.hero {
  padding: 28px 0 8px;
  text-align: center;
}

h1 {
  font-size: clamp(30px, 8vw, 40px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.08;
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 span {
  color: var(--primary);
  text-shadow: 0 0 18px rgba(245, 196, 0, 0.28);
}

h2 {
  font-size: 19px;
  line-height: 1.25;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
}

h3 {
  font-size: 15px;
  line-height: 1.3;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 10px;
}

p {
  margin-bottom: 14px;
}

.hero p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 18px 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 12px 10px;
  border-radius: 16px;
  text-align: center;
  background: linear-gradient(
    145deg,
    rgba(245, 196, 0, 0.11),
    rgba(10, 10, 10, 0.88)
  );
  border: 1px solid rgba(245, 196, 0, 0.38);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.hero-stat b {
  display: block;
  color: var(--primary-light);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(245, 196, 0, 0.28);
}

.hero-stat span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-cta {
  margin: 16px 0 0;
}

.block {
  position: relative;
  background: linear-gradient(
    155deg,
    rgba(20, 20, 20, 0.96) 0%,
    rgba(8, 8, 8, 0.98) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 20px 16px;
  margin-top: 14px;
  overflow: hidden;
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.48),
    0 0 24px rgba(245, 196, 0, 0.05);
}

.block-accent {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary),
    #ffffff,
    var(--purple),
    var(--primary)
  );
  background-size: 220% 100%;
  animation: accent-shift 5s linear infinite;
  margin: -20px -16px 16px;
}

.info-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 14px 14px 14px 18px;
  overflow: hidden;
  margin-top: 10px;
}

.info-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--purple));
  border-radius: 4px 0 0 4px;
}

.cards-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 14px 0;
}

.bonus-card,
.limit-card {
  position: relative;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  padding: 18px 14px;
}

.bonus-card:first-child,
.limit-card:first-child {
  border-color: rgba(245, 196, 0, 0.55);
  background: linear-gradient(
    135deg,
    rgba(245, 196, 0, 0.11) 0%,
    rgba(15, 15, 15, 0.96) 100%
  );
  box-shadow: 0 0 20px rgba(245, 196, 0, 0.1);
}

.brand-card {
  text-align: center;
  padding-bottom: 16px;
}

.card-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}

.card-line {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.card-line span:first-child {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.52);
  font-weight: 800;
}

.card-line span:last-child {
  color: var(--text-muted);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.35;
}

.brand-card__btn {
  width: 100%;
  margin-top: 16px;
  padding: 13px 18px;
}

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

.slots-heading h3 {
  margin-bottom: 0;
}

.slots-heading__link {
  flex: 0 0 auto;
  color: var(--primary-light);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(245, 196, 0, 0.55);
}

.slots-heading__link:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.slots-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 12px;
  margin: 16px 0;
}

.slot-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(10, 10, 10, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.slot-card:hover {
  border-color: var(--primary);
  box-shadow:
    0 0 26px rgba(245, 196, 0, 0.18),
    0 0 26px rgba(139, 44, 255, 0.14);
  transform: translateY(-2px);
}

.slot-card__image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.slot-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.slot-card__body {
  padding: 10px;
}

.slot-card__name {
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  margin-bottom: 8px;
}

.slot-card__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  margin-bottom: 8px;
}

.slot-card__meta span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 24px;
  padding: 4px 7px;
  border-radius: 999px;
  color: var(--primary-light);
  background: rgba(245, 196, 0, 0.09);
  border: 1px solid rgba(245, 196, 0, 0.28);
  font-size: 10px;
  font-weight: 900;
  text-align: center;
}

.slot-card__details {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  margin-top: 5px;
}

.slot-card__btn {
  width: 100%;
  margin-top: 10px;
  padding: 10px 12px;
  font-size: 12px;
}

.limit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 14px 0;
}

.limit-card {
  text-align: center;
}

.limit-value {
  font-size: 18px;
  line-height: 1.15;
  font-weight: 900;
  color: var(--primary-light);
  text-shadow: 0 0 10px rgba(245, 196, 0, 0.3);
}

.slot-note {
  margin-top: 12px;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-size: 0.84rem;
  color: var(--text-muted);
  background: rgba(245, 196, 0, 0.05);
  border: 1px dashed rgba(245, 196, 0, 0.24);
}

.block-bottom-btn {
  margin-top: 16px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

details {
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 14px;
  color: var(--text);
  font-weight: 900;
  line-height: 1.35;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #050505;
  background: linear-gradient(135deg, #ffffff, var(--primary));
  font-weight: 900;
}

details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 14px 14px;
  color: var(--text-soft);
  font-size: 14px;
}

footer {
  text-align: center;
  padding: 24px 0 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.48);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary-light);
}

@media (max-width: 420px) {
  .top {
    align-items: flex-start;
  }

  .top-btns {
    gap: 6px;
  }

  .btn {
    padding: 10px 12px;
    font-size: 12px;
  }

  h1,
  h2 {
    text-align: center;
  }

  .slots-heading {
    align-items: flex-start;
  }

  .slots-heading__link {
    font-size: 11px;
    padding-top: 2px;
  }

  .slots-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 10px;
  }

  .slot-card__body {
    padding: 9px;
  }
}

@media (min-width: 520px) {
  .wrap {
    max-width: 560px;
  }

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

  .slots-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .block-accent {
    animation: none;
  }
}

.logo img {
  display: block;
  width: 148px;
  max-width: 100%;
  height: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 16px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid var(--primary-light);
  cursor: pointer;
  white-space: nowrap;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    var(--primary-light) 35%,
    var(--primary) 72%,
    var(--gold) 100%
  );
  color: #050505;
  box-shadow: 0 0 22px rgba(245, 196, 0, 0.22);
}

.button-xl {
  width: 100%;
  padding: 17px 24px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body > header,
body > section.section,
body > footer {
  position: relative;
  z-index: 1;
  width: min(480px, calc(100% - 32px));
  margin-left: auto;
  margin-right: auto;
}

body > header.top {
  margin-top: 0;
}

body > section.section.hero {
  padding-top: 28px;
  padding-bottom: 8px;
}

body > footer {
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 520px) {
  body > header,
  body > section.section,
  body > footer {
    width: min(560px, calc(100% - 32px));
  }
}
