@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #06080f;
  --surface: rgba(17, 21, 31, 0.92);
  --surface-2: rgba(255, 255, 255, 0.04);
  --red: #ff2d4a;
  --red-dark: #c41228;
  --gold: #ffd24a;
  --text: #eef2ff;
  --muted: #9aa4b8;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 20px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 16px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 45, 74, 0.18), transparent 30%),
    radial-gradient(circle at 95% 8%, rgba(255, 210, 74, 0.12), transparent 25%),
    linear-gradient(180deg, #0a0610, var(--bg));
  z-index: -1;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(8, 6, 12, 0.9);
  border-bottom: 1px solid rgba(255, 45, 74, 0.35);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 16px;
}

.logo {
  width: 140px;
  min-height: 42px;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.header-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-link,
.cta-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid rgba(255, 92, 111, 0.55);
  cursor: pointer;
  transition: transform 0.2s, filter 0.2s, background 0.2s;
  font-family: inherit;
}

.cta-link {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 8px 20px rgba(240, 24, 51, 0.24);
}

.cta-link:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.cta-alt {
  background: rgba(230, 25, 49, 0.12);
  color: #ff465b;
  border-color: #ff2532;
  box-shadow: none;
}

.cta-alt:hover {
  background: rgba(230, 25, 49, 0.22);
}

.header-actions .cta-link:first-child {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: var(--border);
  box-shadow: none;
}

.header-actions .cta-link:first-child:hover {
  background: rgba(255, 255, 255, 0.1);
}

.main {
  padding-bottom: 20px;
}

.hero-section {
  margin: 28px auto;
  max-width: 1180px;
  padding: 48px 36px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(196, 18, 40, 0.95) 0%,
    rgba(40, 8, 16, 0.98) 55%,
    rgba(10, 8, 14, 0.98) 100%
  );
  border: 1px solid rgba(255, 90, 110, 0.35);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -60px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 74, 0.25), transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.25;
}

h1 {
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  font-weight: 900;
}

h2.general-h2 {
  font-size: 1.55rem;
  color: #ff4358;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 45, 74, 0.35);
}

h3.general-h3 {
  font-size: 1.15rem;
  color: var(--gold);
  margin-top: 22px;
}

p {
  margin: 0 0 14px;
}

.general-p {
  color: #c8d0e0;
}

.hero-section p {
  color: rgba(255, 255, 255, 0.9);
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.badge {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 16px 18px;
}

.badge .value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 24px;
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.toc {
  position: sticky;
  top: 90px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(12px);
}

.toc-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 700;
}

.toc a {
  display: block;
  color: var(--muted);
  text-decoration: none;
  padding: 7px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.toc a:hover {
  color: var(--gold);
}

.section {
  margin-bottom: 22px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.quick-panel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto 22px;
  padding: 0 20px;
}

.quick-panel-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 88px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, #0c131f 0%, #0a1019 100%);
  border: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.quick-panel-item.highlight {
  background: linear-gradient(135deg, rgba(54, 17, 23, 0.98), rgba(22, 14, 18, 0.98));
  border-color: rgba(255, 67, 88, 0.3);
}

.quick-panel-title {
  margin: 0 0 4px;
  font-size: 1.1rem;
  font-weight: 800;
}

.quick-panel-subtitle {
  margin: 0;
  font-size: 0.85rem;
  color: #c8d0e0;
  line-height: 1.35;
}

.quick-panel-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  background: radial-gradient(circle, rgba(255, 93, 116, 0.22), rgba(28, 8, 13, 0.9));
}

.rating-grid,
.card-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.rating-card,
.card,
.step-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
}

.rating-card .value,
.card .value,
.step-card .value {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}

.general-table-wrapper {
  overflow-x: auto;
  margin: 18px 0;
}

.general-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 16px;
  overflow: hidden;
  font-size: 0.93rem;
}

.general-td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  vertical-align: top;
  color: #c8d0e0;
}

.general-tr:first-child .general-td {
  background: rgba(255, 45, 74, 0.2);
  color: #fff;
  font-weight: 700;
}

.general-tr:nth-child(even) .general-td {
  background: rgba(255, 255, 255, 0.02);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0;
}

.bonus-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #121418;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}

.bonus-card.featured {
  background: linear-gradient(150deg, rgba(66, 17, 20, 0.96), rgba(34, 13, 16, 0.98));
  border: 2px solid #f1241e;
}

.bonus-card.vip {
  background: linear-gradient(150deg, rgba(40, 37, 11, 0.96), rgba(19, 18, 14, 0.98));
  border: 2px solid #ffd400;
}

.bonus-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 8px;
  background: #e61931;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.bonus-card.vip .bonus-label {
  background: #ffd400;
  color: #140b0d;
}

.bonus-title {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 800;
}

.bonus-amount {
  margin: 0 0 12px;
  color: #ff252f;
  font-size: 1.6rem;
  font-weight: 900;
}

.bonus-card.vip .bonus-amount {
  color: var(--gold);
}

.bonus-details {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.bonus-detail {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
}

.bonus-detail span:last-child {
  font-weight: 700;
  color: #fff;
}

.bonus-card .cta-link,
.bonus-card .cta-alt {
  width: 100%;
  margin-top: 8px;
}

.note {
  background: rgba(255, 210, 74, 0.08);
  border-left: 4px solid var(--gold);
  padding: 16px 18px;
  border-radius: 0 12px 12px 0;
  margin: 18px 0;
  color: #d8dce8;
}

.faq-container {
  display: grid;
  gap: 12px;
}

.faq-item {
  position: relative;
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: 16px;
  padding: 16px 52px 16px 16px;
  background: rgba(255, 255, 255, 0.03);
}

.faq-item .toggle {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.faq-question {
  margin: 0;
  color: var(--gold);
  font-size: 1rem;
  pointer-events: none;
}

.faq-answer {
  display: none;
  margin-top: 12px;
  color: var(--muted);
}

.faq-item .toggle:checked ~ .faq-answer {
  display: block;
}

.faq-item .icon {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red);
  pointer-events: none;
}

.faq-item .icon::before,
.faq-item .icon::after {
  content: "";
  position: absolute;
  background: #fff;
  left: 6px;
  right: 6px;
  top: 11px;
  height: 2px;
  transition: transform 0.2s;
}

.faq-item .icon::after {
  transform: rotate(90deg);
}

.faq-item .toggle:checked ~ .icon::after {
  transform: rotate(0deg);
}

.scroll-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 45, 74, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.2s;
  z-index: 90;
}

.scroll-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-to-top:hover {
  transform: translateY(-2px);
}

footer {
  margin-top: 40px;
  padding: 32px 0 48px;
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.3);
}

footer p {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-brand strong {
  color: #fff;
}

@media (max-width: 960px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
  }

  .hero-badges,
  .rating-grid,
  .card-grid,
  .steps-grid,
  .bonus-grid,
  .quick-panel-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    margin: 16px 12px;
    padding: 32px 22px;
  }

  .section {
    padding: 22px 18px;
  }

  .quick-panel-grid {
    padding: 0 12px;
  }

  .layout {
    padding: 0 12px;
  }
}
