:root {
  --bg: #e9e4f5;
  --bg-alt: #ded7ef;
  --panel: #f4f1fb;
  --panel-2: #e6e0f4;
  --gold: #c98a00;
  --gold-2: #ff9d00;
  --pink: #e5266f;
  --purple: #7b2ff7;
  --text: #241533;
  --muted: #6c5f85;
  --line: #d3c9ea;
  --radius: 14px;
  --wrap: 1180px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 100px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold); text-decoration: none; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 18px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(233, 228, 245, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform .25s ease;
}

.logo:hover { transform: scale(1.05); }

.logo img { height: 42px; width: auto; }

.logo__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--text);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-block;
  padding: 11px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .6px;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
}

.btn:hover::after { left: 130%; }

.btn--ghost {
  color: var(--gold);
  border: 2px solid var(--gold);
  background: transparent;
}

.btn--ghost:hover {
  background: var(--gold);
  color: #1a0f00;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(255, 197, 54, .35);
}

.btn--solid {
  color: #23003a;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  border: 2px solid transparent;
}

.btn--solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(255, 157, 0, .45);
}

.btn--big {
  padding: 16px 52px;
  font-size: 17px;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: #fff;
  animation: pulse 2.4s infinite;
}

.btn--big:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 34px rgba(255, 61, 129, .5);
  animation: none;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 61, 129, .55); }
  70% { box-shadow: 0 0 0 18px rgba(255, 61, 129, 0); }
}

.banner {
  position: relative;
  margin: 26px auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .55);
}

.banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 4, 20, .88) 0%, rgba(10, 4, 20, .65) 45%, rgba(10, 4, 20, .15) 100%);
  display: flex;
  align-items: center;
}

.banner__content {
  padding: 0 6%;
  max-width: 640px;
}

.banner__kicker {
  display: inline-block;
  background: rgba(255, 197, 54, .15);
  border: 1px solid var(--gold-2);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.banner__title {
  display: block;
  color: #fff;
  font-size: clamp(26px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}

.banner__title span { color: var(--gold-2); }

.banner__text {
  display: block;
  font-size: clamp(14px, 1.6vw, 19px);
  color: #d8d0ec;
  margin-bottom: 26px;
}

.banner__terms {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  color: #c4bade;
}

.section { padding: 46px 0; }

.section__title {
  display: block;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 6px;
}

.section__sub {
  display: block;
  color: var(--muted);
  margin-bottom: 28px;
}

.slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.slot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.slot:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 18px 36px rgba(123, 47, 247, .35);
}

.slot__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .5s ease, filter .35s ease;
}

.slot:hover .slot__img {
  transform: scale(1.08);
  filter: brightness(.45) saturate(1.2);
}

.slot__hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .35s ease;
}

.slot:hover .slot__hover { opacity: 1; }

.slot__play {
  padding: 12px 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #23003a;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transform: translateY(14px);
  transition: transform .35s ease, box-shadow .25s ease;
}

.slot:hover .slot__play { transform: translateY(0); }

.slot__play:hover { box-shadow: 0 10px 24px rgba(255, 197, 54, .5); }

.slot__name {
  display: block;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border-top: 1px solid var(--line);
}

.toc {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.toc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  user-select: none;
  background: var(--panel-2);
  transition: background .25s ease;
}

.toc__head:hover { background: #dcd4f0; }

.toc__arrow { transition: transform .3s ease; font-size: 14px; color: var(--gold); }

.toc.is-open .toc__arrow { transform: rotate(180deg); }

.toc__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s ease;
}

.toc.is-open .toc__body { max-height: 1400px; }

.toc__list { list-style: none; padding: 14px 22px 22px; }

.toc__list li { padding: 2px 0; }

.toc__list li.lvl-3 { padding-left: 22px; }

.toc__link {
  display: inline-block;
  color: var(--text);
  padding: 5px 0;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease, padding-left .2s ease;
}

.toc__link:hover {
  color: var(--gold);
  border-color: var(--gold);
  padding-left: 6px;
}

.content { padding: 40px 0 10px; }

.content h1, .content h2, .content h3 {
  line-height: 1.25;
  font-weight: 800;
}

.content h1 { font-size: clamp(26px, 3.4vw, 38px); margin-bottom: 20px; }

.content h2 {
  font-size: clamp(22px, 2.6vw, 30px);
  margin: 40px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--line);
}

.content h3 { font-size: 21px; margin: 26px 0 10px; color: var(--gold); }

.content p { margin-bottom: 16px; color: #2f2242; }

.content strong { color: var(--gold); }

.content ol, .content ul { margin: 0 0 18px 22px; }

.content li { margin-bottom: 8px; color: #2f2242; }

.content hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 34px 0;
}

.table-scroll {
  overflow-x: auto;
  margin-bottom: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  background: var(--panel);
}

th, td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

th {
  background: var(--panel-2);
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
}

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

tbody tr:hover td { background: rgba(123, 47, 247, .1); }

.faq { margin-top: 8px; }

.faq__item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  background: none;
  border: 0;
  text-align: left;
  font-family: inherit;
  transition: color .25s ease, background .25s ease;
}

.faq__q:hover { color: var(--gold); background: var(--panel-2); }

.faq__sign {
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
  transition: transform .3s ease;
}

.faq__item.is-open .faq__sign { transform: rotate(45deg); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.faq__item.is-open .faq__a { max-height: 400px; }

.faq__a p { padding: 0 20px 18px; margin: 0; color: var(--muted); }

.footer {
  margin-top: 50px;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 40px 0 26px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 28px;
}

.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }

.footer__logo img { height: 38px; width: auto; }

.footer__text { color: var(--muted); font-size: 14px; }

.footer__title {
  display: block;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 15px;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--gold);
}

.footer__list { list-style: none; }

.footer__list li { margin-bottom: 8px; }

.footer__list a, .footer__list span { color: var(--muted); font-size: 14px; transition: color .2s ease; }

.footer__list a:hover { color: var(--gold); }

.footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 13px;
}

.age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--pink);
  color: var(--pink);
  font-weight: 800;
  font-size: 13px;
}

@media (max-width: 1024px) {
  .slots { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .header__in { height: 64px; }
  .btn { padding: 9px 18px; font-size: 12px; }
  .banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .banner__overlay {
    position: relative;
    background: linear-gradient(180deg, rgba(10, 4, 20, .62), rgba(10, 4, 20, .9));
    align-items: stretch;
  }
  .banner__content { padding: 24px 18px 26px; max-width: 100%; }
  .banner__title { font-size: 30px; }
  .btn--big { padding: 14px 36px; font-size: 15px; width: 100%; text-align: center; }
  .slots { grid-template-columns: repeat(2, 1fr); }
  .slot__play { padding: 9px 22px; font-size: 12px; }
}

@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .section { padding: 32px 0; }
}
