:root {
  --background: #050305;
  --background-soft: #090507;
  --surface: #15151a;
  --surface-light: #1c1c22;
  --surface-red: #250710;
  --red-dark: #570016;
  --red: #b60032;
  --red-bright: #e4003d;
  --yellow: #ffd500;
  --yellow-hover: #ffe55c;
  --foreground: #ffffff;
  --muted-text: #b9b5bd;
  --border-subtle: rgba(255, 255, 255, 0.14);
  --red-border: rgba(228, 0, 61, 0.65);
  --gradient-red-glow: radial-gradient(60% 60% at 50% 40%, rgba(228, 0, 61, 0.55) 0%, rgba(87, 0, 22, 0.45) 40%, rgba(5, 3, 5, 0) 75%);
  --gradient-red-linear: linear-gradient(135deg, #e4003d 0%, #b60032 50%, #570016 100%);
  --gradient-yellow: linear-gradient(180deg, #ffe55c 0%, #ffd500 100%);
  --gradient-surface: linear-gradient(180deg, #1c1c22 0%, #15151a 100%);
  --gradient-hero: radial-gradient(80% 80% at 70% 40%, rgba(228, 0, 61, 0.35) 0%, rgba(87, 0, 22, 0.2) 45%, rgba(5, 3, 5, 0) 80%);
  --shadow-red-glow: 0 0 0 1px rgba(228, 0, 61, 0.4), 0 20px 60px -20px rgba(228, 0, 61, 0.55);
  --shadow-yellow-glow: 0 0 0 1px rgba(255, 213, 0, 0.35), 0 10px 40px -10px rgba(255, 213, 0, 0.5);
  --shadow-card: 0 8px 30px -12px rgba(0, 0, 0, 0.8);
  --content-width: 1400px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-2xl: 28px;
  --radius-3xl: 36px;
  --font-display: "Sora", "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; border-color: var(--border-subtle); }

html {
  color-scheme: dark;
  background-color: var(--background);
}

body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

::selection {
  background: var(--red-bright);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
  border-radius: 4px;
}

a { color: inherit; }

.container-page {
  width: 100%;
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: 1rem;
}

@media (min-width: 768px) {
  .container-page { padding-inline: 2rem; }
}

.surface-card {
  background: var(--gradient-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
}

.red-glow { box-shadow: var(--shadow-red-glow); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--font-display);
  background: var(--gradient-yellow);
  color: #1a0500;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  text-decoration: none;
}

.btn-primary:hover,
.btn-primary-hover:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-yellow-glow);
  filter: brightness(1.05);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-display);
  background: transparent;
  color: #fff;
  border: 1px solid var(--red-border);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
}

.fp-hero-ctas .fp-affiliate-wrap {
  display: inline-flex;
}

.fp-hero-ctas .btn-primary,
.fp-hero-ctas .btn-secondary {
  min-height: 48px;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  line-height: 1.2;
  white-space: nowrap;
}

.hero-bg { background-image: var(--gradient-hero); }

.text-muted-foreground { color: var(--muted-text); }

.font-display { font-family: var(--font-display); }

.fp-logo-mark {
  background-image: var(--gradient-red-linear);
  box-shadow: 0 0 18px -2px rgba(228, 0, 61, 0.7);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  transition: all 0.2s ease;
  background: rgba(0, 0, 0, 0.6);
  padding-block: 0.75rem;
}

.site-header.is-scrolled {
  background: rgba(0, 0, 0, 0.85);
  border-bottom: 1px solid var(--border-subtle);
  padding-block: 0.5rem;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.site-header__title {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.site-header__title span { color: var(--yellow); }

.site-header__badge {
  display: none;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-text);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 0.125rem 0.375rem;
  margin-left: 0.25rem;
}

@media (min-width: 768px) {
  .site-header__badge { display: inline; }
}

.site-header__nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.site-header__nav .menu,
.site-header__nav > ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 1024px) {
  .site-header__nav { display: flex; }
}

.site-header__nav a {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.site-header__nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.site-header__actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .site-header__actions { display: flex; }
}

.site-header__age {
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.5rem;
  color: #fff;
}

.site-header__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .site-header__toggle { display: none; }
}

.site-header__mobile {
  display: none;
  border-top: 1px solid var(--border-subtle);
  background: rgba(0, 0, 0, 0.95);
}

.site-header__mobile.is-open { display: block; }

.site-header__mobile nav .menu,
.site-header__mobile nav > ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header__mobile a {
  display: block;
  padding: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-radius: 6px;
}

.site-header__mobile a:hover { background: rgba(255, 255, 255, 0.05); }

.site-footer {
  /* Layout/spacing handled by fp-footer utility classes in footer.php */
}

.fp-footer-contact__links {
  margin-bottom: 0.25rem;
}

.fp-footer-contact__link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.fp-footer-contact__link:hover {
  color: var(--yellow);
}

.fp-footer-contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--red-dark);
  color: var(--red-bright);
  line-height: 0;
  overflow: hidden;
}

.fp-footer-contact__icon svg {
  display: block;
  flex-shrink: 0;
}

.site-footer h3,
.site-footer h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer a {
  font-size: 0.875rem;
  color: var(--muted-text);
  text-decoration: none;
}

.site-footer nav a:hover,
.site-footer .menu a:hover {
  color: #fff;
}

.fp-footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fp-footer-nav__list a {
  font-size: 0.875rem;
  color: var(--muted-text);
  text-decoration: none;
}

.fp-footer-nav__list a:hover {
  color: #fff;
}

.fp-footer-rg__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.fp-footer-rg__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.fp-footer-rg__badge:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.fp-footer-rg__badge img {
  display: block;
  width: auto;
  height: 2.5rem;
  max-width: 10rem;
}

@media (min-width: 768px) {
  .fp-footer-rg__badge img {
    height: 3rem;
    max-width: 11rem;
  }
}

.fp-footer-rg__text {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted-text);
}

.site-footer__legal p {
  margin: 0;
}

.fp-rg-bar {
  width: 100%;
  background: var(--red-dark);
  border-bottom: 1px solid var(--red-border);
  color: #fff;
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .fp-rg-bar { font-size: 0.875rem; }
}

.fp-rg-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-block: 0.5rem;
  text-align: center;
}

.fp-cookie-banner {
  position: fixed;
  inset-inline: 0.5rem;
  bottom: 0.5rem;
  z-index: 50;
  max-width: 28rem;
  margin-left: auto;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--red-border);
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  padding: 1.25rem;
  box-shadow: var(--shadow-card);
}

.fp-cookie-banner[hidden] { display: none !important; }

.fp-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.fp-cookie-banner .btn-primary,
.fp-cookie-banner .btn-secondary {
  min-height: 0;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

@media (max-width: 640px) {
  .data-table { display: block; }
  .data-table thead { position: absolute; left: -9999px; }
  .data-table tbody, .data-table tr, .data-table td { display: block; width: 100%; }
  .data-table tr {
    background: var(--surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-bottom: 0.75rem;
  }
  .data-table td {
    padding: 0.35rem 0;
    border: none;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    text-align: right;
  }
  .data-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--muted-text);
    text-align: left;
    flex: 1;
  }
}

@keyframes pulse-yellow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 213, 0, 0.7); }
  50% { box-shadow: 0 0 0 24px rgba(255, 213, 0, 0); }
}

.pulse-yellow { animation: pulse-yellow 1.2s ease-out 2; }

.fp-spinner-stage {
  position: relative;
}

.fp-spinner-confetti {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 30;
}

.fp-spinner-card {
  will-change: transform, opacity;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease, filter 0.28s ease;
}

.fp-spinner-root--spinning .fp-spinner-card {
  transition: transform 0.11s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.11s ease, filter 0.11s ease;
}

.fp-spinner-card--winner .fp-spinner-card__shell {
  border-color: var(--yellow);
  box-shadow: 0 0 28px rgba(255, 213, 0, 0.35);
  animation: fp-spinner-win-pop 0.65s cubic-bezier(0.34, 1.4, 0.64, 1);
}

@keyframes fp-spinner-win-pop {
  0% { transform: scale(1); }
  45% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.fp-spinner-card__shell {
  position: relative;
  height: 100%;
  width: 100%;
  background: var(--surface);
}

.fp-spinner-card__shell .fp-spinner-card__image,
.fp-spinner-card__shell img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
  object-position: center;
}

.fp-spinner-result.hidden {
  display: none;
}

@keyframes float-coin {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-10px) rotate(6deg); }
}

.float-coin { animation: float-coin 4s ease-in-out infinite; }

[data-fp-seo-more].is-open {
  grid-template-rows: 1fr !important;
  opacity: 1 !important;
  margin-top: 1.5rem;
}

[data-fp-seo-more] {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.5s ease, opacity 0.5s ease;
  overflow: hidden;
}

.fp-seo__panel {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.fp-seo__content {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-inline: auto;
}

.fp-seo__toc-panel {
  width: 100%;
  max-width: 100%;
}

.fp-seo__toggle {
  padding: 0.625rem 1.25rem;
  border: 1px solid color-mix(in srgb, var(--yellow) 55%, transparent);
  border-radius: 9999px;
  background: transparent;
  color: var(--yellow);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.25;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.fp-seo__toggle:hover {
  background: color-mix(in srgb, var(--yellow) 12%, transparent);
  border-color: var(--yellow);
  color: #fff;
}

.fp-seo__toggle [data-fp-seo-chevron] {
  transition: transform 0.25s ease;
}

.fp-seo__toggle [data-fp-seo-chevron].rotate-180 {
  transform: rotate(180deg);
}

.fp-seo__preview {
  max-width: 100%;
}

.fp-toc--seo-section {
  margin-top: 0;
  border: 0;
  background: transparent;
  padding: 0;
}

.fp-seo__prose {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fp-seo__prose > *,
.fp-seo__prose .wp-block-heading,
.fp-seo__prose p,
.fp-seo__prose ul,
.fp-seo__prose ol,
.fp-seo__prose table,
.fp-seo__prose figure,
.fp-seo__prose img,
.fp-seo__prose iframe,
.fp-seo__prose .wp-block-table {
  max-width: 100%;
}

.fp-seo__prose .wp-block-table,
.fp-seo__prose .table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.fp-seo__prose table {
  table-layout: fixed;
  width: 100%;
}

.fp-seo__more-inner {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.fp-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 1;
}

@media (min-width: 768px) {
  .fp-toc__list {
    columns: 2;
    column-gap: 2rem;
  }
}

.fp-toc__item {
  break-inside: avoid;
  margin-bottom: 0.35rem;
}

.fp-toc__item--level-3 {
  padding-left: 1rem;
}

.fp-toc__link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.2s ease;
}

.fp-toc__link:hover,
.fp-toc__link:focus-visible {
  color: var(--yellow);
  text-decoration: underline;
}

.fp-toc__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border: 0;
  background: none;
  color: var(--yellow);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fp-toc__toggle:hover,
.fp-toc__toggle:focus-visible {
  color: #fff;
}

.fp-toc__toggle svg {
  transition: transform 0.2s ease;
}

.fp-toc__toggle.is-expanded svg {
  transform: rotate(180deg);
}

/* Key-value definition lists (aligned labels + values) */
.fp-kv-list {
  display: grid;
  grid-template-columns: minmax(8.25rem, max-content) minmax(0, 1fr);
  column-gap: 0.75rem;
  row-gap: 0.4rem;
  margin: 0;
  align-items: baseline;
}

.fp-kv-list dt {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.fp-kv-list dd {
  margin: 0;
  min-width: 0;
  word-break: break-word;
}

.fp-kv-list--sm {
  font-size: 0.75rem;
}

.fp-kv-list--md {
  font-size: 0.875rem;
}

.fp-kv-list--strong dt {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

@media (min-width: 640px) {
  .fp-kv-list--2col {
    grid-template-columns: minmax(8.25rem, max-content) minmax(0, 1fr) minmax(8.25rem, max-content) minmax(0, 1fr);
    column-gap: 0.75rem 2rem;
  }
}

.fp-author-box__avatar-wrap {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
}

.fp-author-box__avatar {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  object-fit: cover;
  object-position: center top;
  border: 2px solid color-mix(in srgb, var(--yellow) 35%, transparent);
  background: color-mix(in srgb, var(--surface) 80%, #000);
}

.fp-author-box__avatar--initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-red-linear);
  font-family: var(--font-display, inherit);
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

@media (min-width: 768px) {
  .fp-author-box__avatar-wrap {
    width: 6rem;
    height: 6rem;
  }

  .fp-author-box__avatar--initials {
    font-size: 1.5rem;
  }
}

.fp-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.fp-card-header__meta {
  flex-shrink: 0;
  max-width: 11rem;
  padding-top: 0.125rem;
  text-align: right;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--muted-foreground, rgba(255, 255, 255, 0.55));
}

.fp-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
}

.fp-data-table th,
.fp-data-table td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.site-main h1[id],
.site-main h2[id],
.site-main h3[id],
.site-main h4[id] {
  scroll-margin-top: 5.5rem;
}

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

.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;
}

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

/* --- WordPress / layout resets --- */
.site-main {
  margin: 0;
  padding: 0;
}

.site-main [class*="wp-block-fieryplay-"] {
  margin: 0;
  max-width: none;
}

.site-main :where(p, h1, h2, h3, h4, h5, h6, figure) {
  margin: 0;
}

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

/* --- Data tables (desktop) --- */
.data-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.data-table thead th,
.data-table tbody th,
.data-table tbody td {
  border: none;
}

.data-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* --- SEO / longform prose --- */
.fp-prose,
.fp-seo .fp-prose,
.fp-seo__prose,
#seo-more .fp-prose,
#seo-more .block-editor-block-list__layout {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.625;
}

.fp-prose > * + *,
#seo-more .wp-block-paragraph + .wp-block-paragraph,
#seo-more p + p {
  margin-top: 1rem;
}

.fp-prose h2,
#seo-more h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
}

.fp-prose h3,
#seo-more h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: #fff;
}

.fp-prose ul,
#seo-more ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.75rem;
}

.fp-prose ol,
#seo-more ol {
  list-style: decimal;
  padding-left: 1.25rem;
  margin-top: 0.75rem;
}

.fp-prose li + li,
#seo-more li + li {
  margin-top: 0.35rem;
}

.fp-prose table,
#seo-more table {
  width: 100%;
  margin-top: 1rem;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.fp-prose th,
.fp-prose td,
#seo-more th,
#seo-more td {
  border: 1px solid var(--border-subtle);
  padding: 0.75rem 1rem;
  text-align: left;
}

.fp-prose thead th,
#seo-more thead th {
  background: var(--surface-light);
  color: var(--muted-text);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.fp-prose a,
#seo-more a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* --- Header menu fallback --- */
.menu-fallback {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.menu-fallback a {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.menu-fallback a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.site-header__mobile .menu-fallback {
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
}

.site-header__mobile .menu-fallback a {
  padding: 0.75rem;
}

/* --- Footer nav lists --- */
.site-footer nav ul,
.site-footer .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* --- RG bar link --- */
.fp-rg-bar a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fp-rg-bar__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.4);
  padding: 0.125rem 0.5rem;
  font-weight: 700;
}

/* --- FAQ accordion polish --- */
.fp-faq [data-fp-faq-trigger] {
  background: transparent;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.fp-faq [data-fp-faq-panel] p + p {
  margin-top: 0.75rem;
}

/* --- Spinner result panel --- */
[data-fp-spinner-result]:not(.hidden) {
  display: block;
}

/* --- Logo --- */
.fp-site-logo {
  height: 2.25rem;
  width: auto;
}
