/* Neo-night: violet void, neon rose + mint, glass, motion (respects reduced-motion) */

:root {
  --bg-deep: #06040d;
  --bg-card: rgba(20, 16, 36, 0.78);
  --bg-elevated: rgba(28, 22, 48, 0.92);
  --text: #f7f4ff;
  --text-muted: #9a91b5;
  --accent: #ff4d8c;
  --accent-2: #2ee6d6;
  --danger: #ff3d6a;
  --link: #c4b5fd;
  --radius: 22px;
  --radius-sm: 12px;
  --font-sans: "Manrope", system-ui, sans-serif;
  --font-serif: "Libre Baskerville", Georgia, serif;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.58);
  --shadow-glow: 0 0 50px rgba(255, 77, 140, 0.18);
  --header-h: 78px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes hero-bg-drift {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.06) translate(-1.2%, 0.8%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}

@keyframes glow-orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.55;
  }
  33% {
    transform: translate(4%, -3%) scale(1.08);
    opacity: 0.75;
  }
  66% {
    transform: translate(-3%, 4%) scale(0.95);
    opacity: 0.6;
  }
}

@keyframes border-shine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes fade-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes overlay-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes cookie-slide {
  from {
    transform: translateY(110%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes btn-shimmer {
  0% {
    transform: translateX(-120%) skewX(-12deg);
  }
  100% {
    transform: translateX(220%) skewX(-12deg);
  }
}

@keyframes tick-pop {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  70% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes star-twinkle {
  0%,
  100% {
    filter: brightness(1);
    text-shadow: 0 0 10px rgba(255, 200, 100, 0.35);
  }
  50% {
    filter: brightness(1.25);
    text-shadow: 0 0 18px rgba(255, 210, 120, 0.55);
  }
}

@keyframes age-gate-halo-spin {
  to {
    transform: translate(-50%, -48%) rotate(360deg);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(
      ellipse 100% 80% at 10% -20%,
      rgba(120, 80, 200, 0.22),
      transparent 50%
    ),
    radial-gradient(
      ellipse 80% 60% at 100% 30%,
      rgba(255, 77, 140, 0.12),
      transparent 45%
    ),
    radial-gradient(
      ellipse 70% 50% at 50% 100%,
      rgba(46, 230, 214, 0.08),
      transparent 50%
    );
  background-attachment: fixed;
  min-height: 100vh;
}

body.age-locked,
body.captcha-locked {
  overflow: hidden;
}

html.Uk10topbrands-age-ok #age-gate {
  display: none !important;
  visibility: hidden;
  pointer-events: none;
}

#captcha-modal.captcha-modal--mandatory #captcha-close {
  display: none !important;
}

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

a {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-2);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #0c1017;
  font-weight: 700;
}

.skip-link:focus {
  left: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1140px, 100% - 2rem);
  margin-inline: auto;
}

/* Scroll-reveal (toggled by JS: .reveal.is-visible) */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(4px);
  transition:
    opacity 0.85s var(--ease-out-expo),
    transform 0.85s var(--ease-out-expo),
    filter 0.85s var(--ease-out-expo);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  isolation: isolate;
  background: linear-gradient(
    180deg,
    rgba(8, 5, 18, 0.94),
    rgba(8, 5, 18, 0.78)
  );
  border-bottom: 1px solid rgba(196, 181, 253, 0.1);
  backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent-2),
    var(--accent),
    var(--link),
    transparent
  );
  background-size: 200% 100%;
  animation: border-shine 8s linear infinite;
  opacity: 0.65;
  pointer-events: none;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0.65rem 1rem;
  min-height: var(--header-h);
  padding-block: 0.55rem;
}

@media (min-width: 721px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    gap: 1rem;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
}

.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 4px 20px rgba(255, 77, 140, 0.2);
  transition:
    transform 0.35s var(--ease-out-expo),
    box-shadow 0.35s ease;
}

.brand:hover img {
  transform: rotate(-4deg) scale(1.05);
  box-shadow:
    0 0 0 1px rgba(46, 230, 214, 0.35),
    0 6px 28px rgba(46, 230, 214, 0.25);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  justify-self: end;
  grid-column: 2;
  grid-row: 1;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  cursor: pointer;
  color: var(--text);
  transition:
    border-color 0.18s,
    background 0.18s;
}

.nav-burger:hover {
  border-color: rgba(255, 77, 140, 0.45);
}

.nav-burger:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 2px;
}

.nav-burger-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition:
    transform 0.22s,
    opacity 0.22s;
}

.site-header.nav-is-open .nav-burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-is-open .nav-burger-bar:nth-child(2) {
  opacity: 0;
}

.site-header.nav-is-open .nav-burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.35rem;
  grid-column: 1 / -1;
  grid-row: 2;
  justify-content: center;
  padding: 0.4rem 0;
}

@media (min-width: 721px) {
  .nav-burger {
    display: none !important;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .nav-main {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }
}

.nav-main a {
  position: relative;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 600;
  padding: 0.25rem 0;
  transition: color 0.25s ease;
}

.nav-main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out-expo);
}

.nav-main a:hover,
.nav-main a[aria-current="page"] {
  color: var(--text);
}

.nav-main a:hover::after,
.nav-main a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, var(--danger), #b83248);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  box-shadow: 0 4px 14px rgba(224, 69, 92, 0.35);
}

.helpline {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: right;
  line-height: 1.35;
}

.helpline strong {
  color: var(--text);
  display: block;
}

@media (max-width: 720px) {
  .helpline {
    display: none;
  }

  .nav-burger {
    display: inline-flex;
  }

  .nav-main {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.4rem 0 0.55rem;
    border-top: 1px solid rgba(196, 181, 253, 0.12);
    margin-top: 0.2rem;
  }

  .nav-main a {
    padding: 0.7rem 0.4rem;
    border-radius: var(--radius-sm);
  }

  .nav-main a:active {
    background: rgba(255, 255, 255, 0.04);
  }

  .site-header.nav-is-open .nav-main {
    display: flex;
  }
}

.hero {
  position: relative;
  padding: clamp(2.75rem, 7vw, 5.25rem) 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(520px, 90vw);
  height: min(520px, 90vw);
  top: -18%;
  right: -8%;
  background: radial-gradient(
    circle,
    rgba(255, 77, 140, 0.35) 0%,
    transparent 68%
  );
  filter: blur(40px);
  animation: glow-orb 14s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  width: min(420px, 75vw);
  height: min(420px, 75vw);
  bottom: -20%;
  left: -10%;
  background: radial-gradient(
    circle,
    rgba(46, 230, 214, 0.22) 0%,
    transparent 65%
  );
  filter: blur(48px);
  animation: glow-orb 18s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("../images/bg.jpg") center / cover no-repeat;
  background-color: #06040d;
  transform-origin: center center;
  animation: hero-bg-drift 28s ease-in-out infinite;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(6, 4, 13, 0.42) 0%,
      rgba(6, 4, 13, 0.88) 0%
    ),
    radial-gradient(
      ellipse 120% 80% at 15% 0%,
      rgba(196, 181, 253, 0.2),
      transparent 55%
    ),
    radial-gradient(
      ellipse 90% 70% at 100% 55%,
      rgba(255, 77, 140, 0.16),
      transparent 50%
    );
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4.8vw, 2.9rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 1.1rem;
  max-width: 26ch;
  text-wrap: balance;
  background: linear-gradient(
    135deg,
    #fff 0%,
    var(--link) 45%,
    var(--accent-2) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: fade-rise 0.95s var(--ease-out-expo) both;
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 54ch;
  margin: 0 0 1.85rem;
  animation: fade-rise 0.95s var(--ease-out-expo) 0.12s both;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem 1.85rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.94rem;
  color: var(--text);
  max-width: 300px;
  animation: fade-rise 0.95s var(--ease-out-expo) both;
}

.hero-features li:nth-child(1) {
  animation-delay: 0.22s;
}

.hero-features li:nth-child(2) {
  animation-delay: 0.34s;
}

.hero-features li:nth-child(3) {
  animation-delay: 0.46s;
}

.hero-features .tick {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 8px;
  background: linear-gradient(
    145deg,
    rgba(46, 230, 214, 0.25),
    rgba(255, 77, 140, 0.2)
  );
  color: var(--accent-2);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  box-shadow: 0 0 16px rgba(46, 230, 214, 0.2);
  animation: tick-pop 0.6s var(--ease-out-expo) both;
}

.hero-features li:nth-child(1) .tick {
  animation-delay: 0.35s;
}

.hero-features li:nth-child(2) .tick {
  animation-delay: 0.47s;
}

.hero-features li:nth-child(3) .tick {
  animation-delay: 0.59s;
}

.section-head {
  margin-bottom: 1.65rem;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3.2vw, 2.05rem);
  margin: 0 0 0.4rem;
  color: var(--text);
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(196, 181, 253, 0.15);
}

.section-head .warn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.section-head .warn span.age {
  background: var(--danger);
  color: #fff;
  padding: 0.18rem 0.5rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.74rem;
}

.offers {
  padding: 2.75rem 0 3.25rem;
}

.offers-grid {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.offers-header-row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1fr 160px;
  gap: 1rem;
  padding: 0.75rem 1.15rem;
  background: rgba(30, 24, 48, 0.55);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-sm);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid rgba(196, 181, 253, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

@media (max-width: 900px) {
  .offers-header-row {
    display: none;
  }
}

.offer-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1fr 160px;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem 1.4rem;
  background: linear-gradient(
    155deg,
    rgba(26, 20, 44, 0.85) 0%,
    rgba(18, 14, 32, 0.75) 100%
  );
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  border: 1px solid rgba(196, 181, 253, 0.14);
  border-left: 4px solid var(--accent);
  box-shadow:
    var(--shadow),
    var(--shadow-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition:
    border-color 0.35s ease,
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.35s ease;
}

.offer-card::after {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.06) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out-expo);
  pointer-events: none;
}

.offer-card:hover {
  border-color: rgba(46, 230, 214, 0.35);
  transform: translateY(-6px) scale(1.008);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(255, 77, 140, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.offer-card:hover::after {
  transform: translateX(100%);
}

@media (max-width: 900px) {
  .offer-card {
    grid-template-columns: 1fr;
    text-align: center;
    border-left-width: 1px;
    border-top: 4px solid var(--accent);
  }

  .offer-card .offer-logo-wrap {
    margin-inline: auto;
  }

  .offer-card .offer-cta {
    width: 100%;
  }
}

.offer-logo-wrap {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 16 / 9;
  background: var(--bg-deep);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  padding: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.offer-logo-wrap img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
}

.offer-bonus strong {
  display: block;
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.offer-bonus p {
  margin: 0;
  font-size: 1.04rem;
  color: var(--text);
}

.offer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .offer-meta {
    align-items: center;
  }
}

.stars {
  color: #ffd073;
  letter-spacing: 2px;
  font-size: 1.08rem;
  animation: star-twinkle 2.8s ease-in-out infinite;
}

.pay-icons {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.pay-icons span {
  font-size: 0.64rem;
  padding: 0.22rem 0.5rem;
  background: var(--bg-deep);
  border-radius: 6px;
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.offer-cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
}

.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border: none;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: linear-gradient(135deg, #ff4d8c 0%, #d63d72 48%, #2ee6d6 160%);
  background-size: 200% 200%;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.94rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow:
    0 8px 28px rgba(255, 77, 140, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition:
    transform 0.3s var(--ease-out-expo),
    filter 0.25s ease,
    box-shadow 0.3s ease,
    background-position 0.5s ease;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 100%
  );
  width: 45%;
  animation: btn-shimmer 2.8s ease-in-out infinite;
  opacity: 0.5;
  pointer-events: none;
}

.btn-primary:hover {
  filter: brightness(1.08);
  transform: translateY(-3px) scale(1.02);
  background-position: 100% 50%;
  box-shadow:
    0 14px 40px rgba(255, 77, 140, 0.45),
    0 0 32px rgba(46, 230, 214, 0.15);
  color: #fff;
}

.btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.btn-primary:disabled::before {
  display: none;
}

.offer-domain {
  font-size: 0.74rem;
  color: var(--text-muted);
  text-align: center;
  word-break: break-all;
}

.responsible {
  padding: 2.75rem 0;
}

.resp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
}

@media (max-width: 800px) {
  .resp-grid {
    grid-template-columns: 1fr;
  }
}

.resp-box {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border-radius: var(--radius);
  padding: 1.65rem 1.9rem;
  border: 1px solid rgba(196, 181, 253, 0.16);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 0.4s var(--ease-out-expo),
    border-color 0.3s ease;
}

.resp-box:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 230, 214, 0.28);
}

.resp-box h2 {
  font-family: var(--font-serif);
  font-size: 1.32rem;
  margin: 0 0 1.05rem;
}

.resp-box p {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
  font-size: 0.94rem;
}

.resp-box p:last-child {
  margin-bottom: 0;
}

.trust-grid {
  display: grid;
  gap: 1rem;
  align-items: center;
  justify-items: center;
}

.trust-grid a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem;
  background: #f4f6f9;
  border-radius: var(--radius-sm);
  width: 100%;
  min-height: 74px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    background 0.18s,
    transform 0.18s;
}

.trust-grid a:hover {
  background: #fff;
  transform: scale(1.02);
}

.trust-grid img {
  max-height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.trust-badge-fallback {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  text-decoration: none;
}

.seo-blocks {
  padding: 2.25rem 0 3.25rem;
}

.article-stack {
  display: flex;
  flex-direction: column;
  gap: 2.1rem;
}

.seo-article {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 1.65rem 1.9rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 48px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.45s var(--ease-out-expo),
    box-shadow 0.35s ease;
}

.seo-article:hover {
  transform: translateY(-5px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 22px 56px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(196, 181, 253, 0.08);
}

.seo-article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent),
    var(--accent-2),
    var(--link)
  );
  background-size: 200% 100%;
  animation: border-shine 6s linear infinite;
  opacity: 0.95;
}

.seo-article h2 {
  font-family: var(--font-serif);
  font-size: 1.32rem;
  margin: 0 0 1rem;
  color: var(--accent-2);
}

.seo-article p {
  margin: 0 0 0.9rem;
  color: var(--text-muted);
}

.seo-article ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-muted);
}

.seo-article li {
  margin-bottom: 0.45rem;
}

.payments {
  padding: 0 0 3rem;
}

.payments h2 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0 0 1rem;
  text-align: center;
}

.pay-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

.pay-tile {
  min-width: 100px;
  height: 52px;
  padding: 0.5rem 1rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.pay-tile img {
  max-height: 28px;
  width: auto;
}

.site-footer {
  position: relative;
  background: linear-gradient(180deg, #040208 0%, #0a0614 100%);
  padding: 2.85rem 0 2.2rem;
  border-top: 1px solid rgba(196, 181, 253, 0.12);
  box-shadow: 0 -24px 60px rgba(0, 0, 0, 0.35);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 40% at 50% 0%,
    rgba(255, 77, 140, 0.06),
    transparent 70%
  );
  pointer-events: none;
}

.footer-disclaimer {
  position: relative;
  z-index: 1;
  font-size: 0.76rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 1.55rem;
  max-width: 920px;
}

.footer-links-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.3rem;
  margin-bottom: 1.55rem;
  align-items: center;
  justify-content: flex-start;
}

.footer-links-row a.footer-external-logo,
.footer-links-row span.footer-external-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.38rem 0.55rem;
  background: #f0f2f5;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-decoration: none;
  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.35s var(--ease-out-expo);
}

.footer-links-row span.footer-external-logo {
  cursor: default;
}

.footer-links-row a.footer-external-logo:hover {
  border-color: rgba(255, 77, 140, 0.35);
  background: #fff;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.12),
    0 0 20px rgba(46, 230, 214, 0.12);
  transform: translateY(-3px);
}

.footer-links-row a.footer-external-logo img {
  display: block;
  max-height: 36px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer-trust img {
  height: 32px;
  width: auto;
  opacity: 0.85;
}

.footer-nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 1rem;
}

.footer-nav a {
  color: var(--text);
  font-size: 0.89rem;
  text-decoration: none;
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--accent);
}

.copyright {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0;
}

.page-main {
  padding: 2.75rem 0 4.25rem;
}

.page-main h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.35rem);
  margin: 0 0 1.3rem;
}

.page-main h2 {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  margin: 2.1rem 0 0.8rem;
  color: var(--accent-2);
}

.page-main p,
.page-main li {
  color: var(--text-muted);
}

.page-main ul {
  padding-left: 1.3rem;
}

.contact-form {
  display: grid;
  gap: 1.1rem;
  max-width: 500px;
  margin-top: 1.6rem;
}

.contact-form label {
  display: grid;
  gap: 0.38rem;
  font-size: 0.89rem;
  color: var(--text);
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  padding: 0.7rem 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-card);
  color: var(--text);
  font-family: var(--font-sans);
  transition:
    border-color 0.18s,
    box-shadow 0.18s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(46, 230, 214, 0.5);
  box-shadow:
    0 0 0 3px rgba(46, 230, 214, 0.12),
    0 0 24px rgba(255, 77, 140, 0.08);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* —— Age gate: distinct layout + copy block —— */
#age-gate.age-gate-overlay {
  background:
    radial-gradient(
      ellipse 75% 60% at 50% 35%,
      rgba(255, 77, 140, 0.16),
      transparent 58%
    ),
    radial-gradient(
      circle at 15% 80%,
      rgba(46, 230, 214, 0.08),
      transparent 45%
    ),
    rgba(2, 1, 8, 0.93);
  backdrop-filter: blur(18px) saturate(1.2);
}

#age-gate .modal-panel.age-gate-panel {
  position: relative;
  width: min(400px, 100%);
  padding: 2rem 1.85rem 1.75rem;
  text-align: left;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(196, 181, 253, 0.22);
  background: linear-gradient(
    165deg,
    rgba(30, 22, 52, 0.98) 0%,
    rgba(12, 9, 24, 0.99) 55%,
    rgba(18, 12, 32, 0.98) 100%
  );
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(255, 77, 140, 0.12),
    0 0 120px rgba(46, 230, 214, 0.06);
}

#age-gate .modal-panel.age-gate-panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 1.25rem;
  right: 1.25rem;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(
    90deg,
    var(--accent-2),
    var(--accent),
    var(--link)
  );
  opacity: 0.95;
  pointer-events: none;
}

#age-gate .age-gate-brand {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 auto 0.5rem;
  width: fit-content;
}

#age-gate .age-gate-brand::before {
  content: "";
  position: absolute;
  width: 128px;
  height: 128px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  border-radius: 50%;
  background: conic-gradient(
    from 210deg,
    rgba(46, 230, 214, 0.55),
    rgba(255, 77, 140, 0.5),
    rgba(196, 181, 253, 0.55),
    rgba(46, 230, 214, 0.55)
  );
  filter: blur(20px);
  opacity: 0.5;
  animation: age-gate-halo-spin 14s linear infinite;
  z-index: 0;
  pointer-events: none;
}

#age-gate .age-gate-logo {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 18px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.45),
    0 0 0 2px rgba(255, 255, 255, 0.08);
}

#age-gate .age-gate-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  z-index: 2;
  min-width: 2.35rem;
  height: 2.35rem;
  padding: 0 0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, var(--danger), #b91c5c);
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 20px rgba(255, 61, 106, 0.45);
}

#age-gate .age-gate-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  opacity: 0.9;
}

#age-gate .modal-panel.age-gate-panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--text);
  text-align: left;
}

#age-gate .age-gate-copy {
  margin: 0 0 1.35rem;
  font-size: 0.92rem;
  line-height: 1.62;
  color: var(--text-muted);
}

#age-gate .age-gate-copy strong {
  color: var(--text);
}

#age-gate .age-gate-actions {
  width: 100%;
  flex-direction: column;
  align-items: stretch;
  gap: 0.65rem;
  margin-top: 0.15rem;
}

#age-gate .age-gate-actions .btn-primary,
#age-gate .age-gate-actions .btn-secondary {
  width: 100%;
  justify-content: center;
}

#age-gate .age-gate-actions .btn-secondary {
  border-style: dashed;
  border-color: rgba(196, 181, 253, 0.35);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(4, 2, 10, 0.92);
  backdrop-filter: blur(12px) saturate(1.1);
}

.modal-overlay:not([hidden]) {
  animation: overlay-in 0.4s ease forwards;
}

.modal-overlay[hidden] {
  display: none !important;
}

.modal-panel {
  width: min(440px, 100%);
  background: linear-gradient(
    165deg,
    rgba(32, 24, 52, 0.95) 0%,
    rgba(16, 12, 28, 0.98) 100%
  );
  border-radius: var(--radius);
  padding: 1.95rem;
  border: 1px solid rgba(196, 181, 253, 0.22);
  box-shadow:
    var(--shadow),
    0 0 80px rgba(255, 77, 140, 0.12);
  text-align: center;
}

.modal-overlay:not([hidden]) .modal-panel {
  animation: modal-in 0.55s var(--ease-out-expo) both;
}

.modal-panel .modal-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 1rem;
  border-radius: 14px;
}

.modal-panel h2 {
  font-family: var(--font-serif);
  font-size: 1.32rem;
  margin: 0 0 0.8rem;
}

.modal-panel p {
  color: var(--text-muted);
  font-size: 0.94rem;
  margin: 0 0 1.3rem;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.btn-secondary {
  padding: 0.78rem 1.3rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 600;
  cursor: pointer;
  transition:
    border-color 0.18s,
    color 0.18s;
}

.btn-secondary:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
}

#cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(22, 18, 38, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 77, 140, 0.25);
  padding: 1.1rem 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
}

#cookie-bar:not([hidden]) {
  animation: cookie-slide 0.55s var(--ease-out-expo) both;
}

#cookie-bar[hidden] {
  display: none !important;
}

#cookie-bar .cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: min(980px, 100%);
}

#cookie-bar img.modal-logo {
  width: 48px;
  height: 48px;
}

#cookie-bar p {
  margin: 0;
  flex: 1;
  min-width: 200px;
  font-size: 0.87rem;
  color: var(--text-muted);
}

#captcha-modal .modal-panel {
  width: min(400px, 100%);
}

.puzzle-wrap {
  text-align: center;
  margin-bottom: 1rem;
}

.puzzle-viewport {
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 170px;
  margin: 0 auto 0.7rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--bg-deep);
}

.puzzle-viewport .puzzle-base {
  position: absolute;
  inset: 0;
  background-image: var(--puzzle-bg-url);
  background-size: 300px 170px;
  background-position: 0 0;
  background-repeat: no-repeat;
}

.puzzle-viewport .puzzle-mask-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.puzzle-piece {
  position: absolute;
  left: 0;
  top: 44px;
  width: 52px;
  height: 82px;
  background-image: var(--puzzle-bg-url);
  background-size: 300px 170px;
  background-repeat: no-repeat;
  border: none;
  border-radius: 0;
  /* same outline as canvas mask (52×82, tab right / socket left) */
  -webkit-clip-path: path(
    "M 10 6 L 42 6 L 42 31 A 10 10 0 0 1 42 51 L 42 76 L 10 76 L 10 51 A 10 10 0 0 1 10 31 Z"
  );
  clip-path: path(
    "M 10 6 L 42 6 L 42 31 A 10 10 0 0 1 42 51 L 42 76 L 10 76 L 10 51 A 10 10 0 0 1 10 31 Z"
  );
  filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.65))
    drop-shadow(0 4px 14px rgba(0, 0, 0, 0.55));
  pointer-events: none;
}

.puzzle-hint {
  font-size: 0.79rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 0.55rem;
  line-height: 1.5;
}

.puzzle-slider {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: block;
  accent-color: var(--accent);
}

.captcha-status {
  font-size: 0.84rem;
  min-height: 1.25rem;
  margin-top: 0.55rem;
  text-align: center;
}

.captcha-status.ok {
  color: var(--accent-2);
}

.captcha-status.err {
  color: var(--danger);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero::before,
  .hero::after,
  .site-header::after,
  .seo-article::before,
  .stars,
  .btn-primary::before {
    animation: none !important;
  }

  .hero h1,
  .hero-lead,
  .hero-features li,
  .hero-features .tick {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .hero h1 {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    color: var(--text) !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .modal-overlay:not([hidden]),
  .modal-overlay:not([hidden]) .modal-panel,
  #cookie-bar:not([hidden]) {
    animation: none !important;
  }

  #age-gate .age-gate-brand::before {
    animation: none !important;
  }

  .offer-card:hover,
  .resp-box:hover,
  .seo-article:hover {
    transform: none !important;
  }
}
