:root {
  --bg-deep: #0a0508;
  --bg-card: rgba(18, 8, 14, 0.92);
  --pink: #ff4d8d;
  --pink-soft: #ff7eb3;
  --red: #e61e3c;
  --red-dark: #9b0f24;
  --accent: #ff2d6a;
  --gold-replace: #ffb3d9;
  --text: #f5e8ee;
  --text-muted: #b8a0ac;
  --border: rgba(255, 77, 141, 0.45);
  --glow: 0 0 40px rgba(255, 45, 106, 0.35);
  --radius: 14px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.55;
  min-height: 100vh;
}

a {
  color: var(--pink-soft);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.container--narrow {
  width: min(820px, 92vw);
}

/* Sticky stack: promo + site header */
.header-stack {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #12060c;
}

/* Top redirect bar */
.top-bar {
  background: linear-gradient(105deg, #140810 0%, #2a0a18 35%, #1a0614 70%, #12060c 100%);
  border-bottom: 1px solid rgba(255, 77, 141, 0.35);
  box-shadow: 0 4px 24px rgba(230, 30, 60, 0.25);
}

.top-bar.is-hidden {
  display: none;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0.55rem clamp(0.75rem, 3vw, 1.25rem);
  max-width: 1120px;
  margin: 0 auto;
  width: 100%;
}

.top-bar__left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex: 1 1 220px;
  min-width: 0;
}

.top-bar__mark {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
  font-size: 1rem;
  color: #1a0510;
  background: linear-gradient(135deg, var(--red) 0%, var(--pink) 55%, var(--pink-soft) 100%);
  box-shadow: 0 2px 12px rgba(255, 45, 106, 0.45);
}

.top-bar__copy {
  min-width: 0;
}

.top-bar__brand {
  display: block;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--pink-soft);
  line-height: 1.2;
}

.top-bar__msg {
  margin: 0.15rem 0 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--text);
}

.top-bar__close {
  flex-shrink: 0;
  order: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}

.top-bar__close:hover {
  color: var(--pink-soft);
  background: rgba(255, 77, 141, 0.15);
}

.top-bar__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem 0.65rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.top-bar__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 77, 141, 0.25);
  font-size: 0.72rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.top-bar__pill-icon {
  font-size: 0.95rem;
  opacity: 0.9;
}

.top-bar__pill-text {
  letter-spacing: 0.02em;
}

.top-bar__sec {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--pink-soft);
  text-shadow: 0 0 12px rgba(255, 126, 179, 0.5);
}

.top-bar__go {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 40%, var(--accent) 100%);
  color: #fff !important;
  border: none;
  box-shadow: 0 4px 18px rgba(230, 30, 60, 0.45);
  font-weight: 700;
  white-space: nowrap;
}

.top-bar__go:hover {
  box-shadow: 0 6px 22px rgba(255, 45, 106, 0.55);
  filter: brightness(1.05);
}

@media (max-width: 720px) {
  .top-bar__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .top-bar__close {
    position: absolute;
    top: 0.45rem;
    right: clamp(0.75rem, 3vw, 1.25rem);
  }

  .top-bar__inner {
    position: relative;
    padding-top: 2.25rem;
  }

  .top-bar__left {
    flex: none;
  }

  .top-bar__actions {
    justify-content: center;
  }
}

@media (min-width: 721px) {
  .top-bar__inner {
    flex-wrap: nowrap;
  }

  .top-bar__close {
    order: 2;
  }

  .top-bar__actions {
    order: 3;
  }

  .top-bar__left {
    order: 1;
  }
}

/* Site header */
.site-header {
  border-bottom: 1px solid rgba(255, 77, 141, 0.2);
  background: rgba(10, 5, 8, 0.92);
  backdrop-filter: blur(10px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.65rem 0;
}

.site-header__logo {
  font-weight: 900;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--text);
  letter-spacing: 0.02em;
}

.site-header__logo span {
  background: linear-gradient(120deg, var(--pink-soft), var(--red));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-header__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1.25rem;
}

.site-header__nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}

.site-header__nav a:hover {
  color: var(--pink-soft);
}

.site-header__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

@media (max-width: 720px) {
  .site-header__inner {
    justify-content: center;
  }

  .site-header__nav {
    justify-content: center;
    width: 100%;
    order: 3;
  }

  .site-header__actions {
    justify-content: center;
    width: 100%;
    order: 2;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: inherit;
  color: inherit;
}

.btn:active {
  transform: scale(0.98);
}

.btn--sm {
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
}

.btn--lg {
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--pink) 55%, var(--pink-soft) 100%);
  color: #1a0510;
  box-shadow: 0 8px 28px rgba(230, 30, 60, 0.45);
}

.btn--primary:hover {
  box-shadow: 0 10px 36px rgba(255, 45, 106, 0.55);
}

.btn--outline {
  background: rgba(12, 4, 10, 0.65);
  border-color: var(--pink);
  color: var(--text);
}

.btn--outline:hover {
  border-color: var(--pink-soft);
  background: rgba(255, 77, 141, 0.12);
}

.btn__icon {
  font-size: 1.1em;
}

.btn--fire .btn__icon {
  filter: drop-shadow(0 0 6px rgba(255, 200, 100, 0.6));
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100vh, 920px);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 2rem 0 4rem;
  overflow: hidden;
}

@media (min-width: 960px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    padding: 3rem 4vw 4rem;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(230, 30, 60, 0.2), transparent 55%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(255, 77, 141, 0.15), transparent 50%),
    linear-gradient(180deg, #12060c 0%, #0a0508 100%);
  z-index: 0;
}

.hero__watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(3rem, 14vw, 10rem);
  font-weight: 900;
  letter-spacing: 0.06em;
  color: rgba(255, 77, 141, 0.06);
  text-transform: uppercase;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

.hero__banner-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 1rem;
}

.hero__banner {
  max-height: min(72vh, 640px);
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.55));
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: 1.5rem 6vw;
  text-align: center;
}

@media (min-width: 960px) {
  .hero__content {
    text-align: left;
    padding: 1.5rem 2rem 1.5rem 0;
  }
}

.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-replace);
  background: rgba(255, 77, 141, 0.08);
  margin-bottom: 1rem;
}

.hero__title {
  margin: 0 0 0.35rem;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  background: linear-gradient(120deg, #fff 0%, var(--pink-soft) 45%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(255, 77, 141, 0.3);
}

.hero__subtitle {
  margin: 0 0 1rem;
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--text);
  font-weight: 600;
}

.hero__lead {
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}

@media (min-width: 960px) {
  .hero__lead {
    margin: 0 0 1.5rem;
  }
}

.bonus-box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 520px;
  margin: 0 auto 1.75rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  backdrop-filter: blur(8px);
}

@media (min-width: 520px) {
  .bonus-box {
    grid-template-columns: repeat(3, 1fr);
    max-width: 640px;
  }
}

.bonus-box__col {
  text-align: center;
  padding: 0.35rem;
}

.bonus-box__big {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--pink-soft);
}

.bonus-box__small {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

@media (min-width: 960px) {
  .hero__ctas {
    justify-content: flex-start;
  }
}

.trust-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

@media (min-width: 960px) {
  .trust-row {
    justify-content: flex-start;
  }
}

.trust-row__item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.trust-row__ic {
  font-size: 1rem;
}

.scroll-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.scroll-hint__chev {
  animation: bounce 1.6s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* Main sections */
.main {
  position: relative;
  z-index: 5;
}

.section {
  padding: 3.5rem 0;
}

.section--cards {
  background: linear-gradient(180deg, #0f060a 0%, #140810 100%);
  border-top: 1px solid rgba(255, 77, 141, 0.12);
}

.section--article {
  background: #0c0508;
  border-top: 1px solid rgba(255, 77, 141, 0.08);
}

.section--faq {
  background: linear-gradient(180deg, #0c0508 0%, #0f060a 100%);
  border-top: 1px solid rgba(255, 77, 141, 0.08);
}

.section__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.section__intro {
  margin: 0 auto 2rem;
  max-width: 640px;
  text-align: center;
  color: var(--text-muted);
}

.cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: rgba(255, 126, 179, 0.65);
  box-shadow: 0 12px 40px rgba(230, 30, 60, 0.2);
}

.card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a0a12;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__title {
  margin: 1rem 1.25rem 0.35rem;
  font-size: 1.1rem;
}

.card__text {
  margin: 0 1.25rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex: 1;
}

.card__link {
  margin: 0 1.25rem 1.25rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--pink-soft);
}

.card__link:hover {
  color: #fff;
}

.seo-text h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.15rem;
  color: var(--pink-soft);
}

.seo-text > h3:first-of-type {
  margin-top: 0.35rem;
}

.seo-text p {
  margin: 0 0 1rem;
  color: #d4c2cb;
  font-size: 0.98rem;
}

.faq {
  max-width: 720px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  background: var(--bg-card);
  overflow: hidden;
}

.faq__item summary {
  padding: 1rem 1.15rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  font-weight: 400;
  color: var(--pink-soft);
  font-size: 1.25rem;
  line-height: 1;
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__item summary:hover {
  background: rgba(255, 77, 141, 0.06);
}

.faq__answer {
  margin: 0;
  padding: 0 1.15rem 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.cta-block {
  margin-top: 2.5rem;
  padding: 2rem;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(230, 30, 60, 0.12), rgba(255, 77, 141, 0.08));
}

.cta-block__text {
  margin: 0 0 1rem;
  font-size: 1.1rem;
}

.footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 77, 141, 0.15);
  background: #080305;
}

.footer__inner {
  text-align: center;
}

.footer__brand {
  margin: 0 0 0.35rem;
  font-weight: 700;
  color: var(--pink-soft);
}

.footer__note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Floating CTA */
.float-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: flex;
  align-items: stretch;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
}

.float-cta.is-hidden {
  display: none;
}

.float-cta__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem 0.65rem 0.85rem;
  background: linear-gradient(135deg, var(--red-dark), var(--accent));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  white-space: nowrap;
}

.float-cta__icon {
  font-size: 1.1rem;
}

.float-cta__close {
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0 0.65rem;
  cursor: pointer;
}

.float-cta__close:hover {
  background: rgba(0, 0, 0, 0.55);
}

@media (max-width: 480px) {
  .float-cta__link {
    font-size: 0.75rem;
    padding: 0.55rem 0.75rem;
  }
}
