:root {
  --bg: #0a0713;
  --bg-2: #120c22;
  --bg-3: #1a1130;
  --line: #2c1f4d;
  --gold: #ffc94a;
  --gold-2: #ff9d2f;
  --violet: #7b3ff2;
  --violet-2: #b45cff;
  --green: #24d17a;
  --text: #ece7fb;
  --muted: #a297c4;
  --radius: 14px;
  --shadow: 0 18px 45px rgba(0, 0, 0, .55);
}

* {
  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: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

a:hover {
  text-decoration: underline;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(10, 7, 19, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

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

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

.brand:hover {
  transform: scale(1.04);
  text-decoration: none;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .3px;
  text-align: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.btn:hover {
  text-decoration: none;
}

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

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

.btn-ghost {
  padding: 10px 24px;
  font-size: 15px;
  color: var(--gold);
  border: 1.5px solid rgba(255, 201, 74, .55);
  background: rgba(255, 201, 74, .06);
}

.btn-ghost:hover {
  color: #1a1130;
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255, 201, 74, .3);
}

.btn-solid {
  padding: 11px 26px;
  font-size: 15px;
  color: #241505;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 8px 20px rgba(255, 157, 47, .32);
}

.btn-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 157, 47, .5);
}

.btn-solid:active,
.btn-ghost:active {
  transform: translateY(0);
}

.banner {
  position: relative;
  margin-top: 18px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 380px;
  display: flex;
  align-items: center;
}

.banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(95deg, rgba(8, 5, 16, .93) 0%, rgba(8, 5, 16, .8) 42%, rgba(8, 5, 16, .25) 75%, rgba(8, 5, 16, .1) 100%);
}

.banner-content {
  position: relative;
  z-index: 2;
  padding: 46px 40px;
  max-width: 640px;
}

.banner-badge {
  display: inline-block;
  padding: 6px 15px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #0f0a1e;
  background: linear-gradient(135deg, var(--green), #6bf0ac);
  margin-bottom: 16px;
}

.banner-title {
  display: block;
  font-size: 46px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -.5px;
  margin-bottom: 8px;
}

.banner-title .accent {
  display: block;
  background: linear-gradient(120deg, var(--gold), var(--gold-2), var(--violet-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.banner-sub {
  display: block;
  font-size: 18px;
  color: #d8cff2;
  margin-bottom: 22px;
}

.banner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.banner-list span {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #efe8ff;
  background: rgba(123, 63, 242, .22);
  border: 1px solid rgba(180, 92, 255, .38);
}

.btn-cta {
  padding: 17px 52px;
  font-size: 19px;
  text-transform: uppercase;
  color: #241505;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 12px 30px rgba(255, 157, 47, .42);
  animation: pulse 2.2s ease-in-out infinite;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 18px 40px rgba(255, 157, 47, .6);
  animation-play-state: paused;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(255, 157, 47, .42); }
  50% { box-shadow: 0 12px 30px rgba(255, 157, 47, .42), 0 0 0 14px rgba(255, 201, 74, 0); }
  1% { box-shadow: 0 12px 30px rgba(255, 157, 47, .42), 0 0 0 0 rgba(255, 201, 74, .45); }
}

.banner-note {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 26px 0 10px;
}

.trust-item {
  padding: 18px 16px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line);
  text-align: center;
  transition: transform .25s ease, border-color .25s ease;
}

.trust-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 201, 74, .45);
}

.trust-item b {
  display: block;
  font-size: 24px;
  color: var(--gold);
  line-height: 1.2;
}

.trust-item span {
  display: block;
  font-size: 13.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .8px;
}

.section {
  margin: 56px 0;
}

.section-head {
  display: block;
  text-align: center;
  margin-bottom: 28px;
}

.section-title {
  display: block;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -.3px;
}

.section-title em {
  font-style: normal;
  color: var(--gold);
}

.section-sub {
  display: block;
  font-size: 16px;
  color: var(--muted);
  margin-top: 6px;
}

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

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

.slot img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform .45s ease, filter .3s ease;
}

.slot-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(180deg, rgba(10, 7, 19, .35), rgba(10, 7, 19, .88));
  opacity: 0;
  transition: opacity .3s ease;
}

.slot-play {
  padding: 11px 30px;
  font-size: 15px;
  text-transform: uppercase;
  color: #241505;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  transform: translateY(14px) scale(.9);
  transition: transform .3s ease, box-shadow .25s ease;
  box-shadow: 0 10px 24px rgba(255, 157, 47, .4);
}

.slot:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 201, 74, .6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .6);
}

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

.slot:hover .slot-overlay {
  opacity: 1;
}

.slot:hover .slot-play {
  transform: translateY(0) scale(1);
}

.slot-name {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 10px 11px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .9);
  background: linear-gradient(transparent, rgba(6, 4, 12, .8) 45%, rgba(6, 4, 12, .97));
  transition: opacity .25s ease;
}

.slot:hover .slot-name {
  opacity: 0;
}

.slots-more {
  text-align: center;
  margin-top: 28px;
}

.btn-wide {
  padding: 15px 48px;
  font-size: 17px;
  text-transform: uppercase;
  color: #241505;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 10px 26px rgba(255, 157, 47, .35);
}

.btn-wide:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(255, 157, 47, .55);
}

.toc {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--bg-2), var(--bg-3));
  overflow: hidden;
}

.toc > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--gold);
  transition: background .25s ease;
}

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

.toc > summary:hover {
  background: rgba(123, 63, 242, .16);
}

.toc > summary::after {
  content: "+";
  font-size: 24px;
  line-height: 1;
  color: var(--muted);
  transition: transform .3s ease, color .25s ease;
}

.toc[open] > summary::after {
  transform: rotate(45deg);
  color: var(--gold);
}

.toc-body {
  padding: 4px 24px 22px;
  border-top: 1px solid var(--line);
}

.toc-list {
  list-style: none;
  counter-reset: toc;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px 26px;
  padding-top: 12px;
}

.toc-list li a {
  display: block;
  padding: 8px 0;
  color: var(--text);
  font-size: 15.5px;
  border-bottom: 1px dashed rgba(87, 66, 138, .35);
  transition: color .2s ease, padding-left .2s ease;
}

.toc-list li a::before {
  counter-increment: toc;
  content: counter(toc) ". ";
  color: var(--gold);
  font-weight: 700;
}

.toc-list li a:hover {
  color: var(--gold);
  padding-left: 6px;
  text-decoration: none;
}

.toc-list li.sub a {
  padding-left: 18px;
  font-size: 14.5px;
  color: var(--muted);
}

.toc-list li.sub a:hover {
  padding-left: 24px;
  color: var(--gold);
}

.article {
  margin: 48px 0;
}

.article h1 {
  font-size: 38px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 22px;
  letter-spacing: -.5px;
}

.article h2 {
  font-size: 27px;
  font-weight: 800;
  margin: 40px 0 14px;
  padding-left: 14px;
  border-left: 4px solid var(--gold);
}

.article h3 {
  font-size: 21px;
  font-weight: 700;
  margin: 28px 0 12px;
  color: var(--gold);
}

.article p {
  margin-bottom: 16px;
  color: #d9d2ef;
}

.article strong {
  color: var(--gold);
  font-weight: 700;
}

.article ol {
  margin: 0 0 18px 0;
  padding-left: 0;
  list-style: none;
  counter-reset: step;
}

.article ol li {
  position: relative;
  padding: 9px 0 9px 44px;
  color: #d9d2ef;
}

.article ol li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 9px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #241505;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.article hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 40px 0;
}

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

.article table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
  min-width: 480px;
}

.article th {
  text-align: left;
  padding: 13px 16px;
  font-weight: 800;
  color: #0f0a1e;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  white-space: nowrap;
}

.article td {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  color: #d9d2ef;
}

.article tbody tr:nth-child(odd) {
  background: rgba(123, 63, 242, .07);
}

.article tbody tr:hover {
  background: rgba(255, 201, 74, .08);
}

.article td:first-child {
  font-weight: 600;
  color: #f3eeff;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--bg-2), var(--bg-3));
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .25s ease;
}

.faq-item[open] {
  border-color: rgba(255, 201, 74, .45);
}

.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 17px 54px 17px 20px;
  position: relative;
  font-size: 17px;
  font-weight: 700;
  color: #f3eeff;
  transition: color .2s ease, background .2s ease;
}

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

.faq-item > summary:hover {
  color: var(--gold);
  background: rgba(123, 63, 242, .14);
}

.faq-item > summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s ease;
}

.faq-item[open] > summary::after {
  transform: translateY(-20%) rotate(-135deg);
}

.faq-answer {
  padding: 0 20px 18px;
  border-top: 1px solid var(--line);
}

.faq-answer p {
  margin: 14px 0 0;
}

.final-cta {
  margin: 56px 0;
  padding: 44px 30px;
  text-align: center;
  border-radius: 22px;
  border: 1px solid rgba(255, 201, 74, .3);
  background:
    radial-gradient(circle at 20% 10%, rgba(123, 63, 242, .38), transparent 55%),
    radial-gradient(circle at 85% 90%, rgba(255, 157, 47, .26), transparent 55%),
    linear-gradient(160deg, var(--bg-2), var(--bg-3));
}

.final-cta .banner-title {
  font-size: 34px;
}

.final-cta .banner-sub {
  margin: 10px auto 22px;
  max-width: 560px;
}

.site-footer {
  margin-top: 60px;
  border-top: 1px solid var(--line);
  background: #07050f;
  padding: 40px 0 26px;
}

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

.footer-col b {
  display: block;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-col p,
.footer-col a {
  font-size: 14.5px;
  color: var(--muted);
}

.footer-col a {
  display: block;
  padding: 4px 0;
  transition: color .2s ease, padding-left .2s ease;
}

.footer-col a:hover {
  color: var(--gold);
  padding-left: 5px;
  text-decoration: none;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 14px;
}

.footer-age {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #d8455a;
  color: #ff7488;
  font-weight: 800;
  font-size: 14px;
  margin-top: 14px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 13.5px;
  color: #7d719e;
  text-align: center;
}

@media (max-width: 1024px) {
  .slots-grid { grid-template-columns: repeat(4, 1fr); }
  .banner-title { font-size: 38px; }
}

@media (max-width: 860px) {
  .trust { grid-template-columns: repeat(2, 1fr); }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .toc-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .banner-content { padding: 34px 24px; }
  .banner-title { font-size: 32px; }
  .section-title { font-size: 26px; }
  .article h1 { font-size: 29px; }
  .article h2 { font-size: 23px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .header-inner { height: 64px; }
  .brand img { height: 34px; }
  .btn-ghost { padding: 8px 15px; font-size: 13.5px; }
  .btn-solid { padding: 9px 16px; font-size: 13.5px; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .banner { min-height: 320px; }
  .banner-title { font-size: 27px; }
  .banner-sub { font-size: 16px; }
  .btn-cta { padding: 15px 34px; font-size: 17px; width: 100%; }
  .slot-overlay { opacity: 1; background: linear-gradient(180deg, transparent 45%, rgba(10, 7, 19, .9)); }
  .slot-play { transform: none; padding: 9px 22px; font-size: 13.5px; }
  .slot-name { display: none; }
}
