:root {
  --primary: #1a0a3e;
  --primary-mid: #2d1566;
  --accent: #f5b800;
  --accent-dark: #d9a300;
  --accent-light: #fff8e1;
  --violet: #7c3aed;
  --violet-light: #ede9fe;
  --bg: #f7f4ff;
  --bg-card: #ffffff;
  --text: #1a0a3e;
  --text-muted: #5b4d7a;
  --border: rgba(26, 10, 62, 0.1);
  --border-accent: rgba(245, 184, 0, 0.45);
  --shadow: 0 10px 40px rgba(26, 10, 62, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --sidebar-w: 280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
}

body.has-mobile-cta {
  padding-bottom: calc(72px + env(safe-area-inset-bottom));
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.update-bar {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  font-size: 0.8125rem;
  padding: 0.5rem 1rem;
}

.update-bar strong {
  color: var(--accent);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 60px;
}

.logo {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  flex-shrink: 0;
}

.logo em {
  font-style: normal;
  color: var(--violet);
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-toggle-label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle-label span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav {
  display: none;
}

.nav-toggle:checked ~ .nav {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 0.75rem 1rem;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__list a {
  display: block;
  padding: 0.6rem 0;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.nav__list a[aria-current="page"] {
  color: var(--violet);
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9375rem;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(245, 184, 0, 0.35);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 184, 0, 0.45);
}

.btn--header {
  display: none;
  flex-shrink: 0;
  padding: 0.55rem 1rem;
  font-size: 0.8125rem;
}

.hero {
  position: relative;
  min-height: 280px;
  background:
    linear-gradient(125deg, rgba(26, 10, 62, 0.94) 0%, rgba(45, 21, 102, 0.88) 50%, rgba(124, 58, 237, 0.35) 100%),
    url("images/hero.webp") center / cover no-repeat;
  color: #fff;
  padding: 2.5rem 0 2rem;
  text-align: center;
}

.hero__badge {
  display: inline-block;
  background: rgba(245, 184, 0, 0.15);
  border: 1px solid rgba(245, 184, 0, 0.45);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 5.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero__lead {
  margin: 0 auto;
  max-width: 640px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.trust-bar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 1rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-bar__icon {
  font-size: 1rem;
}

.showcase {
  padding: 2rem 0 2.5rem;
}

.showcase__layout {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.showcase__heading {
  margin: 0 0 0.25rem;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.showcase__sub {
  margin: 0 0 0.5rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.sidebar-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sidebar-toggle-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  border: 2px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--primary);
  cursor: pointer;
}

.sidebar-toggle-label::after {
  content: "▼";
  font-size: 0.7rem;
  color: var(--violet);
  transition: transform 0.2s;
}

.sidebar-toggle:checked + .sidebar-toggle-label::after {
  transform: rotate(180deg);
}

.sidebar-panel {
  display: none;
  margin-top: 0.75rem;
}

.sidebar-toggle:checked ~ .sidebar-panel {
  display: block;
}

.sidebar {
  background: var(--bg-card);
  border: 2px solid var(--border-accent);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.sidebar__title {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
}

.sidebar__highlight {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--violet-light);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.sidebar__highlight-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--violet) 0%, var(--primary-mid) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.sidebar__highlight p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
}

.sidebar__list li:last-child {
  border-bottom: none;
}

.sidebar__list li::before {
  content: "✓";
  color: var(--violet);
  font-weight: 700;
  flex-shrink: 0;
}

.sidebar__cta {
  display: block;
  width: 100%;
  margin-top: 1rem;
  text-align: center;
}

.sidebar__updated {
  margin: 1rem 0 0;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.bonus-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.bonus-card {
  position: relative;
  background: var(--bg-card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bonus-card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow);
}

.bonus-card--top {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
}

.testsieger-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--primary);
  font-size: 0.6875rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: 0 var(--radius) 0 var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  z-index: 1;
}

.bonus-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1rem 0.5rem;
  background: linear-gradient(180deg, var(--accent-light) 0%, transparent 100%);
}

.bonus-card--top .bonus-card__header {
  background: linear-gradient(180deg, rgba(245, 184, 0, 0.15) 0%, transparent 100%);
}

.bonus-card__rank {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50%;
}

.bonus-card--top .bonus-card__rank {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: var(--primary);
}

.bonus-card__logo {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid var(--border);
  transition: border-color 0.2s;
}

.bonus-card__logo:hover {
  border-color: var(--violet);
}

.bonus-card__logo img {
  width: 110px;
  height: 110px;
  object-fit: cover;
}

.bonus-card__meta {
  flex: 1;
  min-width: 0;
}

.bonus-card__meta h2 {
  margin: 0 0 0.2rem;
  font-size: 1.15rem;
  font-weight: 700;
}

.bonus-card__rating {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
}

.bonus-card__stars {
  color: var(--accent);
}

.bonus-card__body {
  padding: 0 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bonus-card__bonus {
  background: linear-gradient(135deg, var(--accent-light) 0%, #fff 100%);
  border: 2px dashed var(--accent);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  text-align: center;
}

.bonus-card__bonus-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.bonus-card__bonus-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
}

.bonus-card__perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.bonus-card__perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.bonus-card__perks li::before {
  content: "•";
  color: var(--violet);
  font-weight: 700;
}

.bonus-card__cta {
  display: block;
  width: 100%;
  text-align: center;
}

.seo {
  padding: 2rem 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.seo h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  font-weight: 700;
  color: var(--primary);
}

.seo__text p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.seo__text p:last-child {
  margin-bottom: 0;
}

.faq {
  padding: 2rem 0;
}

.faq h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.2rem, 3.5vw, 1.5rem);
  font-weight: 700;
}

.faq__lead {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq__item h3 {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.faq__item h3::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--violet);
  flex-shrink: 0;
}

.faq__item.is-open h3::after {
  content: "−";
}

.faq__item p {
  margin: 0;
  padding: 0 1rem 0.85rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: none;
}

.faq__item.is-open p {
  display: block;
}

.faq__more {
  display: inline-block;
  margin-top: 1rem;
  color: var(--violet);
  font-weight: 600;
  font-size: 0.9375rem;
}

.faq__more:hover {
  text-decoration: underline;
}

.responsible {
  padding: 2rem 0;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.responsible__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(245, 184, 0, 0.2);
  border: 2px solid var(--accent);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.responsible h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.responsible p {
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  max-width: 560px;
  margin-inline: auto;
}

.responsible__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-top: 0.75rem;
}

.responsible__links a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.footer {
  padding: 2rem 0;
  background: var(--primary-mid);
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  font-size: 0.8125rem;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1rem;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.footer__nav a:hover {
  color: var(--accent);
}

.footer__domain {
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.25rem;
}

.footer__copy {
  margin: 0 0 0.75rem;
}

.footer__disclaimer {
  margin: 0 0 0.75rem;
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.55;
}

.footer__age {
  margin: 0;
}

.footer__age a {
  color: var(--accent);
}

.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(26, 10, 62, 0.97);
  border-top: 1px solid rgba(245, 184, 0, 0.25);
  backdrop-filter: blur(8px);
}

.mobile-cta-bar .btn {
  width: 100%;
}

.page-hero {
  background: var(--primary);
  color: #fff;
  padding: 2rem 0;
  text-align: center;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(1.5rem, 5vw, 2rem);
}

.page-content {
  padding: 2rem 0 2.5rem;
}

.page-content h2 {
  margin: 1.5rem 0 0.75rem;
  font-size: 1.125rem;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p,
.page-content li {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.page-content ul {
  padding-left: 1.25rem;
}

.page-content a {
  color: var(--violet);
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 480px;
  margin-top: 1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg-card);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--violet);
  outline-offset: 1px;
}

@media (min-width: 640px) {
  .nav-toggle-label {
    display: none;
  }

  .header__inner {
    position: relative;
  }

  .nav {
    display: block;
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    margin-left: auto;
  }

  .nav-toggle:checked ~ .nav {
    position: static;
    display: block;
    padding: 0;
    box-shadow: none;
    border: none;
  }

  .nav__list {
    display: flex;
    gap: 0.25rem;
  }

  .nav__list a {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }

  .btn--header {
    display: inline-flex;
  }

  .trust-bar {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 2rem;
  }

  .hero {
    min-height: 320px;
    padding: 3rem 0 2.5rem;
  }

  .sidebar-toggle-label {
    display: none;
  }

  .sidebar-panel {
    display: block !important;
    margin-top: 0;
  }

  .bonus-card__body {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .bonus-card__bonus {
    flex: 1;
    min-width: 180px;
  }

  .bonus-card__perks {
    flex: 1.5;
    min-width: 200px;
  }

  .bonus-card__cta {
    width: auto;
    min-width: 150px;
    flex-shrink: 0;
  }
}

@media (min-width: 1024px) {
  .showcase__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .sidebar-wrap {
    flex: 0 0 var(--sidebar-w);
    position: sticky;
    top: 76px;
  }

  .sidebar-toggle-label {
    display: none;
  }

  .sidebar-panel {
    display: block !important;
  }

  .bonus-cards {
    flex: 1;
    min-width: 0;
  }

  .bonus-card__body {
    flex-wrap: nowrap;
  }

  .bonus-card__bonus {
    flex: 0 0 200px;
  }

  .bonus-card__perks {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .bonus-card,
  .bonus-card__logo {
    transition: none;
  }
}
