/* Uk10bestdeals slot guide — neon gold + magenta on deep violet-black */
:root {
  --bg-deep: #0a0614;
  --bg-panel: #120b1e;
  --bg-elevated: #1a1230;
  --glass-fill: rgba(255, 214, 10, 0.1);
  --glass-border: rgba(255, 214, 10, 0.42);
  --text: #f8f6ff;
  --text-muted: #b5a8c9;
  --accent: #ffea00;
  --accent-mid: #ffb703;
  --accent-dim: #ff8500;
  --accent-2: #ff2d6a;
  --accent-glow: rgba(255, 234, 0, 0.55);
  --accent-glow-2: rgba(255, 45, 106, 0.42);
  --card-inner: rgba(22, 12, 40, 0.88);
  --card-text: #f8f6ff;
  --radius-lg: 24px;
  --radius-card: 26px 9px 26px 9px;
  --radius-pill: 999px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --shadow-soft: 0 28px 70px rgba(0, 0, 0, 0.58);
  --shadow-glow: 0 0 0 1px rgba(255, 234, 0, 0.2);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

@keyframes bg-orbit {
  0% {
    opacity: 0.85;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(-2%, 1%) scale(1.06);
  }
}

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

@keyframes pill-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

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

@keyframes modal-pop {
  0% {
    opacity: 0;
    transform: scale(0.94) translateY(8px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes gradient-flow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.58;
  color: var(--text);
  background-color: var(--bg-deep);
  background-image:
    linear-gradient(
      148deg,
      rgba(12, 4, 28, 0.92) 0%,
      rgba(18, 8, 32, 0.86) 42%,
      rgba(6, 2, 14, 0.94) 100%
    ),
    radial-gradient(
      ellipse 78% 48% at 88% -4%,
      rgba(255, 45, 106, 0.22),
      transparent 55%
    ),
    radial-gradient(
      ellipse 62% 46% at 6% 18%,
      rgba(255, 234, 0, 0.14),
      transparent 52%
    ),
    radial-gradient(
      ellipse 45% 38% at 72% 92%,
      rgba(255, 140, 0, 0.1),
      transparent 50%
    ),
    url("../images/bg.png");
  background-size: auto, auto, auto, auto, cover;
  background-position:
    0 0,
    0 0,
    0 0,
    0 0,
    center center;
  background-repeat: no-repeat;
  background-attachment: fixed, fixed, fixed, fixed, fixed;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle 420px at 15% 30%,
      rgba(255, 45, 106, 0.08),
      transparent 70%
    ),
    radial-gradient(
      circle 380px at 85% 70%,
      rgba(255, 234, 0, 0.06),
      transparent 65%
    );
  animation: bg-orbit 14s ease-in-out infinite alternate;
  mix-blend-mode: screen;
}

#main,
.site-footer {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  body {
    background-attachment: scroll, scroll, scroll, scroll, scroll;
  }
}

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

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.site-header {
  padding: 1.1rem 0;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 6, 20, 0.82);
  backdrop-filter: blur(18px) saturate(1.35);
  box-shadow: 0 4px 32px 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(--accent-mid),
    var(--accent-2),
    transparent
  );
  background-size: 200% 100%;
  animation: border-shine 5s linear infinite;
  opacity: 0.95;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
}
.brand:hover {
  text-decoration: none;
  color: var(--accent);
}
.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 14px 6px 14px 6px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.5),
    0 0 0 2px rgba(255, 234, 0, 0.35),
    0 0 28px var(--accent-glow-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 8px 32px rgba(0, 0, 0, 0.45),
    0 0 0 2px var(--accent),
    0 0 36px var(--accent-glow);
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  gap: 1.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-main a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.93rem;
  position: relative;
  transition: color 0.25s ease;
}
.nav-main a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease-out-expo);
}
.nav-main a:hover {
  color: var(--accent);
  text-decoration: none;
}
.nav-main a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  padding: 2.75rem 0 2.1rem;
  text-align: center;
}

.hero-date {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
  background: linear-gradient(
    90deg,
    var(--accent-2),
    var(--accent),
    var(--accent-mid)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-flow 6s ease infinite alternate;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 4.2vw, 2.45rem);
  line-height: 1.18;
  max-width: 940px;
  margin: 0 auto 1.6rem;
  color: var(--text);
  text-wrap: balance;
}

.hero-accent {
  display: inline;
  background: linear-gradient(
    105deg,
    var(--accent) 0%,
    var(--accent-mid) 35%,
    var(--accent-2) 70%,
    var(--accent) 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradient-flow 7s ease-in-out infinite alternate;
  text-shadow: none;
  filter: drop-shadow(0 0 24px rgba(255, 234, 0, 0.25));
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-bottom: 0.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.52rem 1.15rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(
    135deg,
    rgba(255, 45, 106, 0.12),
    rgba(255, 234, 0, 0.08)
  );
  border: 1px solid var(--glass-border);
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 600;
  cursor: default;
  backdrop-filter: blur(12px) saturate(1.2);
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    transform 0.3s var(--ease-out-expo),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  animation: pill-float 4.5s ease-in-out infinite;
}
.pill:nth-child(1) {
  animation-delay: 0s;
}
.pill:nth-child(2) {
  animation-delay: 0.4s;
}
.pill:nth-child(3) {
  animation-delay: 0.8s;
}
.pill:nth-child(4) {
  animation-delay: 1.2s;
}
.pill:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255, 234, 0, 0.65);
  box-shadow:
    0 12px 36px rgba(255, 45, 106, 0.2),
    0 0 24px rgba(255, 234, 0, 0.15);
}

.pill svg {
  width: 16px;
  height: 16px;
  opacity: 0.9;
  color: var(--accent);
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.42rem;
  font-weight: 700;
  margin: 2.25rem 0 1rem;
  color: var(--text);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.section-title::before {
  content: "";
  width: 5px;
  height: 1.35em;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 16px var(--accent-glow);
  flex-shrink: 0;
}

.offers-table-wrap {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.offers-head {
  display: grid;
  grid-template-columns: minmax(140px, 1.1fr) minmax(180px, 1.4fr) minmax(
      100px,
      0.7fr
    ) minmax(72px, 0.5fr) minmax(120px, 0.9fr);
  gap: 0.75rem;
  padding: 0.7rem 1.05rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

@media (max-width: 768px) {
  .offers-head {
    display: none;
  }
}

.offer-row {
  display: grid;
  grid-template-columns: minmax(140px, 1.1fr) minmax(180px, 1.4fr) minmax(
      100px,
      0.7fr
    ) minmax(72px, 0.5fr) minmax(120px, 0.9fr);
  gap: 0.85rem;
  align-items: center;
  padding: 1.05rem 1.15rem;
  background: linear-gradient(
    145deg,
    rgba(255, 45, 106, 0.06),
    var(--glass-fill)
  );
  backdrop-filter: blur(14px) saturate(1.25);
  color: var(--card-text);
  border-radius: var(--radius-card);
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow-soft), var(--shadow-glow);
  position: relative;
  border: 1px solid var(--glass-border);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}

.offer-row::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.07) 50%,
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.offer-row:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 234, 0, 0.55);
  box-shadow:
    var(--shadow-soft),
    0 0 40px var(--accent-glow),
    0 0 60px var(--accent-glow-2);
}

.offer-row:hover::before {
  transform: translateX(100%);
}

@media (max-width: 768px) {
  .offer-row {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.offer-row--stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
}
.offer-row--stacked .btn-cta {
  width: 100%;
  max-width: 220px;
}

.offer-row.featured {
  outline: none;
  background:
    linear-gradient(145deg, rgba(255, 45, 106, 0.12), rgba(255, 234, 0, 0.08))
      padding-box,
    linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-mid))
      border-box;
  border: 2px solid transparent;
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  box-shadow:
    var(--shadow-soft),
    0 0 48px var(--accent-glow),
    0 0 32px var(--accent-glow-2);
}

.sash {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(120deg, var(--accent-dim), var(--accent));
  color: #1a0a02;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 0.38rem 2.6rem 0.38rem 0.8rem;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
  border-radius: var(--radius-lg) 0 0 0;
}

.offer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.65rem 1.1rem;
  background: var(--card-inner);
  border-radius: 16px 6px 16px 6px;
  border: 1px solid rgba(255, 234, 0, 0.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 6px 22px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(255, 45, 106, 0.08);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.offer-row:hover .offer-logo {
  border-color: rgba(255, 234, 0, 0.35);
}
.offer-logo img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.offer-row--stacked .offer-logo {
  width: 100%;
  max-width: 200px;
  min-height: 60px;
  padding: 0.75rem 1.25rem;
}

@media (max-width: 768px) {
  .offer-row:not(.offer-row--stacked) .offer-logo {
    margin-inline: auto;
    max-width: 240px;
    width: 100%;
  }
}

.offer-bonus-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.offer-bonus-text {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--card-text);
}

.stars {
  color: #ffe066;
  font-size: 1.08rem;
  letter-spacing: 0.06em;
  text-shadow: 0 0 14px rgba(255, 224, 102, 0.55);
}

.score {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--accent);
  text-shadow: 0 0 20px var(--accent-glow);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.35rem;
  border-radius: 14px 999px 14px 999px;
  background: linear-gradient(
    155deg,
    var(--accent) 0%,
    var(--accent-mid) 45%,
    var(--accent-dim) 100%
  );
  color: #1a0520 !important;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow:
    0 6px 28px var(--accent-glow),
    0 0 24px var(--accent-glow-2);
  transition:
    transform 0.25s var(--ease-out-expo),
    box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: translateX(-120%) skewX(-12deg);
  pointer-events: none;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 14px 40px var(--accent-glow),
    0 0 36px var(--accent-glow-2);
  text-decoration: none !important;
}

.btn-cta:hover::after {
  animation: shimmer-cta 0.75s ease forwards;
}

.banner-special {
  display: flex;
  align-items: stretch;
  margin: 2.1rem 0;
  border-radius: var(--radius-card);
  background: linear-gradient(
    145deg,
    rgba(80, 20, 60, 0.55),
    rgba(20, 10, 36, 0.96)
  );
  border: 1px solid rgba(255, 234, 0, 0.45);
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.5),
    0 0 56px rgba(255, 45, 106, 0.18),
    0 0 40px rgba(255, 234, 0, 0.08);
  overflow: hidden;
  min-height: 100px;
}

.banner-special__brand {
  flex: 0 0 22%;
  min-width: 132px;
  max-width: 200px;
  background: linear-gradient(180deg, #3a1040 0%, #120818 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 1rem 0.85rem;
}

.banner-special__ribbon {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 0.35rem 1.15rem 0.35rem 0.5rem;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a0a02;
  background: linear-gradient(135deg, #fff566 0%, #ffea00 38%, #ff2d6a 100%);
  clip-path: polygon(
    0 0,
    calc(100% - 8px) 0,
    100% 50%,
    calc(100% - 8px) 100%,
    0 100%
  );
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  line-height: 1.2;
}

.banner-special__brand .offer-logo {
  background: transparent;
  border: none;
  box-shadow: none;
  min-height: 0;
  padding: 0.35rem 0.5rem;
  margin-top: 0.55rem;
}

.banner-special__brand .offer-logo img {
  filter: none;
  max-height: 46px;
}

.banner-special__main {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.3rem;
  background: transparent;
}

.banner-special__content {
  text-align: center;
  width: 100%;
  max-width: 540px;
}

.banner-special__label {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.banner-special__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
}

.banner-special__promo {
  margin: 0;
  font-size: clamp(0.95rem, 2.2vw, 1.12rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.28;
}

.banner-special__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12rem;
}

.banner-special__stars {
  color: #ffd166;
  font-size: 1.02rem;
  letter-spacing: 0.07em;
  line-height: 1;
}

.banner-special__votes {
  font-size: 0.64rem;
  color: var(--text-muted);
  font-weight: 500;
}

.banner-special__score {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.banner-special__cta-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.4rem;
  background: rgba(0, 0, 0, 0.15);
}

.banner-special .banner-special__cta {
  background: linear-gradient(165deg, #fde047 0%, #f59e0b 55%, #ea580c 100%);
  color: #1a0520 !important;
  text-shadow: none;
  box-shadow:
    0 4px 0 #92400e,
    0 12px 32px rgba(251, 191, 36, 0.45);
  border-radius: 12px 999px 12px 999px;
  padding: 0.82rem 1.4rem;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  white-space: nowrap;
  transition:
    transform 0.22s var(--ease-out-expo),
    box-shadow 0.22s ease;
}

.banner-special .banner-special__cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 0 #92400e,
    0 16px 40px rgba(217, 119, 6, 0.5);
}

@media (max-width: 720px) {
  .banner-special {
    flex-direction: column;
    align-items: stretch;
  }

  .banner-special__brand {
    max-width: none;
    flex: none;
    min-height: 104px;
    padding: 1.2rem 1rem 1rem;
  }

  .banner-special__ribbon {
    font-size: 0.5rem;
  }

  .banner-special__main {
    padding: 1rem 1rem 0.5rem;
  }

  .banner-special__row {
    flex-direction: column;
    gap: 0.55rem;
  }

  .banner-special__cta-wrap {
    padding: 0.75rem 1rem 1.2rem;
    background: transparent;
  }

  .banner-special .banner-special__cta {
    width: 100%;
    max-width: 280px;
  }
}

.subsection-grid {
  display: grid;
  gap: 0.9rem;
}

@media (min-width: 600px) {
  .subsection-grid.two {
    grid-template-columns: repeat(2, 1fr);
  }
  .subsection-grid.three {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-offers-legal {
  margin-top: 1.25rem;
  padding: 2.4rem 0 1rem;
  border-top: 1px solid rgba(255, 214, 10, 0.12);
}

.post-offers-legal__title {
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 2.5vw, 1.38rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 1.3rem;
  letter-spacing: -0.01em;
  max-width: 920px;
}

.post-offers-legal__body p {
  font-size: 0.8rem;
  line-height: 1.72;
  color: var(--text-muted);
  max-width: 920px;
  margin: 0 0 1.08rem;
}

.post-offers-legal__body p:last-child {
  margin-bottom: 0;
}

.post-offers-legal__body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-offers-legal__body a:hover {
  color: #fff0a0;
}

.site-footer {
  margin-top: 2.25rem;
  padding: 2.5rem 0 2rem;
  border-top: 1px solid rgba(255, 234, 0, 0.18);
  background: linear-gradient(180deg, #100818 0%, #05030c 100%);
}

.footer-disclaimer {
  font-size: 0.78rem;
  line-height: 1.68;
  color: var(--text-muted);
  max-width: 900px;
  margin-bottom: 1.8rem;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1.8rem;
}

.footer-trust a {
  display: flex;
  align-items: center;
  opacity: 0.86;
  transition:
    opacity 0.25s ease,
    transform 0.25s var(--ease-out-expo);
}
.footer-trust a:hover {
  opacity: 1;
  text-decoration: none;
  transform: translateY(-3px);
}

.footer-trust img {
  max-height: 36px;
  width: auto;
  object-fit: contain;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.74rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.86rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-links a {
  color: var(--text-muted);
}
.footer-links a:hover {
  color: var(--accent);
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 4, 3, 0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.28s,
    visibility 0.28s;
}
.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop.is-open .modal-panel {
  animation: modal-pop 0.45s var(--ease-out-expo) forwards;
}

#ageBackdrop.is-open,
#ageDenied.is-open {
  z-index: 2100;
}
#captchaBackdrop.is-open {
  z-index: 2050;
}

.modal-panel {
  background: linear-gradient(160deg, rgba(30, 18, 48, 0.98), var(--bg-panel));
  border: 1px solid rgba(255, 214, 10, 0.4);
  border-radius: var(--radius-card);
  padding: 1.85rem;
  max-width: 420px;
  width: 100%;
  box-shadow:
    var(--shadow-soft),
    0 0 64px rgba(255, 45, 106, 0.12),
    0 0 48px rgba(255, 214, 10, 0.08);
}

.modal-panel.wide {
  max-width: 420px;
}

.modal-brand {
  text-align: center;
  margin-bottom: 1rem;
}
.modal-brand img {
  width: 64px;
  height: 64px;
  margin-inline: auto;
  border-radius: 18px 8px 18px 8px;
  object-fit: contain;
  box-shadow: 0 0 28px rgba(255, 234, 0, 0.25);
}

.modal-panel h2 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  margin: 0 0 0.8rem;
  text-align: center;
}

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

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1.3rem;
}

.btn-secondary {
  padding: 0.68rem 1.28rem;
  border-radius: 12px 999px 12px 999px;
  background: rgba(255, 45, 106, 0.08);
  border: 1px solid rgba(255, 214, 10, 0.35);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.btn-secondary:hover {
  border-color: var(--accent-2);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 45, 106, 0.2);
}

.captcha-modal .modal-panel {
  max-width: 380px;
}

.captcha-stage {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 1rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(255, 214, 10, 0.45);
  box-shadow: 0 0 32px rgba(255, 45, 106, 0.15);
}

#captchaCanvas {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.captcha-slider-wrap {
  margin-top: 0.8rem;
}

.captcha-slider-wrap label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.38rem;
}

.captcha-slider-wrap input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.captcha-hint {
  font-size: 0.78rem;
  color: var(--accent);
  text-align: center;
  margin-top: 0.55rem;
}

.captcha-error {
  color: #fb923c;
  font-size: 0.84rem;
  text-align: center;
  margin-top: 0.5rem;
  min-height: 1.25rem;
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: linear-gradient(180deg, rgba(26, 14, 42, 0.97), var(--bg-panel));
  border-top: none;
  padding: 1.05rem 1.3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.42s var(--ease-out-expo);
  box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.45);
}

.cookie-bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-2),
    var(--accent),
    var(--accent-mid),
    var(--accent-2)
  );
  background-size: 200% 100%;
  animation: border-shine 4s linear infinite;
}
.cookie-bar.is-visible {
  transform: translateY(0);
}

.cookie-bar img {
  width: 40px;
  height: 40px;
  border-radius: 12px 5px 12px 5px;
  object-fit: contain;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(255, 234, 0, 0.2);
}

.cookie-text {
  flex: 1;
  min-width: 200px;
  max-width: 560px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.cookie-actions {
  display: flex;
  gap: 0.55rem;
}

.page-main {
  padding: 2.1rem 0 3rem;
}
.page-main h1 {
  font-family: var(--font-display);
  font-size: 2.05rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
  letter-spacing: -0.02em;
  color: var(--text);
  position: relative;
  padding-bottom: 0.35rem;
}

.page-main h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(120px, 40%);
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  box-shadow: 0 0 16px var(--accent-glow-2);
}
.page-main .lead {
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.page-main h2 {
  font-family: var(--font-display);
  font-size: 1.22rem;
  margin-top: 2rem;
  margin-bottom: 0.78rem;
}
.page-main p,
.page-main li {
  color: var(--text-muted);
  max-width: 720px;
}
.page-main ul {
  padding-left: 1.25rem;
}

.page-main dl {
  margin: 0 0 1.5rem;
  max-width: 720px;
}
.page-main dt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  margin-top: 1.15rem;
}
.page-main dt:first-child {
  margin-top: 0;
}
.page-main dd {
  margin: 0.4rem 0 0;
  padding: 0;
}

.post-offers-legal__body ul.legal-tight {
  margin: 0 0 1.15rem;
  padding-left: 1.1rem;
  max-width: 920px;
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.post-offers-legal__body ul.legal-tight li {
  margin-bottom: 0.45rem;
}

.contact-form {
  max-width: 480px;
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.38rem;
  color: var(--text);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 14px 8px 14px 8px;
  border: 1px solid rgba(255, 214, 10, 0.35);
  background: linear-gradient(
    180deg,
    rgba(36, 22, 58, 0.6),
    var(--bg-elevated)
  );
  color: var(--text);
  font-family: inherit;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
}
.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image:
    linear-gradient(180deg, rgba(36, 22, 58, 0.6), var(--bg-elevated)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23e8e0f5' d='M1 1.5L6 6l5-4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position:
    0 0,
    right 1rem center;
  background-size:
    100% 100%,
    12px 8px;
  padding-right: 2.5rem;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow:
    0 0 0 3px rgba(255, 45, 106, 0.25),
    0 0 28px rgba(255, 234, 0, 0.12);
  transform: translateY(-1px);
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.inquiry-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.form-row--inline {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}
.form-row--inline input[type="checkbox"] {
  width: auto;
  margin-top: 0.35rem;
  flex-shrink: 0;
}
.form-row--inline label {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 0.84rem;
  color: var(--text-muted);
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 800px;
  margin-top: 1.25rem;
}

.faq-item {
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 214, 10, 0.28);
  background: linear-gradient(
    125deg,
    rgba(255, 45, 106, 0.06),
    var(--glass-fill)
  );
  backdrop-filter: blur(12px) saturate(1.2);
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.faq-item:has(.faq-q[aria-expanded="true"]) {
  border-color: rgba(255, 234, 0, 0.45);
  box-shadow: 0 0 32px rgba(255, 45, 106, 0.12);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  margin: 0;
  border: none;
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-q:hover {
  background: rgba(255, 214, 10, 0.06);
}

.faq-q[aria-expanded="true"] {
  background: rgba(255, 214, 10, 0.08);
}

.faq-icon {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 214, 10, 0.35);
  color: var(--accent);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 1.15rem 1.05rem;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.faq-panel[hidden] {
  display: none;
}

.faq-panel p {
  margin: 0 0 0.65rem;
  max-width: none;
}

.faq-panel p:last-child {
  margin-bottom: 0;
}
