:root {
  --bg: #212852;
  --bg-soft: #2a3162;
  --bg-card: #323b73;
  --line: #414a8a;
  --text: #f2f3fa;
  --muted: #b3b9dd;
  --gold: #ffd45e;
  --gold-deep: #f2a93b;
  --coral: #f4735e;
  --rose: #ef5d72;
  --radius: 14px;
  --shadow: 0 16px 34px rgba(9, 12, 32, .5);
}

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

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

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

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

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(31, 38, 78, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(9, 12, 32, .35);
}

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

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

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

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

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

.btn {
  display: inline-block;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: .4px;
  text-align: center;
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 15px;
  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(100deg, transparent, rgba(255, 255, 255, .55), transparent);
  transform: skewX(-20deg);
  transition: left .55s ease;
}

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

.btn--ghost {
  background: transparent;
  color: var(--gold);
  box-shadow: inset 0 0 0 2px var(--gold);
}

.btn--ghost:hover {
  background: linear-gradient(135deg, var(--gold), #f6b93b);
  color: #2a2145;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(255, 212, 94, .3);
}

.btn--solid {
  background: linear-gradient(135deg, var(--gold), #f6b93b);
  color: #2a2145;
  box-shadow: 0 8px 18px rgba(242, 169, 59, .28);
}

.btn--solid:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 28px rgba(242, 169, 59, .45);
}

.btn--pulse {
  animation: pulse 2.4s infinite;
}

.btn--xl {
  background: linear-gradient(135deg, var(--coral), var(--rose));
  color: #fff5f2;
  box-shadow: 0 12px 26px rgba(239, 93, 114, .38);
  padding: 20px 62px;
  font-size: clamp(18px, 2vw, 24px);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border-radius: 18px;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 212, 94, .5); }
  70% { box-shadow: 0 0 0 20px rgba(255, 212, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 212, 94, 0); }
}

.btn--xl.btn--pulse {
  animation-name: pulse-coral;
}

@keyframes pulse-coral {
  0% { box-shadow: 0 0 0 0 rgba(239, 93, 114, .5); }
  70% { box-shadow: 0 0 0 22px rgba(239, 93, 114, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 93, 114, 0); }
}

.banner {
  padding: 26px 0 10px;
}

.banner__box {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.banner__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 4% 6%;
  background: linear-gradient(90deg, rgba(28, 34, 70, .96) 0%, rgba(28, 34, 70, .88) 40%, rgba(28, 34, 70, .55) 60%, rgba(28, 34, 70, 0) 80%);
}

.banner__kicker {
  display: inline-block;
  width: fit-content;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff5f2;
  border: 0;
  border-radius: 999px;
  padding: 5px 14px;
  background: linear-gradient(90deg, var(--coral), var(--rose));
}

.banner__title {
  font-size: clamp(22px, 3.6vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  max-width: 620px;
}

.banner__title span {
  display: block;
  background: linear-gradient(90deg, var(--gold), #d98a3d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: .9em;
  margin-top: 2px;
}

.btn--xl:hover {
  box-shadow: 0 18px 34px rgba(239, 93, 114, .5);
}

.banner__box {
  background: #1c2246;
}

.banner__text {
  font-size: clamp(13px, 1.5vw, 18px);
  color: var(--muted);
  max-width: 560px;
}

.banner__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.banner__note {
  font-size: 12px;
  color: var(--muted);
}

.section {
  padding: 46px 0;
}

.section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.section__title {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
}

.section__title span {
  color: var(--gold-deep);
}

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

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

.slot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: 0 6px 16px rgba(9, 12, 32, .35);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.slot img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .5s ease, filter .35s ease;
}

.slot__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(24, 29, 62, .88);
  opacity: 0;
  transition: opacity .35s ease;
}

.slot__play {
  transform: translateY(12px);
  transition: transform .35s ease, box-shadow .25s ease;
}

.slot:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 18px 32px rgba(9, 12, 32, .55);
}

.slot:hover img {
  transform: scale(1.09);
  filter: saturate(1.12);
}

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

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

.slot__name {
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  padding: 0 12px;
  color: var(--text);
}

.slot__caption {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.slot__caption b {
  font-size: 15px;
}

.slot__caption i {
  font-style: normal;
  font-size: 12px;
  color: var(--muted);
}

.toc {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(9, 12, 32, .3);
}

.toc > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  background: linear-gradient(90deg, rgba(244, 115, 94, .28), rgba(255, 212, 94, .2));
  transition: background .25s ease;
}

.toc > summary::-webkit-details-marker {
  display: none;
}

.toc > summary:hover {
  background: linear-gradient(90deg, rgba(244, 115, 94, .42), rgba(255, 212, 94, .32));
}

.toc__mark {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  border: 1px solid var(--gold-deep);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: transform .3s ease;
}

.toc[open] .toc__mark {
  transform: rotate(45deg);
}

.toc__list {
  list-style: none;
  padding: 10px 14px 18px;
  columns: 2;
  column-gap: 26px;
}

.toc__list li {
  break-inside: avoid;
  margin: 0 0 6px;
}

.toc__list a {
  display: block;
  padding: 7px 12px;
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
  border-left: 2px solid transparent;
  transition: background .2s ease, color .2s ease, border-color .2s ease, padding-left .2s ease;
}

.toc__list a:hover {
  background: rgba(255, 212, 94, .14);
  border-left-color: var(--gold-deep);
  color: var(--gold-deep);
  padding-left: 18px;
}

.toc__list li.is-sub a {
  margin-left: 16px;
  font-size: 14px;
  color: var(--muted);
}

.content {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px clamp(16px, 3vw, 38px) 36px;
  box-shadow: 0 6px 16px rgba(9, 12, 32, .3);
}

.content h1 {
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.25;
  margin-bottom: 18px;
}

.content h2 {
  font-size: clamp(21px, 2.4vw, 28px);
  margin: 38px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.content h3 {
  font-size: clamp(18px, 2vw, 22px);
  margin: 26px 0 12px;
  color: var(--gold-deep);
}

.content p {
  margin: 0 0 14px;
  color: #dfe2f4;
}

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

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

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

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

.table-scroll {
  overflow-x: auto;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg-card);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 460px;
  font-size: 15px;
}

thead th {
  background: rgba(255, 212, 94, .14);
  color: var(--gold);
  text-align: left;
  font-weight: 700;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

tbody td {
  padding: 11px 14px;
  border-bottom: 1px solid rgba(65, 74, 138, .65);
  vertical-align: top;
}

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

tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, .04);
}

tbody tr:hover {
  background: rgba(255, 212, 94, .1);
}

.faq {
  margin-top: 8px;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.faq__item[open] {
  border-color: var(--gold);
  box-shadow: 0 8px 18px rgba(9, 12, 32, .4);
}

.faq__item > summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 52px 16px 18px;
  font-weight: 700;
  font-size: 16px;
  position: relative;
  transition: color .25s ease, background .25s ease;
}

.faq__item > summary::-webkit-details-marker {
  display: none;
}

.faq__item > summary:hover {
  color: var(--gold-deep);
  background: rgba(255, 212, 94, .09);
}

.faq__item > summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--gold-deep);
  transition: transform .3s ease;
}

.faq__item[open] > summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq__answer {
  padding: 0 18px 18px;
  color: #dfe2f4;
}

.cta-strip {
  margin: 40px 0 0;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 212, 94, .38);
  background: linear-gradient(120deg, rgba(244, 115, 94, .3), rgba(255, 212, 94, .22));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-strip__title {
  font-size: 22px;
  font-weight: 800;
}

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

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

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

.footer__logo img {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
}

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

.footer__title {
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--gold-deep);
  font-size: 16px;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.footer__list a:hover {
  color: var(--gold-deep);
  padding-left: 5px;
}

.footer__bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  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(--rose);
  color: var(--rose);
  font-weight: 800;
  font-size: 12px;
}

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

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

  .btn--xl {
    padding: 16px 44px;
  }
}

@media (max-width: 720px) {
  .slots {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .toc__list {
    columns: 1;
  }

  .banner__overlay {
    position: static;
    background: linear-gradient(180deg, var(--bg-soft), var(--bg-card));
    padding: 20px 18px 24px;
  }

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

  .btn--xl {
    padding: 16px 40px;
    font-size: 17px;
    width: 100%;
  }

  .logo img {
    height: 34px;
  }

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

@media (max-width: 420px) {
  .slots {
    gap: 12px;
  }

  .slot__caption b {
    font-size: 14px;
  }
}
