/*
Theme Name: FreeCam Chatter
Theme URI: https://freecamchatter.com
Author: FreeCam Chatter
Description: Dark glass-morphism theme for FreeCam Chatter — random video chat affiliate site.
Version: 1.1.6
License: GNU General Public License v2 or later
Text Domain: freecamchatter
*/

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ============================================================
   CSS CUSTOM PROPERTIES  (matches Lovable design system)
   ============================================================ */
:root {
  --background:        hsl(235, 45%, 14%);
  --foreground:        hsl(0, 0%, 98%);

  --card:              hsl(235, 40%, 18%);
  --card-foreground:   hsl(0, 0%, 98%);

  --primary:           hsl(216, 100%, 50%);
  --primary-foreground:hsl(0, 0%, 100%);

  --secondary:         hsl(340, 100%, 50%);
  --secondary-foreground: hsl(0, 0%, 100%);

  --muted:             hsl(235, 30%, 22%);
  --muted-foreground:  hsl(235, 15%, 65%);

  --border:            hsl(235, 30%, 25%);
  --input:             hsl(235, 30%, 25%);
  --ring:              hsl(216, 100%, 50%);

  --radius:            0.75rem;

  --footer-bg:         hsl(235, 45%, 8%);

  --font-display:      'Space Grotesk', sans-serif;
  --font-body:         'Inter', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--foreground);
}

a { color: var(--primary); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .8; }

img { max-width: 100%; height: auto; display: block; }

ul, ol { list-style: none; }

button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

/* Glass card */
.glass-card {
  background: hsla(235, 40%, 18%, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid hsla(235, 30%, 25%, 0.5);
  border-radius: 1rem;
}

/* Gradient text */
.text-gradient {
  background: linear-gradient(135deg, hsl(216,100%,60%), hsl(340,100%,60%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Brand gradient background */
.bg-gradient-brand {
  background: linear-gradient(135deg, hsl(216,100%,50%), hsl(340,100%,50%));
}

/* Glow effects */
.glow-primary {
  box-shadow: 0 0 20px hsla(216,100%,50%,0.3), 0 0 60px hsla(216,100%,50%,0.1);
}
.glow-primary-strong {
  box-shadow: 0 0 30px hsla(216,100%,50%,0.5), 0 0 80px hsla(216,100%,50%,0.2);
}
.glow-secondary {
  box-shadow: 0 0 20px hsla(340,100%,50%,0.3), 0 0 60px hsla(340,100%,50%,0.1);
}

/* Text helpers */
.text-muted     { color: var(--muted-foreground); }
.text-primary   { color: var(--primary); }
.text-foreground{ color: var(--foreground); }
.font-display   { font-family: var(--font-display); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 20px hsla(340,100%,50%,0.4), 0 0 60px hsla(216,100%,50%,0.2); }
  50%      { box-shadow: 0 0 40px hsla(340,100%,50%,0.6), 0 0 80px hsla(216,100%,50%,0.3); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes float-emoji {
  0%   { transform: translateY(0)   scale(1);   opacity: 1; }
  100% { transform: translateY(-80px) scale(1.3); opacity: 0; }
}
@keyframes bounce-dot {
  0%,80%,100% { transform: scale(0); }
  40%          { transform: scale(1); }
}
@keyframes fade-in-up {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes pulse {
  0%,100% { opacity:1; }
  50%      { opacity:.5; }
}

.animate-pulse-glow    { animation: pulse-glow 2s ease-in-out infinite; }
.animate-spin-slow     { animation: spin-slow 20s linear infinite; }
.animate-float-emoji   { animation: float-emoji .8s ease-out forwards; }
.animate-fade-in-up    { animation: fade-in-up .6s ease forwards; }
.animate-pulse         { animation: pulse 2s cubic-bezier(.4,0,.6,1) infinite; }

/* ============================================================
   LAYOUT
   ============================================================ */
.site-wrapper   { display: flex; flex-direction: column; min-height: 100vh; }
.site-content   { flex: 1; }
.container      { max-width: 48rem; /* 768px / max-w-3xl */ margin: 0 auto; padding: 0 1rem; }
.container-wide { max-width: 72rem; margin: 0 auto; padding: 0 1rem; }

/* Background orbs */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  z-index: 0;
}
.bg-orb--top-left  { top:-200px; left:-200px; width:500px; height:500px; background:hsla(216,100%,50%,0.05); animation:spin-slow 20s linear infinite; }
.bg-orb--bot-right { bottom:-200px; right:-200px; width:500px; height:500px; background:hsla(340,100%,50%,0.05); animation:spin-slow 20s linear infinite reverse; }

/* ============================================================
   AGE BANNER
   ============================================================ */
.age-banner {
  width: 100%;
  background: hsla(235,30%,22%,0.6);
  border-bottom: 1px solid hsla(235,30%,25%,0.5);
  padding: .5rem 1rem;
  text-align: center;
  font-size: .75rem;
  color: var(--muted-foreground);
  position: relative;
  z-index: 10;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: hsla(235,45%,14%,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid hsla(235,30%,25%,0.5);
}

.navbar {
  max-width: 72rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  height: 3.5rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar__logo-icon {
  width: 2rem; height: 2rem;
  border-radius: .75rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.navbar__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .9rem;
  color: var(--foreground);
}
@media(min-width:640px){ .navbar__logo-text { font-size: 1rem; } }

.navbar__nav {
  display: none;
  align-items: center;
  gap: .25rem;
}
@media(min-width:1024px){ .navbar__nav { display:flex; } }

.navbar__link {
  padding: .375rem .75rem;
  border-radius: .5rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color .2s, background .2s;
  text-decoration: none;
}
.navbar__link:hover, .navbar__link.active {
  color: var(--foreground);
  background: hsla(235,30%,22%,0.5);
}
.navbar__link.current-menu-item, .navbar__link[aria-current="page"] {
  background: hsla(216,100%,50%,0.1);
  color: var(--primary);
}

.navbar__divider {
  width: 1px; height: 1.25rem;
  background: hsla(235,30%,25%,0.5);
  margin: 0 .25rem;
}

/* Geo dropdown */
.navbar__geo { position: relative; }
.navbar__geo-btn {
  display: flex; align-items: center; gap: .375rem;
  padding: .375rem .75rem;
  border-radius: .5rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  background: none;
  cursor: pointer;
  transition: color .2s, background .2s;
}
.navbar__geo-btn:hover { color: var(--foreground); background: hsla(235,30%,22%,0.5); }
.navbar__geo-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + .375rem);
  right: 0;
  width: 13rem;
  background: hsla(235,40%,16%,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid hsla(235,30%,25%,0.5);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  overflow: hidden;
  max-height: 60vh;
  overflow-y: auto;
  z-index: 100;
}
.navbar__geo-dropdown.open { display: block; }
.navbar__geo-option {
  display: flex; align-items: center; gap: .625rem;
  padding: .5rem .75rem;
  font-size: .875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color .2s, background .2s;
}
.navbar__geo-option:hover { color: var(--foreground); background: hsla(235,30%,22%,0.5); }

/* Hamburger */
.navbar__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem; height: 2.25rem;
  color: var(--muted-foreground);
  transition: color .2s;
}
.navbar__hamburger:hover { color: var(--foreground); }
@media(min-width:1024px){ .navbar__hamburger { display: none; } }

/* Mobile menu — absolute-positioned drop-down from the sticky header so
   it always escapes layout traps (parent overflow:hidden, sibling
   stacking contexts, the hero iframe's box-shadow, etc). High z-index so
   it wins over the iframe shell and floating mobile CTA bar. */
.site-header { position: sticky; top: 0; z-index: 60; }
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  border-top: 1px solid hsla(235,30%,25%,0.5);
  background: hsla(235,45%,14%,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.mobile-menu.open { display: block !important; }
.mobile-menu__inner { display: flex; flex-direction: column; padding: .75rem; gap: .25rem; }
.mobile-menu__link {
  padding: .75rem 1rem;
  border-radius: .5rem;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  transition: color .2s, background .2s;
  display: block;
}
.mobile-menu__link:hover, .mobile-menu__link.active {
  color: var(--foreground);
  background: hsla(235,30%,22%,0.5);
}
.mobile-menu__link.current-menu-item {
  background: hsla(216,100%,50%,0.1);
  color: var(--primary);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.hero__title-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero__icon {
  width: 3rem; height: 3rem;
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__title {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
}
@media(min-width:640px){ .hero__title { font-size: 2.25rem; } }

.hero__subtitle {
  color: var(--muted-foreground);
  text-align: center;
  font-size: .875rem;
  max-width: 20rem;
}
@media(min-width:640px){ .hero__subtitle { font-size: 1rem; } }

/* Online counter */
.online-counter {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: var(--muted-foreground);
}
.online-counter__dot {
  width: .5rem; height: .5rem;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* Chat filters */
.chat-filters {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.chat-filters__group {
  padding: .75rem;
}
.chat-filters__label {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .75rem;
  color: var(--muted-foreground);
  margin-bottom: .375rem;
}
.chat-filters__select {
  width: 100%;
  background: var(--muted);
  color: var(--foreground);
  font-size: .875rem;
  font-family: var(--font-body);
  border-radius: .5rem;
  padding: .5rem .75rem;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: box-shadow .2s;
}
.chat-filters__select:focus { box-shadow: 0 0 0 2px var(--primary); }
.chat-filters__select option { background: hsl(235,40%,18%); }

/* Consent */
.consent-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  cursor: pointer;
}
.consent-box input[type="checkbox"] {
  width: 1rem; height: 1rem;
  border-radius: .25rem;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}
.consent-box__text {
  font-size: .75rem;
  color: var(--muted-foreground);
  line-height: 1.5;
  text-align: left;
}
.consent-box__text a { color: var(--primary); text-decoration: underline; }

/* Start button */
.start-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--primary-foreground);
  border: none;
  cursor: pointer;
  transition: opacity .3s, transform .15s;
  position: relative;
  overflow: hidden;
}
.start-btn--active {
  animation: pulse-glow 2s ease-in-out infinite;
}
.start-btn--active:hover { opacity: .95; transform: scale(1.03); }
.start-btn--disabled {
  background: var(--muted) !important;
  color: var(--muted-foreground);
  cursor: not-allowed;
  animation: none;
  box-shadow: none;
}

/* Trust badges */
.trust-badges {
  display: flex;
  gap: 1.5rem;
  font-size: .75rem;
  color: var(--muted-foreground);
  flex-wrap: wrap;
  justify-content: center;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: .375rem;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem 2rem;
}
.stats-bar__inner {
  padding: 1.5rem 2rem;
}
.stats-bar__grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  text-align: center;
}
.stats-bar__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
}
@media(min-width:640px){ .stats-bar__value { font-size: 1.875rem; } }
.stats-bar__label {
  font-size: .75rem;
  color: var(--muted-foreground);
  margin-top: .25rem;
}
@media(min-width:640px){ .stats-bar__label { font-size: .875rem; } }

/* ============================================================
   GENERIC SECTION
   ============================================================ */
.section {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  padding: 4rem 1rem;
}
.section__title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}
@media(min-width:640px){ .section__title { font-size: 1.875rem; } }
.section__subtitle {
  color: var(--muted-foreground);
  text-align: center;
  font-size: .875rem;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

/* Card grids */
.grid-3 {
  display: grid;
  gap: 1.5rem;
}
@media(min-width:640px){ .grid-3 { grid-template-columns: repeat(3,1fr); } }

.grid-2 {
  display: grid;
  gap: 1rem;
}
@media(min-width:640px){ .grid-2 { grid-template-columns: repeat(2,1fr); } }

/* Feature card */
.feature-card {
  padding: 1.5rem;
  text-align: center;
}
.feature-card__icon-wrap {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: hsla(216,100%,50%,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto .75rem;
}
.feature-card__step {
  font-size: .75rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: .25rem;
}
.feature-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: .5rem;
}
.feature-card__desc {
  color: var(--muted-foreground);
  font-size: .875rem;
}

/* Icon card (2-col) */
.icon-card {
  padding: 1.25rem;
}
.icon-card__icon {
  color: var(--primary);
  margin-bottom: .5rem;
  width: 1.25rem; height: 1.25rem;
}
.icon-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: .25rem;
}
.icon-card__desc {
  color: var(--muted-foreground);
  font-size: .875rem;
}

/* Trust section icon cards */
.trust-card {
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.trust-card__icon-wrap {
  width: 2.5rem; height: 2.5rem;
  border-radius: .75rem;
  background: hsla(216,100%,50%,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Comparison table */
.comparison-table { overflow: hidden; }
.comparison-table table { width: 100%; border-collapse: collapse; }
.comparison-table th {
  padding: .75rem 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  text-align: left;
  font-size: .875rem;
  border-bottom: 1px solid hsla(235,30%,25%,0.5);
  color: var(--foreground);
}
.comparison-table th:not(:first-child) { text-align: center; }
.comparison-table td {
  padding: .75rem 1rem;
  font-size: .875rem;
  border-bottom: 1px solid hsla(235,30%,25%,0.3);
  color: var(--foreground);
}
.comparison-table td:not(:first-child) { text-align: center; }
.comparison-table tr.highlight { background: hsla(216,100%,50%,0.1); }
.comparison-table tr.highlight td:first-child { color: var(--primary); font-weight: 600; }
.comparison-table .check { color: #4ade80; }
.comparison-table .cross { color: hsla(235,15%,65%,0.5); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { }
.faq__item {
  margin-bottom: .5rem;
  border-radius: 1rem;
}
.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .875rem;
  text-align: left;
  cursor: pointer;
  background: none;
  color: var(--foreground);
  gap: .5rem;
}
.faq__trigger svg {
  flex-shrink: 0;
  transition: transform .3s;
  width: 1rem; height: 1rem;
  color: var(--muted-foreground);
}
.faq__item.open .faq__trigger svg { transform: rotate(180deg); }
.faq__content {
  display: none;
  padding: 0 1.25rem 1rem;
  color: var(--muted-foreground);
  font-size: .875rem;
  line-height: 1.6;
}
.faq__item.open .faq__content { display: block; }

/* ============================================================
   ARTICLE CARDS
   ============================================================ */
.article-card {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  transition: border-color .2s;
}
.article-card:hover { border-color: hsla(216,100%,50%,0.3); }
.article-card__tag {
  display: inline-block;
  font-size: .625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .125rem .5rem;
  border-radius: 999px;
  margin-bottom: .75rem;
}
.tag--guide   { background: hsla(216,100%,50%,0.2); color: var(--primary); }
.tag--safety  { background: hsla(142,71%,45%,0.2);  color: #4ade80; }
.tag--review  { background: hsla(38,92%,50%,0.2);   color: #fbbf24; }
.article-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .875rem;
  margin-bottom: .5rem;
  transition: color .2s;
}
.article-card:hover .article-card__title { color: var(--primary); }
.article-card__excerpt {
  color: var(--muted-foreground);
  font-size: .75rem;
  margin-bottom: .75rem;
  flex: 1;
}
.article-card__more {
  font-size: .75rem;
  font-weight: 500;
  color: var(--primary);
}

/* ============================================================
   SEO TEXT BLOCK
   ============================================================ */
.seo-block {
  padding: 1.5rem;
}
@media(min-width:640px){ .seo-block { padding: 2rem; } }
.seo-block > * + * { margin-top: 1.5rem; }
.seo-block h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: .5rem;
}
@media(min-width:640px){ .seo-block h2 { font-size: 1.875rem; } }
.seo-block h3 {
  font-size: 1.125rem;
}
@media(min-width:640px){ .seo-block h3 { font-size: 1.25rem; } }
.seo-block p {
  color: var(--muted-foreground);
  font-size: .875rem;
  line-height: 1.7;
}
.seo-block ul {
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--muted-foreground);
  font-size: .875rem;
  line-height: 1.7;
}
.seo-block ul li + li { margin-top: .5rem; }
.seo-block strong { color: var(--foreground); }
.seo-block a { color: var(--primary); text-decoration: underline; }

/* ============================================================
   POPULAR PAGES SECTION
   ============================================================ */
.popular-pages {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem 4rem;
}
.popular-pages__grid {
  display: grid;
  gap: .75rem;
}
@media(min-width:640px){ .popular-pages__grid { grid-template-columns: repeat(2,1fr); } }
.popular-page-card {
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  transition: border-color .2s;
}
.popular-page-card:hover { border-color: hsla(216,100%,50%,0.3); }
.popular-page-card__icon {
  width: 2rem; height: 2rem;
  border-radius: .625rem;
  background: hsla(216,100%,50%,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: .875rem;
}
.popular-page-card__text { flex: 1; }
.popular-page-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .875rem;
  color: var(--foreground);
  transition: color .2s;
}
.popular-page-card:hover .popular-page-card__title { color: var(--primary); }
.popular-page-card__desc {
  font-size: .75rem;
  color: var(--muted-foreground);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  padding: 4rem 1rem;
  text-align: center;
}
.cta-section p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: .75rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-foreground);
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  text-decoration: none;
}
.btn:hover { opacity: .9; transform: scale(1.02); color: var(--primary-foreground); text-decoration: none; }
.btn { text-decoration: none !important; }
.btn--lg { font-size: 1.125rem; padding: 1rem 2.5rem; }

/* ============================================================
   TEASER OVERLAY
   ============================================================ */
.teaser-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: hsla(235,45%,14%,0.95);
  backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.teaser-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.teaser-overlay__orb {
  width: 6rem; height: 6rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  animation: pulse-glow 1.5s ease-in-out infinite;
}
.teaser-overlay__msg {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--foreground);
  margin-bottom: 1.5rem;
  min-height: 1.75rem;
}
.teaser-overlay__dots {
  display: flex;
  gap: .375rem;
}
.teaser-overlay__dot {
  width: .625rem; height: .625rem;
  border-radius: 50%;
  background: var(--primary);
  animation: bounce-dot .9s ease-in-out infinite both;
}
.teaser-overlay__dot:nth-child(2) { animation-delay: .16s; }
.teaser-overlay__dot:nth-child(3) { animation-delay: .32s; }
@keyframes bounce-dot {
  0%,80%,100% { transform: scale(0); opacity:0; }
  40%          { transform: scale(1); opacity:1; }
}
.teaser-overlay__emoji {
  position: absolute;
  font-size: 1.5rem;
  animation: float-emoji .8s ease-out forwards;
  pointer-events: none;
}

/* ============================================================
   EXIT INTENT MODAL
   ============================================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.active { display: flex; }
.modal-box {
  width: 100%;
  max-width: 24rem;
  padding: 2rem;
  text-align: center;
  position: relative;
}
.modal-box__close {
  position: absolute;
  top: .75rem; right: .75rem;
  background: none; border: none;
  color: var(--muted-foreground);
  cursor: pointer;
  padding: .25rem;
  border-radius: .375rem;
  transition: color .2s;
}
.modal-box__close:hover { color: var(--foreground); }
.modal-box__emoji { font-size: 3rem; margin-bottom: 1rem; }
.modal-box__title { font-size: 1.375rem; margin-bottom: .75rem; }
.modal-box__text { color: var(--muted-foreground); font-size: .875rem; margin-bottom: 1.5rem; }

/* ============================================================
   AGE GATE MODAL
   ============================================================ */
#age-gate-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--background);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#age-gate-overlay.active { display: flex; }
.age-gate-box {
  width: 100%;
  max-width: 22rem;
  padding: 2rem;
  text-align: center;
}
.age-gate-box__emoji { font-size: 3rem; margin-bottom: 1.5rem; }
.age-gate-box__title { font-size: 1.5rem; margin-bottom: .75rem; }
.age-gate-box__text { color: var(--muted-foreground); font-size: .875rem; margin-bottom: 1.5rem; line-height: 1.6; }
.age-gate-box__buttons { display: flex; gap: .75rem; }
.age-gate-box__btn {
  flex: 1; padding: .75rem 1rem;
  border-radius: .75rem;
  font-size: .875rem; font-weight: 600;
  font-family: var(--font-body);
  border: none; cursor: pointer;
  transition: opacity .2s;
}
.age-gate-box__btn--no { background: var(--muted); color: var(--muted-foreground); }
.age-gate-box__btn--yes { color: var(--primary-foreground); }
.age-gate-box__btn:hover { opacity: .85; }

/* ============================================================
   CONTACT MODAL
   ============================================================ */
.contact-modal { display: none; }
.contact-modal.active { display: flex; }
.contact-form { display: flex; flex-direction: column; gap: .75rem; text-align: left; }
.contact-form label { font-size: .875rem; color: var(--muted-foreground); }
.contact-form input, .contact-form textarea {
  width: 100%;
  background: var(--muted);
  color: var(--foreground);
  border: 1px solid var(--border);
  border-radius: .625rem;
  padding: .625rem .875rem;
  font-family: var(--font-body);
  font-size: .875rem;
  outline: none;
  transition: box-shadow .2s;
}
.contact-form input:focus, .contact-form textarea:focus { box-shadow: 0 0 0 2px var(--primary); }
.contact-form textarea { resize: vertical; min-height: 5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  z-index: 10;
  width: 100%;
  background-color: hsl(235,45%,8%);
  border-top: 1px solid hsla(235,30%,25%,0.5);
  margin-top: 4rem;
}
.site-footer__inner {
  max-width: 64rem;
  margin: 0 auto;
  padding: 3rem 1rem;
}

/* Share */
.footer-share { text-align: center; margin-bottom: 3rem; }
.footer-share h2 { font-size: 1.125rem; margin-bottom: 1rem; }
.footer-share__icons { display: flex; justify-content: center; gap: .75rem; flex-wrap: wrap; }
.social-icon {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: hsla(216,100%,50%,0.1);
  border: 1px solid hsla(235,30%,25%,0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-foreground);
  transition: all .2s;
  text-decoration: none;
}
.social-icon:hover {
  color: var(--primary);
  background: hsla(216,100%,50%,0.2);
  border-color: hsla(216,100%,50%,0.4);
}
.social-icon svg { width: 1rem; height: 1rem; }

/* Divider */
.footer-divider { border: none; border-top: 1px solid hsla(235,30%,25%,0.3); margin: 0 0 2.5rem; }

/* What people search */
.footer-searches { margin-bottom: 3rem; }
.footer-searches h2 { font-size: 1.125rem; text-align: center; margin-bottom: 1.25rem; }
.footer-searches__tags { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; }
.footer-tag {
  padding: .375rem .75rem;
  font-size: .75rem;
  border-radius: 999px;
  border: 1px solid hsla(235,30%,25%,0.5);
  background: hsla(216,100%,50%,0.05);
  color: var(--muted-foreground);
  text-decoration: none;
  transition: all .2s;
}
.footer-tag:hover {
  color: var(--primary);
  border-color: hsla(216,100%,50%,0.4);
  background: hsla(216,100%,50%,0.1);
}

/* Footer links grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
@media(min-width:640px){ .footer-grid { grid-template-columns: repeat(3,1fr); } }
.footer-col h3 { font-size: .875rem; margin-bottom: .75rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a, .footer-col button {
  font-size: .875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
  transition: color .2s;
}
.footer-col a:hover, .footer-col button:hover { color: var(--primary); }

/* Payments */
.footer-payments { display: flex; justify-content: center; align-items: center; gap: .75rem; flex-wrap: wrap; margin-bottom: 2rem; }

/* Affiliate disclosure */
.footer-disclosure {
  color: var(--muted-foreground);
  font-size: .75rem;
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

/* Copyright */
.footer-copyright { text-align: center; }
.footer-copyright__logo {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; margin-bottom: .75rem;
}
.footer-copyright__logo-icon {
  width: 1.75rem; height: 1.75rem;
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
}
.footer-copyright__name { font-family: var(--font-display); font-weight: 700; font-size: .875rem; }
.footer-copyright p { color: var(--muted-foreground); font-size: .75rem; margin-top: .25rem; }
.footer-copyright p.sub { color: hsla(235,15%,65%,0.6); }

/* ============================================================
   PAGE TEMPLATES — Legal / Simple Pages
   ============================================================ */
.page-simple {
  position: relative;
  z-index: 10;
  max-width: 48rem;
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
}
.page-simple h1 { font-size: 2rem; margin-bottom: 1.5rem; }
.page-simple h2 { font-size: 1.375rem; margin-bottom: .75rem; margin-top: 2rem; }
.page-simple p, .page-simple li { color: var(--muted-foreground); font-size: .9375rem; line-height: 1.7; }
.page-simple ul { list-style: disc; padding-left: 1.25rem; }
.page-simple li + li { margin-top: .375rem; }
.page-simple a { color: var(--primary); text-decoration: underline; }

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-grid {
  display: grid;
  gap: 1.5rem;
}
@media(min-width:640px){ .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .blog-grid { grid-template-columns: repeat(3,1fr); } }

.blog-card {
  padding: 1.5rem;
  display: flex; flex-direction: column;
  text-decoration: none;
  transition: border-color .2s;
}
.blog-card:hover { border-color: hsla(216,100%,50%,0.3); }
.blog-card__tag {
  font-size: .625rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  padding: .125rem .5rem; border-radius: 999px;
  display: inline-block; margin-bottom: .75rem;
  width: fit-content;
}
.blog-card__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1rem; color: var(--foreground);
  margin-bottom: .5rem; transition: color .2s;
}
.blog-card:hover .blog-card__title { color: var(--primary); }
.blog-card__excerpt { color: var(--muted-foreground); font-size: .875rem; flex: 1; margin-bottom: 1rem; }
.blog-card__read { color: var(--primary); font-size: .8125rem; font-weight: 500; }

/* ============================================================
   AFFILIATE MODAL (CrakRevenue / Jerkmate CTA)
   ============================================================ */
.affiliate-modal { }
.affiliate-modal__cta {
  display: flex; flex-direction: column; gap: 1rem; align-items: center;
}
.affiliate-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .875rem 2.5rem;
  border-radius: 1rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--primary-foreground);
  text-decoration: none; border: none; cursor: pointer;
  transition: opacity .2s;
  animation: pulse-glow 2s ease-in-out infinite;
}
.affiliate-cta-btn:hover { opacity: .9; color: var(--primary-foreground); }

/* ============================================================
   RESPONSIVE TWEAKS
   ============================================================ */
@media(max-width:640px){
  .hero__title { font-size: 1.5rem; }
  .section { padding: 2.5rem 1rem; }
}

/* ============================================================
   WORDPRESS SPECIFIC
   ============================================================ */
.wp-block-image { margin: 1.5rem 0; }
.aligncenter { text-align: center; }
.alignleft  { float: left; margin-right: 1rem; }
.alignright { float: right; margin-left: 1rem; }

/* Pagination */
.navigation .nav-links { display: flex; gap: .75rem; justify-content: center; padding: 2rem 0; }
.navigation .page-numbers {
  padding: .5rem .875rem; border-radius: .5rem;
  color: var(--muted-foreground); text-decoration: none; font-size: .875rem;
  border: 1px solid var(--border); transition: all .2s;
}
.navigation .page-numbers:hover, .navigation .page-numbers.current {
  background: hsla(216,100%,50%,0.1); color: var(--primary); border-color: hsla(216,100%,50%,0.4);
}

/* Search form */
.search-form { display: flex; gap: .5rem; }
.search-form .search-field {
  flex: 1; background: var(--muted); color: var(--foreground);
  border: 1px solid var(--border); border-radius: .625rem;
  padding: .625rem .875rem; font-family: var(--font-body); font-size: .875rem;
  outline: none;
}
.search-form .search-submit {
  padding: .625rem 1.25rem;
  border-radius: .625rem; font-weight: 600; font-size: .875rem;
  color: var(--primary-foreground); border: none; cursor: pointer;
}

/* ============================================================
   GLOBAL BUTTON LINK FIX - no underline on any button anywhere
   ============================================================ */
a.btn,
a.btn:link,
a.btn:visited,
a.btn:hover,
a.btn:focus,
a.btn:active,
.btn,
[class*="btn"] {
  text-decoration: none !important;
}

/* ============================================================
   KEYWORD PAGE & POST CONTENT STYLING
   ============================================================ */
.entry-content h3,
.page-content h3,
.seo-block h3,
.page-simple h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--foreground);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.entry-content p,
.page-content p,
.seo-block p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.entry-content ul,
.page-content ul,
.seo-block ul {
  margin: 0.75rem 0 1.25rem 1.5rem;
  padding: 0;
  list-style: disc;
}

.entry-content ol,
.page-content ol,
.seo-block ol {
  margin: 0.75rem 0 1.25rem 1.5rem;
  padding: 0;
  list-style: decimal;
}

.entry-content li,
.page-content li,
.seo-block li {
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.entry-content a,
.page-content a,
.seo-block a {
  color: var(--primary);
  text-decoration: underline;
}

/* ============================================================
   BLOG POST CONTENT HEADINGS
   ============================================================ */
.entry-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--foreground);
  margin: 2rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid hsla(235,30%,25%,0.3);
}

.entry-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--foreground);
  margin: 1.5rem 0 .5rem;
}

.entry-content p {
  color: var(--muted-foreground);
  font-size: .9375rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.entry-content ul,
.entry-content ol {
  margin: .75rem 0 1.25rem 1.5rem;
  color: var(--muted-foreground);
  font-size: .9375rem;
  line-height: 1.8;
}

.entry-content li {
  margin-bottom: .5rem;
}

.entry-content strong {
  color: var(--foreground);
  font-weight: 600;
}

.entry-content a {
  color: var(--primary);
  text-decoration: underline;
}

/* ── Review & Feature Filter Buttons ── */
.review-filter-btn {
  padding: .5rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.7);
  font-size: .8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease;
  font-family: var(--font-display);
}
.review-filter-btn:hover {
  border-color: var(--primary);
  color: #fff;
  background: rgba(108,62,244,.12);
}
.review-filter-btn--active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.review-filter-btn--active:hover {
  background: var(--primary);
  color: #fff;
}

/* ============================================================
   FLOATING MOBILE CTA BAR (footer.php)
   Defensive rules: high specificity + !important on positioning
   to win against any inline / cached / plugin CSS that might
   override .mobile-cta-bar (e.g. LiteSpeed UCSS snapshots).
   ============================================================ */
body div.mobile-cta-bar,
.mobile-cta-bar {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  z-index: 9990;
  padding: 0.625rem 0.875rem;
  padding-bottom: calc(0.625rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, transparent 0%, hsla(235,45%,8%,0.85) 30%, hsla(235,45%,8%,0.96) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  pointer-events: none;
  box-sizing: border-box !important;
}

body div.mobile-cta-bar > a,
.mobile-cta-bar > a,
.mobile-cta-bar a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  padding: 0.875rem 1rem;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, hsl(216,100%,50%), hsl(340,100%,50%));
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.2;
  text-decoration: none !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 4px 20px hsla(216,100%,50%,0.35), 0 0 40px hsla(340,100%,50%,0.18);
  pointer-events: auto;
  transition: opacity 0.2s, transform 0.15s;
  margin: 0 !important;
}

.mobile-cta-bar a svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.mobile-cta-bar a:hover,
.mobile-cta-bar a:focus {
  opacity: 0.95;
  color: #fff !important;
  text-decoration: none !important;
}

.mobile-cta-bar a:active {
  transform: scale(0.98);
}

/* Body padding so the fixed CTA never covers the last bit of content */
body {
  padding-bottom: 5.5rem;
}

/* Hide the floating bar on desktop (>=1024px) - desktop pages have their own CTAs */
@media (min-width: 1024px) {
  body div.mobile-cta-bar,
  .mobile-cta-bar {
    display: none !important;
  }
  body {
    padding-bottom: 0;
  }
}

/* ============================================================
   MOBILE UX REFINEMENTS — Inner pages (review / keyword / single)
   Applied below the 640px breakpoint to give breathing room and
   prevent edge-bleed on small viewports.
   ============================================================ */
@media (max-width: 640px) {
  /* Tighter container side padding on phones */
  .container {
    padding-left: 0.875rem;
    padding-right: 0.875rem;
  }

  /* Hero spacing - less top/bottom on small screens */
  .hero {
    padding: 1.25rem 0.875rem 1rem;
    gap: 1rem;
  }
  .hero__title { font-size: 1.625rem; line-height: 1.15; }
  .hero__subtitle { font-size: 0.875rem; max-width: 100%; padding: 0 0.25rem; }
  .hero__icon { width: 2.5rem; height: 2.5rem; }
  .hero__icon svg { width: 20px; height: 20px; }

  /* Glass-card content blocks: tighter side padding so text doesn't kiss the edges */
  .glass-card.seo-block,
  .container .glass-card {
    padding: 1.25rem 1rem !important;
  }

  /* Review/keyword content - readable line length on small screens */
  .review-content,
  .keyword-content,
  .entry-content {
    font-size: 0.9375rem;
  }
  .review-content h2,
  .keyword-content h2,
  .entry-content h2 {
    font-size: 1.2rem !important;
    margin: 1.75rem 0 0.625rem !important;
  }
  .review-content h3,
  .keyword-content h3,
  .entry-content h3 {
    font-size: 1rem !important;
    margin: 1.25rem 0 0.5rem !important;
  }
  .review-content p,
  .keyword-content p,
  .entry-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 0.875rem;
  }

  /* At-a-glance stats grid - 2 cols on mobile, not auto-fit */
  .rc-glance {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
  }

  /* Section heading sizes on phones */
  .section { padding: 2rem 0.875rem; }
  .section__title { font-size: 1.375rem; }

  /* Comparison table - allow horizontal scroll on phones rather than crushing */
  .review-content .table-wrap,
  .review-content table {
    font-size: 0.8125rem;
  }
  .review-content table th,
  .review-content table td {
    padding: 0.5rem 0.625rem;
  }

  /* Breadcrumb - more visible touch target on mobile */
  .keyword-breadcrumb,
  nav[aria-label="Breadcrumb"] {
    font-size: 0.8125rem;
    padding: 0.5rem 0;
  }

  /* CTA card buttons should be easy to tap */
  .btn--lg {
    font-size: 1rem !important;
    padding: 0.875rem 1.5rem !important;
  }

  /* Trust badges - tighter and centred */
  .trust-badges {
    gap: 0.5rem 1rem;
  }
}

/* Even smaller screens (≤380px): minor tweaks */
@media (max-width: 380px) {
  .hero__title { font-size: 1.4rem; }
  .glass-card.seo-block,
  .container .glass-card {
    padding: 1rem 0.875rem !important;
  }
  .mobile-cta-bar > a,
  .mobile-cta-bar a {
    font-size: 0.875rem;
    padding: 0.75rem 0.875rem;
  }
}
/* ============================================================
   FLOATING MOBILE CTA BAR — SLIM REFINEMENT (v1.0.3)
   Append this block to the very end of style.css.
   It overrides the v1.0.2 sizing without touching positioning.
   ============================================================ */
body div.mobile-cta-bar,
.mobile-cta-bar {
  padding: 0.5rem 0.75rem !important;
  padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0px)) !important;
  background: linear-gradient(180deg, transparent 0%, hsla(235,45%,8%,0.6) 50%, hsla(235,45%,8%,0.92) 100%) !important;
}

body div.mobile-cta-bar > a,
.mobile-cta-bar > a,
.mobile-cta-bar a {
  padding: 0.625rem 1rem !important;
  font-size: 0.875rem !important;
  border-radius: 0.75rem !important;
  box-shadow: 0 2px 14px hsla(216,100%,50%,0.28), 0 0 28px hsla(340,100%,50%,0.12) !important;
}

.mobile-cta-bar a svg {
  width: 16px !important;
  height: 16px !important;
}

/* Reduce body bottom padding to match the slimmer bar */
body {
  padding-bottom: 4.25rem;
}

@media (min-width: 1024px) {
  body {
    padding-bottom: 0;
  }
}

/* Tiny screens — keep proportions correct */
@media (max-width: 380px) {
  body div.mobile-cta-bar > a,
  .mobile-cta-bar > a,
  .mobile-cta-bar a {
    font-size: 0.8125rem !important;
    padding: 0.5625rem 0.875rem !important;
  }
  body {
    padding-bottom: 4rem;
  }
}
/* ============================================================
   v1.0.4 — Horizontal overflow + viewport-pinned CTA fix
   Append this block to the very end of style.css.
   
   Diagnosis: the floating CTA itself isn't too wide. Inner pages
   have horizontal page scroll caused by some content element
   exceeding viewport width — likely a long URL, a wide table, or
   an unbreakable word. When the page scrolls horizontally, the
   floating CTA (which is position:fixed relative to the viewport)
   stays put, but the body slides under it and creates the
   illusion that the CTA is cut off on one side.
   
   Fix: 1) prevent ANY horizontal page scroll, and 2) lock the
   CTA's right edge to the viewport, never the body.
   ============================================================ */

/* Hard-prevent horizontal scroll at the document root */
html,
body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
}

/* Force long words / URLs in content to break instead of overflowing */
.review-content,
.keyword-content,
.entry-content,
.single-post-content,
.seo-block,
.page-simple {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-word;
  word-break: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

/* Wrap any long anchor URLs in content */
.review-content a,
.keyword-content a,
.entry-content a,
.single-post-content a {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* Tables in inner-page content: allow horizontal scroll inside the
   container instead of pushing the page wider */
.review-content table,
.keyword-content table,
.entry-content table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Pre/code blocks: same treatment */
.review-content pre,
.keyword-content pre,
.entry-content pre,
.single-post-content pre {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: pre;
}

/* Glass cards on inner pages: keep them inside the viewport even
   if their padding maths would push them past the edge */
.container .glass-card,
.container > .glass-card {
  max-width: 100%;
  box-sizing: border-box;
}

/* Floating CTA: pin width to viewport, not body. This guarantees
   the bar can NEVER appear cut off even if some other element
   manages to expand the body width. */
body div.mobile-cta-bar,
.mobile-cta-bar {
  width: 100vw !important;
  max-width: 100vw !important;
  left: 0 !important;
  right: auto !important;
}

/* The button inside the bar: account for the wrapper's padding */
body div.mobile-cta-bar > a,
.mobile-cta-bar > a,
.mobile-cta-bar a {
  width: calc(100vw - 1.5rem) !important;
  max-width: calc(100vw - 1.5rem) !important;
}
/* ============================================================
   v1.0.5 — Inner-page horizontal overflow lockdown
   Append at the very end of style.css.
   
   Problem: On inner pages (review/keyword/single), users could
   swipe the page horizontally, indicating something inside
   .container or .glass-card is exceeding viewport width. The
   floating CTA (position:fixed) appeared to overlap because it's
   pinned to the viewport while the body scrolls under it.
   
   Fix strategy: lock every wrapper to its parent's width and
   force ALL descendants to wrap or scroll internally.
   ============================================================ */

/* Override the v1.0.4 100vw rule — 100vw includes scrollbar gutter
   on some Android browsers and can itself cause overflow. Use 100%
   with proper parent containment instead. */
body div.mobile-cta-bar,
.mobile-cta-bar {
  width: 100% !important;
  max-width: 100% !important;
  left: 0 !important;
  right: 0 !important;
}

body div.mobile-cta-bar > a,
.mobile-cta-bar > a,
.mobile-cta-bar a {
  width: 100% !important;
  max-width: 100% !important;
}

/* Lock the entire document tree to viewport width */
html {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100%;
}

body {
  overflow-x: hidden !important;
  max-width: 100% !important;
  width: 100%;
  position: relative;
}

.site-wrapper,
.site-content {
  max-width: 100%;
  overflow-x: hidden;
}

/* .container has inline max-width:52rem on inner pages — that's
   fine, but we need to ensure the container itself never exceeds
   its parent on small screens */
.container {
  max-width: 100% !important;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* On larger screens, restore the wider container max-width */
@media (min-width: 832px) {
  .container {
    max-width: 52rem !important;
  }
}

/* Glass cards inside containers: never wider than the container */
.container .glass-card,
.glass-card {
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Allow vertical content (like dropdowns) to overflow normally
   on glass cards that need it */
.faq__item.glass-card,
.faq__item {
  overflow: visible;
}

/* Force ALL content inside review/keyword/post bodies to wrap */
.review-content,
.keyword-content,
.entry-content,
.single-post-content,
.seo-block,
.page-simple {
  max-width: 100% !important;
  overflow-wrap: break-word !important;
  word-wrap: break-word !important;
  word-break: break-word !important;
  -webkit-hyphens: auto;
  hyphens: auto;
}

/* Direct descendants — paragraphs, headings, divs */
.review-content > *,
.keyword-content > *,
.entry-content > *,
.single-post-content > *,
.seo-block > * {
  max-width: 100%;
  box-sizing: border-box;
}

/* Anchor URLs that won't break naturally */
.review-content a,
.keyword-content a,
.entry-content a,
.single-post-content a,
.seo-block a {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* Tables: scroll internally, don't push the page wider */
.review-content table,
.keyword-content table,
.entry-content table,
.single-post-content table,
.seo-block table {
  width: 100% !important;
  max-width: 100% !important;
  display: table !important;
  table-layout: auto !important;
  border-collapse: collapse;
  font-size: 0.8125rem !important;
  white-space: normal !important;
  overflow: visible !important;
}

/* Tighter cell padding so wide tables fit without scrolling */
.review-content table th,
.review-content table td,
.keyword-content table th,
.keyword-content table td,
.entry-content table th,
.entry-content table td,
.single-post-content table th,
.single-post-content table td,
.seo-block table th,
.seo-block table td {
  padding: 0.5rem 0.4rem !important;
  word-break: normal;
  font-size: 0.8125rem;
}

/* On phones (≤768px), allow horizontal scroll instead of cramming */
@media (max-width: 768px) {
  .review-content table,
  .keyword-content table,
  .entry-content table,
  .single-post-content table,
  .seo-block table {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap !important;
    font-size: 0.8125rem !important;
  }
}

/* Pre/code blocks */
.review-content pre,
.keyword-content pre,
.entry-content pre,
.single-post-content pre,
.seo-block pre {
  max-width: 100%;
  overflow-x: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* Images */
.review-content img,
.keyword-content img,
.entry-content img,
.single-post-content img,
.seo-block img {
  max-width: 100% !important;
  height: auto;
}

/* iframes (e.g. YouTube embeds) */
.review-content iframe,
.keyword-content iframe,
.entry-content iframe,
.single-post-content iframe {
  max-width: 100%;
}

/* The at-a-glance grid sometimes pushes wider on tiny screens */
.rc-glance {
  max-width: 100%;
  box-sizing: border-box;
}

/* Defend against any element using inline width:Xpx that exceeds viewport */
@media (max-width: 640px) {
  .container * {
    max-width: 100% !important;
  }
  
  /* Exception: anything that needs to be wider (like the floating CTA itself
     and decorative bg-orbs) */
  .mobile-cta-bar,
  .bg-orb,
  .teaser-overlay {
    max-width: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   MEET REAL PEOPLE — single hero mockup  (updated 2026-04-30)
═══════════════════════════════════════════════════════════════ */
.meet-people__hero {
  margin: 2.5rem auto 0;
  display: flex;
  justify-content: center;
  contain: layout paint;
}
.meet-people__hero-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}
.meet-people__hero-img {
  width: 100%;
  max-width: 180px;
  height: auto;
  display: block;
  border-radius: 1.75rem;
  filter: drop-shadow(0 25px 50px hsla(270, 80%, 30%, 0.45));
  aspect-ratio: 280 / 572;
  transition: transform .35s ease;
}
.meet-people__hero-link:hover .meet-people__hero-img,
.meet-people__hero-img:hover {
  transform: translateY(-6px) scale(1.02);
}
.meet-people__hero-cta {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6C3EF4, #ff6eb4);
  color: #fff;
  padding: .65rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .875rem;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(108, 62, 244, 0.4);
  transition: transform .35s ease, box-shadow .35s ease;
  pointer-events: none;
}
.meet-people__hero-link:hover .meet-people__hero-cta {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 110, 180, 0.5);
}
@media (min-width: 640px) {
  .meet-people__hero-img { max-width: 200px; }
}
@media (min-width: 1024px) {
  .meet-people__hero-img { max-width: 220px; }
  .meet-people__hero-cta { font-size: 1rem; padding: .75rem 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════════
   CTA-TO-SEO TRANSITION MOCKUP  (added 2026-04-30)
═══════════════════════════════════════════════════════════════ */
.cta-mockup {
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.cta-mockup__wrap {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  contain: layout paint;
}
.cta-mockup__link {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}
.cta-mockup__img {
  width: 100%;
  max-width: 170px;
  height: auto;
  display: block;
  border-radius: 1.75rem;
  filter: drop-shadow(0 25px 50px hsla(320, 70%, 35%, 0.4));
  aspect-ratio: 280 / 572;
  transition: transform .35s ease;
}
.cta-mockup__link:hover .cta-mockup__img,
.cta-mockup__img:hover {
  transform: translateY(-6px) scale(1.02);
}
@media (min-width: 640px) {
  .cta-mockup__img { max-width: 190px; }
}
@media (min-width: 1024px) {
  .cta-mockup__img { max-width: 200px; }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE STYLES — baked in from Customizer (added 2026-04-30)
   Originally lived in Appearance → Customize → Additional CSS.
   Moved to theme stylesheet for permanence so it survives any
   Customizer reset or theme reinstall.
═══════════════════════════════════════════════════════════════ */
.fcc-contact { color: #e8e6ff; max-width: 820px; margin: 0 auto; padding: 1rem 0 3rem; }
.fcc-contact * { box-sizing: border-box; }
.fcc-contact__intro { font-size: 1.05rem; line-height: 1.75; color: rgba(232,230,255,0.82); margin: 0 0 2.5rem; }
.fcc-contact__section-title { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: #fff; margin: 3rem 0 1.5rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(108,62,244,0.25); }

/* FAQ accordion cards */
.fcc-contact__faqs { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.fcc-contact__faq {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(108,62,244,0.18);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.fcc-contact__faq:hover { border-color: rgba(255,110,180,0.35); transform: translateY(-2px); box-shadow: 0 10px 30px -10px rgba(108,62,244,0.3); }
.fcc-contact__faq[open] { border-color: rgba(255,110,180,0.4); }

.fcc-contact__faq summary {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.fcc-contact__faq summary::-webkit-details-marker { display: none; }
.fcc-contact__faq summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: #ff6eb4;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.fcc-contact__faq[open] summary::after { transform: rotate(45deg); }

.fcc-contact__faq p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(232,230,255,0.78);
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(108,62,244,0.15);
}
.fcc-contact__faq a { color: #ff6eb4; text-decoration: none; border-bottom: 1px solid rgba(255,110,180,0.3); }
.fcc-contact__faq a:hover { border-color: #ff6eb4; }

/* WPForms wrapper */
.fcc-contact__form-wrap {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(108,62,244,0.18);
  border-radius: 14px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* WPForms field labels */
.fcc-contact__form-wrap .wpforms-field-label,
.fcc-contact__form-wrap label {
  color: #e8e6ff !important;
  font-weight: 500 !important;
  font-size: 0.95rem !important;
  margin-bottom: 0.5rem !important;
}
.fcc-contact__form-wrap .wpforms-field-sublabel { color: rgba(232,230,255,0.55) !important; font-size: 0.82rem !important; }

/* WPForms inputs */
.fcc-contact__form-wrap input[type="text"],
.fcc-contact__form-wrap input[type="email"],
.fcc-contact__form-wrap input[type="url"],
.fcc-contact__form-wrap input[type="tel"],
.fcc-contact__form-wrap input[type="number"],
.fcc-contact__form-wrap textarea,
.fcc-contact__form-wrap select {
  background: rgba(13,0,32,0.6) !important;
  border: 1px solid rgba(108,62,244,0.3) !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 0.75rem 1rem !important;
  font-size: 1rem !important;
  width: 100% !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}
.fcc-contact__form-wrap input:focus,
.fcc-contact__form-wrap textarea:focus,
.fcc-contact__form-wrap select:focus {
  border-color: rgba(255,110,180,0.6) !important;
  box-shadow: 0 0 0 3px rgba(255,110,180,0.15) !important;
  outline: none !important;
}
.fcc-contact__form-wrap textarea { min-height: 140px !important; resize: vertical !important; }
.fcc-contact__form-wrap input::placeholder,
.fcc-contact__form-wrap textarea::placeholder { color: rgba(232,230,255,0.4) !important; }

/* WPForms submit button */
.fcc-contact__form-wrap button[type="submit"].wpforms-submit,
.fcc-contact__form-wrap .wpforms-submit {
  background: linear-gradient(135deg, #6C3EF4 0%, #ff6eb4 100%) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
  padding: 0.9rem 2rem !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease !important;
  box-shadow: 0 8px 24px -8px rgba(108,62,244,0.5) !important;
}
.fcc-contact__form-wrap button[type="submit"].wpforms-submit:hover,
.fcc-contact__form-wrap .wpforms-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 12px 32px -8px rgba(255,110,180,0.5) !important;
}

/* WPForms error messages */
.fcc-contact__form-wrap .wpforms-error,
.fcc-contact__form-wrap label.wpforms-error { color: #fca5a5 !important; font-size: 0.85rem !important; margin-top: 0.35rem !important; }
.fcc-contact__form-wrap input.wpforms-error,
.fcc-contact__form-wrap textarea.wpforms-error { border-color: rgba(239,68,68,0.5) !important; }

/* WPForms confirmation message (after successful send) */
.fcc-contact__form-wrap .wpforms-confirmation-container,
.fcc-contact__form-wrap .wpforms-confirmation-container-full {
  background: rgba(34,197,94,0.08) !important;
  border: 1px solid rgba(34,197,94,0.35) !important;
  color: #86efac !important;
  padding: 1.25rem !important;
  border-radius: 12px !important;
}

@media (max-width: 640px) {
  .fcc-contact__faq { padding: 1rem 1.25rem; }
  .fcc-contact__form-wrap { padding: 1.5rem; }
}


/* ═══════════════════════════════════════════════════════════════
   HOMEPAGE REVIEW CARDS — neon tier styling (added 2026-05-10)
   Matches the visual language of the All Reviews page:
   - Premium tier (gold neon top border) — money-makers
   - Free tier   (green neon top border) — free random chat
   - Guide tier  (purple neon top border) — articles
═══════════════════════════════════════════════════════════════ */
.review-cards {
  gap: 1.25rem;
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.5rem 1.25rem;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Top neon accent bar (4px) — color set per tier below */
.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 14px 14px 0 0;
  z-index: 2;
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-card__tag {
  display: inline-block;
  align-self: flex-start;
  padding: .25rem .65rem;
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .85rem;
}

.review-card__title {
  margin: 0 0 .5rem;
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.review-card__desc {
  margin: 0 0 1rem;
  font-size: .9rem;
  line-height: 1.55;
  color: rgba(232, 230, 255, 0.75);
  flex-grow: 1;
}

.review-card__cta {
  font-size: .8125rem;
  font-weight: 600;
  margin-top: auto;
}

/* ── PREMIUM tier (gold neon) ───────────────────────────────── */
.review-card--premium::before {
  background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.7);
}
.review-card--premium {
  border-color: rgba(245, 158, 11, 0.18);
}
.review-card--premium:hover {
  border-color: rgba(245, 158, 11, 0.55);
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.18);
}
.review-card__tag--premium {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.35);
}
.review-card--premium .review-card__cta {
  color: #fbbf24;
}

/* ── FREE tier (green neon) ─────────────────────────────────── */
.review-card--free::before {
  background: linear-gradient(90deg, #10b981, #34d399, #10b981);
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.7);
}
.review-card--free {
  border-color: rgba(16, 185, 129, 0.18);
}
.review-card--free:hover {
  border-color: rgba(16, 185, 129, 0.55);
  box-shadow: 0 12px 30px rgba(16, 185, 129, 0.18);
}
.review-card__tag--free {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
}
.review-card--free .review-card__cta {
  color: #34d399;
}

/* ── GUIDE tier (purple/pink neon) ─────────────────────────── */
.review-card--guide::before {
  background: linear-gradient(90deg, #6C3EF4, #ff6eb4, #6C3EF4);
  box-shadow: 0 0 12px rgba(108, 62, 244, 0.7);
}
.review-card--guide {
  border-color: rgba(108, 62, 244, 0.18);
}
.review-card--guide:hover {
  border-color: rgba(255, 110, 180, 0.5);
  box-shadow: 0 12px 30px rgba(108, 62, 244, 0.22);
}
.review-card__tag--guide {
  background: rgba(108, 62, 244, 0.15);
  color: #a78bfa;
  border: 1px solid rgba(108, 62, 244, 0.35);
}
.review-card--guide .review-card__cta {
  color: #a78bfa;
}

/* ═══════════════════════════════════════════════════════════════
   TOP PICKS DROPDOWN — brand gradient + gold neon border
   (added 2026-05-11, hardened with !important to beat global resets)
═══════════════════════════════════════════════════════════════ */
.top-picks-dropdown {
  position: relative;
  display: inline-block;
  margin-top: 0.5rem;
  z-index: 100;
}

/* Highest-specificity selector to beat any other button rules */
.top-picks-dropdown .top-picks-dropdown__btn,
button.top-picks-dropdown__btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 2rem !important;
  background: linear-gradient(135deg, hsl(216, 100%, 50%), hsl(340, 100%, 50%)) !important;
  color: #ffffff !important;
  border: 2px solid #fbbf24 !important;
  border-radius: 0.875rem !important;
  font-family: var(--font-display, 'Space Grotesk', sans-serif) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-decoration: none !important;
  box-shadow:
    0 0 24px rgba(251, 191, 36, 0.55),
    0 0 50px rgba(245, 158, 11, 0.22) !important;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  line-height: 1.2;
}

.top-picks-dropdown .top-picks-dropdown__btn:hover,
button.top-picks-dropdown__btn:hover,
.top-picks-dropdown .top-picks-dropdown__btn:focus-visible,
button.top-picks-dropdown__btn:focus-visible {
  transform: translateY(-2px);
  border-color: #fcd34d !important;
  box-shadow:
    0 0 36px rgba(251, 191, 36, 0.85),
    0 0 70px rgba(245, 158, 11, 0.35) !important;
  outline: none;
}

.top-picks-dropdown .top-picks-dropdown__btn:active,
button.top-picks-dropdown__btn:active {
  transform: translateY(0);
}

/* Ensure the inner label text inherits white, even if a parent .btn rule fights us */
.top-picks-dropdown__btn .top-picks-dropdown__label {
  color: #ffffff !important;
}

.top-picks-dropdown__chevron {
  transition: transform 0.25s ease;
  flex-shrink: 0;
  color: #ffffff !important;
}

.top-picks-dropdown.is-open .top-picks-dropdown__chevron {
  transform: rotate(180deg);
}

.top-picks-dropdown__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 320px;
  max-width: 92vw;
  margin: 0;
  padding: 0.5rem;
  list-style: none;
  background: #0d0020;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(251, 191, 36, 0.45);
  border-radius: 0.875rem;
  box-shadow:
    0 0 30px rgba(251, 191, 36, 0.25),
    0 18px 40px rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  z-index: 1000;
  text-align: left;
}

.top-picks-dropdown.is-open .top-picks-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s;
}

.top-picks-dropdown__menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-picks-dropdown__item {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none !important;
  color: #ffffff !important;
  transition: background 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.top-picks-dropdown__item:hover,
.top-picks-dropdown__item:focus-visible {
  background: rgba(251, 191, 36, 0.1);
  outline: none;
}

.top-picks-dropdown__item-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.top-picks-dropdown__item-name {
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff !important;
}

.top-picks-dropdown__item-tag {
  font-size: 0.75rem;
  color: rgba(251, 191, 36, 0.85) !important;
  letter-spacing: 0.02em;
}

.top-picks-dropdown__item-arrow {
  color: #fbbf24 !important;
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.top-picks-dropdown__item:hover .top-picks-dropdown__item-arrow {
  transform: translateX(3px);
}

@media (max-width: 480px) {
  .top-picks-dropdown .top-picks-dropdown__btn,
  button.top-picks-dropdown__btn {
    padding: 0.9rem 1.5rem !important;
    font-size: 0.9rem !important;
  }
  .top-picks-dropdown__menu {
    min-width: 280px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FAQ — native <details> styling (added 2026-05-11)
   Replaces the JS-driven accordion; works on every device.
═══════════════════════════════════════════════════════════════ */
.faq--native .faq__item--native {
  margin-bottom: 0.5rem;
  border-radius: 1rem;
  overflow: hidden;
}

.faq--native .faq__trigger--native {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: var(--font-display, 'Space Grotesk', sans-serif);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--foreground, #fff);
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.05);
}

.faq--native .faq__trigger--native::-webkit-details-marker {
  display: none;
}
.faq--native .faq__trigger--native::marker {
  display: none;
  content: '';
}

.faq--native .faq__chevron {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: var(--muted-foreground, rgba(255,255,255,0.6));
  transition: transform 0.25s ease;
}

.faq--native .faq__item--native[open] .faq__chevron {
  transform: rotate(180deg);
}

.faq--native .faq__content--native {
  padding: 0 1.25rem 1rem;
  color: var(--muted-foreground, rgba(255,255,255,0.7));
  font-size: 0.9rem;
  line-height: 1.65;
}

.faq--native .faq__trigger--native:focus-visible {
  outline: 2px solid rgba(108, 62, 244, 0.6);
  outline-offset: -2px;
}

/* ═══════════════════════════════════════════════════════════════
   REVIEW CARDS — mobile fixes (added 2026-05-11)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  .review-cards {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .review-card {
    display: flex !important;
    flex-direction: column !important;
    padding: 1.25rem !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    background: hsla(235, 40%, 18%, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    text-decoration: none !important;
    position: relative !important;
    isolation: isolate;
  }

  .review-card::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 3px !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 14px 14px 0 0 !important;
    z-index: 2 !important;
    display: block !important;
  }

  .review-card--premium {
    border-color: rgba(245, 158, 11, 0.28) !important;
  }
  .review-card--premium::before {
    background: linear-gradient(90deg, #f59e0b, #fbbf24, #f59e0b) !important;
    box-shadow: 0 0 12px rgba(245, 158, 11, 0.7) !important;
  }

  .review-card--free {
    border-color: rgba(16, 185, 129, 0.28) !important;
  }
  .review-card--free::before {
    background: linear-gradient(90deg, #10b981, #34d399, #10b981) !important;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.7) !important;
  }

  .review-card--guide {
    border-color: rgba(108, 62, 244, 0.28) !important;
  }
  .review-card--guide::before {
    background: linear-gradient(90deg, #6C3EF4, #ff6eb4, #6C3EF4) !important;
    box-shadow: 0 0 12px rgba(108, 62, 244, 0.7) !important;
  }

  .review-card__tag {
    display: inline-block !important;
    align-self: flex-start !important;
    padding: 0.25rem 0.65rem !important;
    border-radius: 6px !important;
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    margin-bottom: 0.75rem !important;
    width: auto !important;
  }

  .review-card__title {
    font-size: 1.0625rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 0 0.4rem !important;
  }

  .review-card__desc {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
    color: rgba(232, 230, 255, 0.75) !important;
    margin: 0 0 0.85rem !important;
  }

  .review-card__cta {
    font-size: 0.8125rem !important;
    font-weight: 600 !important;
    margin-top: auto !important;
  }
}