/*
 * Reverb Hub — custom.css
 * This file will not be overwritten by theme updates.
 */

/* ─────────────────────────────────────────
   Brand variables
───────────────────────────────────────── */
:root {
  --rh-brand:        #00e2f8;
  --rh-brand-border: rgba(0, 226, 248, 0.22);
  --rh-border:       rgba(255, 255, 255, 0.07);
  --rh-text-sec:     rgba(255, 255, 255, 0.50);
  --rh-text-muted:   rgba(255, 255, 255, 0.28);
  --rh-green:        #22c55e;
  --rh-green-dim:    rgba(34, 197, 94, 0.07);
  --rh-green-border: rgba(34, 197, 94, 0.28);
}


/* ─────────────────────────────────────────
   Hero — viewport fill + two-column layout
───────────────────────────────────────── */

.hero.height-large,
.hero.height-medium,
.hero.height-small {
  min-height: 100vh !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  display: flex !important;
  align-items: center !important;
}

/* Wide, fluid — uses most of the viewport without touching the edges */
.hero .container {
  display: grid !important;
  grid-template-columns: 55fr 45fr !important;
  align-items: center !important;
  gap: 3rem !important;
  max-width: min(92vw, 1480px) !important;
  width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 5rem !important;
  padding-bottom: 3.5rem !important;
  box-sizing: border-box !important;
}

/* ─────────────────────────────────────────
   Left column
───────────────────────────────────────── */
.hero .content {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  width: 100% !important;
}

.rh-hero__title {
  font-size: clamp(36px, 5vw, 72px) !important;
  font-weight: 800 !important;
  letter-spacing: 0.03em !important;
  line-height: 1.0 !important;
  color: #ffffff !important;
  margin: 0 0 0.65rem 0 !important;
}

.rh-hero__subtitle {
  font-size: clamp(14px, 1.25vw, 17px) !important;
  font-weight: 400 !important;
  color: var(--rh-text-sec) !important;
  line-height: 1.75 !important;
  margin: 0 0 1.4rem 0 !important;
  max-width: 520px !important;
}


/* ─────────────────────────────────────────
   Code block
───────────────────────────────────────── */
.rh-code-block {
  width: 100%;
  background: #0d0d14;
  border: 0.5px solid rgba(0, 226, 248, 0.2);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

.rh-code-block__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.05);
}

.rh-code-block__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.rh-code-block__label {
  font-size: 11px;
  color: var(--rh-text-muted);
  margin-left: 4px;
  letter-spacing: 0.04em;
}

.rh-code-block__body {
  padding: 12px 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.rh-code-block__body code {
  font-family: 'Courier New', Courier, monospace !important;
  font-size: 14.5px !important;
  color: var(--rh-brand) !important;
  white-space: nowrap !important;
  background: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

/* ─────────────────────────────────────────
   CTA buttons — force identical sizing
   Fights Bootstrap's .btn interference
───────────────────────────────────────── */
.rh-hero__ctas {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* shared reset for both buttons */
.rh-btn-primary,
.rh-btn-secondary {
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  height: 52px !important;
  padding: 0 32px !important;
  border-radius: 999px !important;
  font-family: inherit !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s !important;
  vertical-align: middle !important;
  letter-spacing: 0 !important;
}

.rh-btn-primary {
  background: var(--rh-brand) !important;
  color: #060610 !important;
  border: 1.5px solid var(--rh-brand) !important;
  box-shadow: 0 0 18px rgba(0, 226, 248, 0.2) !important;
}

.rh-btn-primary:hover,
.rh-btn-primary:focus {
  background: #00c8de !important;
  border-color: #00c8de !important;
  color: #060610 !important;
  transform: translateY(-1px) !important;
  text-decoration: none !important;
}

.rh-btn-secondary {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.75) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.2) !important;
}

.rh-btn-secondary:hover,
.rh-btn-secondary:focus {
  border-color: rgba(255, 255, 255, 0.45) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  text-decoration: none !important;
}

.rh-btn-primary svg,
.rh-btn-secondary svg {
  flex-shrink: 0 !important;
  width: 15px !important;
  height: 15px !important;
}

/* ─────────────────────────────────────────
   Right column — one contained module
───────────────────────────────────────── */

/* The whole right side is a flex column, everything centred on one axis */
.rh-hero-right {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0 !important;
  width: 100% !important;
}

/* ── Logo ── */
.rh-logo-wrap {
  animation: rh-float 3.8s ease-in-out infinite;
  margin-bottom: 16px !important;
}

.rh-logo {
  width: 106px !important;
  height: 106px !important;
  border-radius: 50% !important;
  border: 0.5px solid var(--rh-brand-border) !important;
  object-fit: contain !important;
  display: block !important;
}

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

/* ── Carousel label ── */
.rh-carousel-label {
  font-size: 11px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.32) !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  margin: 0 0 7px 0 !important;
  text-align: center !important;
  width: 100% !important;
}

.rh-carousel-label__link {
  color: var(--rh-brand) !important;
  text-decoration: none !important;
  opacity: 0.8 !important;
  transition: opacity 0.2s !important;
}

.rh-carousel-label__link:hover {
  opacity: 1 !important;
  text-decoration: none !important;
}

/* ── Carousel wrap — no side padding; arrows go inside the card ── */
.rh-carousel-wrap {
  width: 100% !important;
  position: relative !important;
  padding: 0 !important;
  margin-bottom: 10px !important;
}

.rh-carousel {
  width: 100% !important;
  aspect-ratio: 16 / 9 !important;
  border-radius: 12px !important;
  border: 0.5px solid var(--rh-border) !important;
  background: #111118 !important;
  position: relative !important;
  overflow: hidden !important;
}

.rh-slide {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  opacity: 0 !important;
  transition: opacity 0.45s ease !important;
  pointer-events: none !important;
}

.rh-slide.active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* ── Thumbnail image — fills the entire slide ── */
.rh-slide__thumb {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
}

/* ── Bottom overlay with gradient behind text ── */
.rh-slide__overlay {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  padding: 32px 14px 12px !important;
  background: linear-gradient(to top, rgba(0,0,0,0.80) 0%, transparent 100%) !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 8px !important;
  z-index: 2 !important;
}

.rh-slide__name {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  line-height: 1.2 !important;
  flex: 1 !important;
  min-width: 0 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.rh-slide__runs {
  font-size: 11px !important;
  font-weight: 500 !important;
  color: var(--rh-brand) !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

/* ── Loading spinner shown before first fetch ── */
.rh-slide--loading {
  background: #0f0f1a !important;
}

.rh-slide__spinner {
  width: 28px !important;
  height: 28px !important;
  border: 2px solid rgba(0, 226, 248, 0.15) !important;
  border-top-color: var(--rh-brand) !important;
  border-radius: 50% !important;
  animation: rh-spin 0.8s linear infinite !important;
}

@keyframes rh-spin {
  to { transform: rotate(360deg); }
}

/* ── Arrows — inside the card edges ── */
.rh-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 50% !important;
  background: rgba(0, 0, 0, 0.45) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  border: 0.5px solid rgba(255, 255, 255, 0.14) !important;
  color: #fff !important;
  font-size: 18px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 4 !important;
  transition: background 0.2s !important;
  line-height: 1 !important;
  padding: 0 !important;
}

.rh-arrow:hover { background: rgba(0, 0, 0, 0.65) !important; }
/* Pull arrows inward from card edge */
.rh-arrow--prev { left: 10px !important; }
.rh-arrow--next { right: 10px !important; }

/* ── Dots — tight, same axis as card ── */
.rh-dots {
  display: flex !important;
  gap: 6px !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 12px !important;
}

.rh-dot {
  width: 6px !important;
  height: 6px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.18) !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  transition: background 0.3s, width 0.3s !important;
}

.rh-dot.active {
  background: var(--rh-brand) !important;
  width: 18px !important;
}

/* ── Live badge — connected below dots ── */

/* ─────────────────────────────────────────
   Live badge
───────────────────────────────────────── */
.rh-live {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0.5px solid var(--rh-green-border);
  background: var(--rh-green-dim);
  border-radius: 999px;
  padding: 9px 18px;
}

.rh-live__text {
  font-size: 14px;
  color: #4ade80;
  font-weight: 500;
}

/* Pulse dot */
.rh-pulse {
  position: relative;
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

.rh-pulse__core,
.rh-pulse__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--rh-green);
}

.rh-pulse__core { animation: rh-pulse-core 2s ease-in-out infinite; }
.rh-pulse__ring { animation: rh-pulse-ring 2s ease-in-out infinite; }

@keyframes rh-pulse-core {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.5; }
}

@keyframes rh-pulse-ring {
  0%   { transform: scale(1); opacity: 0.8; }
  70%  { transform: scale(2.2); opacity: 0; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* ─────────────────────────────────────────
   Tablet — side by side, tighter
───────────────────────────────────────── */
@media (max-width: 1024px) and (min-width: 641px) {
  .hero .container {
    max-width: 96vw !important;
    gap: 2rem !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .rh-hero__title {
    font-size: clamp(28px, 4vw, 46px) !important;
  }
}

/* ─────────────────────────────────────────
   Mobile — stacked, left then right
───────────────────────────────────────── */
@media (max-width: 640px) {

  .hero.height-large,
  .hero.height-medium,
  .hero.height-small {
    min-height: 100svh !important;
    align-items: flex-start !important;
  }

  .hero .container {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    padding-left: 1.35rem !important;
    padding-right: 1.35rem !important;
    padding-top: 5.5rem !important;
    padding-bottom: 3rem !important;
  }

  /* Left side — centred text on mobile */
  .hero .content {
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .rh-hero__title {
    font-size: clamp(30px, 9vw, 46px) !important;
  }

  .rh-hero__subtitle {
    font-size: 14.5px !important;
    max-width: 100% !important;
  }

  .rh-code-block {
    width: 100% !important;
  }

  .rh-code-block__body {
    overflow-x: auto !important;
  }

  .rh-code-block__body code {
    font-size: 11.5px !important;
  }

  .rh-hero__ctas {
    justify-content: center !important;
    width: 100% !important;
  }

  /* Right module — full width, centred below left */
  .rh-hero-right {
    width: 100% !important;
    align-items: center !important;
  }

  /* Hide logo on mobile to reduce length */
  .rh-logo-wrap {
    display: none !important;
  }

  /* Carousel full width, arrows stay inside */
  .rh-carousel-wrap {
    padding: 0 !important;
    width: 100% !important;
  }

  .rh-live__text {
    font-size: 12px !important;
  }
}

/* ─────────────────────────────────────────
   Very small screens — iPhone SE etc
───────────────────────────────────────── */
@media (max-width: 380px) {
  .hero .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .rh-btn-primary,
  .rh-btn-secondary {
    height: 42px !important;
    padding: 0 18px !important;
    font-size: 13px !important;
  }

  .rh-code-block__body code {
    font-size: 10.5px !important;
  }
}



/* ─────────────────────────────────────────
   Background — override hero.jpg entirely
───────────────────────────────────────── */

html {
  overflow-x: hidden;
}

body {
  background-color: #080810 !important;
  background-image: none !important;
  overflow-x: hidden;
}

.hero {
  background-color: #080810 !important;
  background-image: none !important;
  position: relative !important;
  overflow: hidden !important;
}

.hero .bg-overlay {
  display: none !important;
}

.hero::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(ellipse 65% 55% at 78% 18%, rgba(0,226,248,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 50% 50% at 18% 85%, rgba(80,40,180,0.10) 0%, transparent 60%),
    linear-gradient(160deg, #0b0b16 0%, #080810 50%, #07070f 100%) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.hero::after {
  content: '' !important;
  position: absolute !important;
  inset: -40px !important;
  background-image: radial-gradient(circle, rgba(0,226,248,0.45) 1px, transparent 1px) !important;
  background-size: 40px 40px !important;
  opacity: 0.22 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  animation: rh-grid-drift 12s linear infinite !important;
}

@keyframes rh-grid-drift {
  0%   { transform: translateY(0); }
  100% { transform: translateY(40px); }
}

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

.rh-glow-wrap {
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  overflow: hidden !important;
}

.rh-glow-cyan {
  position: absolute !important;
  top: -120px !important;
  right: -100px !important;
  width: 600px !important;
  height: 600px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(0,226,248,0.09) 0%, rgba(0,226,248,0.03) 45%, transparent 70%) !important;
  animation: rh-glow-breathe 7s ease-in-out infinite !important;
}

.rh-glow-purple {
  position: absolute !important;
  bottom: -150px !important;
  left: -120px !important;
  width: 500px !important;
  height: 500px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(90,50,200,0.08) 0%, transparent 65%) !important;
}

@keyframes rh-glow-breathe {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.07); }
}


/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */

/* Sticky header wrapper */
header.sticky-top {
  background: transparent !important;
  border-bottom: none !important;
}

.navbar {
  background: rgba(8, 8, 16, 0.75) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06) !important;
  padding-top: 0.6rem !important;
  padding-bottom: 0.6rem !important;
}

/* Brand / logo + name */
.navbar-brand {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 17px !important;
  letter-spacing: 0.01em !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.navbar-brand img {
  height: 34px !important;
  width: 34px !important;
  border-radius: 50% !important;
  border: 0.5px solid rgba(0, 226, 248, 0.25) !important;
  object-fit: contain !important;
}

.navbar-brand:hover {
  color: var(--rh-brand) !important;
}

/* Nav links */
.navbar .nav-link {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  padding: 6px 12px !important;
  border-radius: 6px !important;
  transition: color 0.2s, background 0.2s !important;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.06) !important;
}

/* All outline-primary buttons in navbar (Login, Get Access, Cart) */
.navbar .btn-outline-primary {
  background: transparent !important;
  color: rgba(255, 255, 255, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 6px 18px !important;
  transition: all 0.2s !important;
  line-height: 1.4 !important;
}

.navbar .btn-outline-primary:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  color: #ffffff !important;
}

/* "Get Access" right link — make it stand out with brand colour */
.navbar .navbar-nav:last-child .nav-item:first-child .nav-link,
.navbar .navbar-nav:last-child .nav-item:first-child .btn-outline-primary {
  background: var(--rh-brand) !important;
  color: #07070f !important;
  border-color: var(--rh-brand) !important;
  font-weight: 700 !important;
}

.navbar .navbar-nav:last-child .nav-item:first-child .nav-link:hover,
.navbar .navbar-nav:last-child .nav-item:first-child .btn-outline-primary:hover {
  background: #00c8de !important;
  border-color: #00c8de !important;
  color: #07070f !important;
}

/* Cart icon button */
.navbar .cart .btn {
  background: transparent !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 999px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 6px 12px !important;
}

.navbar .cart .btn:hover {
  background: rgba(255, 255, 255, 0.07) !important;
  color: #fff !important;
}

/* Hamburger toggler */
.navbar-toggler {
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 8px !important;
  padding: 4px 8px !important;
}

.navbar-toggler-icon {
  filter: invert(1) !important;
  opacity: 0.7 !important;
}

/* Mobile nav collapse background */
.navbar-collapse.show,
.navbar-collapse.collapsing {
  background: rgba(8, 8, 16, 0.97) !important;
  border-radius: 10px !important;
  margin-top: 8px !important;
  padding: 12px !important;
  border: 0.5px solid rgba(255, 255, 255, 0.07) !important;
}


/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */

.footer {
  background: #080810 !important;
  border-top: 0.5px solid rgba(0, 226, 248, 0.12) !important;
  position: relative !important;
}

/* Subtle top glow line */
.footer::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 40% !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(0, 226, 248, 0.35), transparent) !important;
  pointer-events: none !important;
}

.footer .container {
  position: relative !important;
  z-index: 1 !important;
}

/* Shop name in footer */
.footer .logo .fs-5 {
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 16px !important;
}

/* Section headings */
.footer h5 {
  color: #ffffff !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  margin-bottom: 1rem !important;
}

/* Footer links */
.footer .nav-link {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  padding: 2px 0 !important;
  transition: color 0.2s !important;
}

.footer .nav-link:hover {
  color: var(--rh-brand) !important;
}

/* Footer logo image */
.footer .logo img {
  border-radius: 50% !important;
  border: 0.5px solid rgba(0, 226, 248, 0.2) !important;
}


/* ─────────────────────────────────────────
   Carousel label
───────────────────────────────────────── */

.rh-carousel-label {
  font-size: 11px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.32) !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  margin: 0 0 7px 0 !important;
  text-align: center !important;
  width: 100% !important;
}

.rh-carousel-label__link {
  color: var(--rh-brand) !important;
  text-decoration: none !important;
  opacity: 0.8 !important;
  transition: opacity 0.2s !important;
}

.rh-carousel-label__link:hover {
  opacity: 1 !important;
  text-decoration: none !important;
}




/* ─────────────────────────────────────────
   Guide hint — below CTA buttons
───────────────────────────────────────── */

.rh-guide-hint {
  margin: 10px 0 0 0 !important;
  font-size: 12.5px !important;
  color: rgba(255, 255, 255, 0.28) !important;
  font-weight: 400 !important;
}

.rh-guide-link {
  color: rgba(255, 255, 255, 0.45) !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(255, 255, 255, 0.2) !important;
  text-underline-offset: 3px !important;
  transition: color 0.2s, text-decoration-color 0.2s !important;
}

.rh-guide-link:hover {
  color: #ffffff !important;
  text-decoration-color: rgba(255, 255, 255, 0.5) !important;
}


/* ─────────────────────────────────────────
   FAQ SECTION
───────────────────────────────────────── */

.rh-faq {
  background: #080810;
  padding: 6rem 0;
  position: relative;
}

/* Top divider line matching the footer style */
.rh-faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,226,248,0.18), transparent);
}

.rh-faq__inner {
  max-width: min(92vw, 860px);
  margin: 0 auto;
}

/* Header */
.rh-faq__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.rh-faq__eyebrow {
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: var(--rh-brand) !important;
  margin: 0 0 0.75rem 0 !important;
  opacity: 0.8;
}

.rh-faq__title {
  font-size: clamp(26px, 3vw, 38px) !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 0.75rem 0 !important;
  line-height: 1.1 !important;
}

.rh-faq__subtitle {
  font-size: 15px !important;
  color: var(--rh-text-sec) !important;
  margin: 0 !important;
}

/* FAQ list */
.rh-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Individual item */
.rh-faq__item {
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
}

.rh-faq__item:first-child {
  border-top: 0.5px solid rgba(255,255,255,0.07);
}

/* Question button */
.rh-faq__question {
  width: 100%;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1.5rem !important;
  padding: 1.35rem 0 !important;
  background: transparent !important;
  border: none !important;
  text-align: left !important;
  cursor: pointer !important;
  font-family: inherit !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.85) !important;
  transition: color 0.2s !important;
}

.rh-faq__question:hover {
  color: #ffffff !important;
}

/* Chevron icon */
.rh-faq__icon {
  flex-shrink: 0;
  color: rgba(255,255,255,0.3);
  transition: transform 0.3s ease, color 0.2s;
}

.rh-faq__icon--open {
  transform: rotate(180deg);
  color: var(--rh-brand) !important;
}

/* Answer */
.rh-faq__answer {
  overflow: hidden;
}

.rh-faq__answer p {
  font-size: 14px !important;
  color: var(--rh-text-sec) !important;
  line-height: 1.75 !important;
  margin: 0 0 1.35rem 0 !important;
  padding-right: 2.5rem !important;
}

/* Alpine transition classes */
.rh-faq__answer--enter {
  transition: opacity 0.25s ease, transform 0.25s ease !important;
}

.rh-faq__answer--hidden {
  opacity: 0 !important;
  transform: translateY(-6px) !important;
}

.rh-faq__answer--visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Links inside answers */
.rh-faq__link {
  color: var(--rh-brand) !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(0,226,248,0.3) !important;
  text-underline-offset: 3px !important;
  transition: text-decoration-color 0.2s !important;
}

.rh-faq__link:hover {
  text-decoration-color: var(--rh-brand) !important;
}

/* Mobile */
@media (max-width: 640px) {
  .rh-faq {
    padding: 4rem 0;
  }

  .rh-faq__question {
    font-size: 14px !important;
    padding: 1.1rem 0 !important;
  }

  .rh-faq__answer p {
    padding-right: 0 !important;
    font-size: 13.5px !important;
  }
}


/* Second FAQ section — visual gap + subtle divider from first */
.rh-faq--second {
  padding-top: 1rem !important;
}

.rh-faq--second::before {
  width: 20% !important;
  opacity: 0.5 !important;
}


/* ─────────────────────────────────────────
   WHY CHOOSE — feature grid + stats
───────────────────────────────────────── */

/* 3-col grid on desktop */
.rh-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1px;
}

/* Individual feature card */
.rh-why__card {
  position: relative;
  background: #0c0c16;
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.2s;
}

.rh-why__card:hover {
  background: #0f0f1c;
}

/* Icon circle */
.rh-why__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(0,226,248,0.08);
  border: 0.5px solid rgba(0,226,248,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rh-brand);
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}

/* Green checkmark badge — top right of card */
.rh-why__check {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  border: 0.5px solid rgba(34,197,94,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
}

.rh-why__card-title {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  padding-right: 1.5rem;
}

.rh-why__card-desc {
  font-size: 13px !important;
  color: var(--rh-text-sec) !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

/* Stats bar */
.rh-why__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #0c0c16;
  border: 0.5px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 1px;
}

.rh-why__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 1.4rem 1rem;
}

.rh-why__stat-number {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--rh-brand);
  line-height: 1;
  letter-spacing: -0.02em;
}

.rh-why__stat-label {
  font-size: 12px;
  color: var(--rh-text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
}

.rh-why__stat-divider {
  width: 0.5px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

/* Tablet — 2 columns */
@media (max-width: 900px) {
  .rh-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile — 1 column */
@media (max-width: 560px) {
  .rh-why__grid {
    grid-template-columns: 1fr;
  }

  .rh-why__stats {
    flex-wrap: wrap;
  }

  .rh-why__stat {
    flex: 1 1 45%;
    border-bottom: 0.5px solid rgba(255,255,255,0.06);
    padding: 1.1rem 0.75rem;
  }

  .rh-why__stat-divider {
    display: none;
  }
}


/* ─────────────────────────────────────────
   REVERB NEWS — homepage blog preview
───────────────────────────────────────── */

.rh-news {
  background: #080810 !important;
  position: relative !important;
}

.rh-news::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,226,248,0.18), transparent);
}

/* Header row — title left, see all right */
.rh-news__header {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  margin-bottom: 2.5rem !important;
  flex-wrap: wrap !important;
}

.rh-news__titles {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.rh-news__title {
  font-size: clamp(24px, 2.5vw, 34px) !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 !important;
  line-height: 1.1 !important;
}

.rh-news__subtitle {
  font-size: 14px !important;
  color: var(--rh-text-sec) !important;
  margin: 0 !important;
}

/* See all link */
.rh-news__see-all {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--rh-brand) !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  opacity: 0.8 !important;
  transition: opacity 0.2s !important;
  padding-bottom: 4px !important;
}

.rh-news__see-all:hover {
  opacity: 1 !important;
  text-decoration: none !important;
}

/* Override sellauth's blog card grid to match our dark theme */
.rh-news .row.products {
  --bs-gutter-x: 1.25rem !important;
  --bs-gutter-y: 1.25rem !important;
}

/* Style the blog post cards to match the site */
.rh-news .blog-post-card,
.rh-news .card {
  background: #0c0c16 !important;
  border: 0.5px solid rgba(255,255,255,0.07) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  transition: border-color 0.2s, transform 0.2s !important;
  height: 100% !important;
}

.rh-news .blog-post-card:hover,
.rh-news .card:hover {
  border-color: rgba(0,226,248,0.18) !important;
  transform: translateY(-2px) !important;
}

.rh-news .card-body {
  padding: 1.25rem !important;
}

.rh-news .card-title,
.rh-news .card-title a {
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
}

.rh-news .card-text,
.rh-news .card-subtitle {
  color: var(--rh-text-sec) !important;
  font-size: 13px !important;
}

.rh-news .card-img-top {
  aspect-ratio: 16/9 !important;
  object-fit: cover !important;
}

/* Empty state */
.rh-news__empty {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 3rem !important;
  color: var(--rh-text-muted) !important;
  text-align: center !important;
  border: 0.5px solid rgba(255,255,255,0.06) !important;
  border-radius: 12px !important;
  background: #0c0c16 !important;
}

.rh-news__empty p {
  font-size: 14px !important;
  margin: 0 !important;
  color: var(--rh-text-muted) !important;
}

/* Mobile */
@media (max-width: 640px) {
  .rh-news__header {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}


/* ─────────────────────────────────────────
   BLOG LISTING PAGE
───────────────────────────────────────── */

/* Page background */
.py-5-nav {
  background: #080810;
}

/* Blog listing title area */
.py-5-nav .section-title h2 {
  font-size: clamp(26px, 3vw, 38px) !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}

.py-5-nav .section-subtitle p {
  color: var(--rh-text-sec) !important;
  font-size: 15px !important;
}

/* Post cards on the listing page */
.py-5-nav .blog-post-card,
.py-5-nav .card {
  background: #0c0c16 !important;
  border: 0.5px solid rgba(255,255,255,0.07) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  transition: border-color 0.2s, transform 0.2s !important;
  height: 100% !important;
}

.py-5-nav .blog-post-card:hover,
.py-5-nav .card:hover {
  border-color: rgba(0,226,248,0.2) !important;
  transform: translateY(-2px) !important;
}

.py-5-nav .card-body {
  padding: 1.25rem !important;
}

.py-5-nav .card-title,
.py-5-nav .card-title a {
  color: #ffffff !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  line-height: 1.35 !important;
}

.py-5-nav .card-title a:hover {
  color: var(--rh-brand) !important;
}

.py-5-nav .card-text,
.py-5-nav .card-subtitle,
.py-5-nav .text-muted {
  color: var(--rh-text-sec) !important;
  font-size: 13px !important;
}

.py-5-nav .card-img-top {
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  width: 100% !important;
}

/* Read more / btn links in cards */
.py-5-nav .btn-primary,
.py-5-nav .btn-outline-primary {
  background: transparent !important;
  color: var(--rh-brand) !important;
  border: 0.5px solid rgba(0,226,248,0.25) !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  padding: 5px 14px !important;
  transition: background 0.2s, color 0.2s !important;
}

.py-5-nav .btn-primary:hover,
.py-5-nav .btn-outline-primary:hover {
  background: rgba(0,226,248,0.08) !important;
  color: var(--rh-brand) !important;
}

/* ─────────────────────────────────────────
   INDIVIDUAL BLOG POST PAGE
───────────────────────────────────────── */

.rh-post {
  background: #080810 !important;
}

/* Back link */
.rh-post__back {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.4) !important;
  text-decoration: none !important;
  margin-bottom: 2.5rem !important;
  transition: color 0.2s !important;
}

.rh-post__back:hover {
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none !important;
}

/* Post header */
.rh-post__header {
  margin-bottom: 1.75rem !important;
}

.rh-post__title {
  font-size: clamp(26px, 3.5vw, 42px) !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.15 !important;
  margin: 0 0 1rem 0 !important;
  text-align: left !important;
}

/* Meta row — date + tag */
.rh-post__meta {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
}

.rh-post__date {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 13px !important;
  color: var(--rh-text-muted) !important;
}

.rh-post__tag {
  display: inline-flex !important;
  align-items: center !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  color: var(--rh-brand) !important;
  background: rgba(0,226,248,0.08) !important;
  border: 0.5px solid rgba(0,226,248,0.2) !important;
  border-radius: 999px !important;
  padding: 3px 10px !important;
  letter-spacing: 0.03em !important;
}

/* Featured image */
.rh-post__image {
  margin-bottom: 1.75rem !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  border: 0.5px solid rgba(255,255,255,0.07) !important;
}

.rh-post__image img {
  width: 100% !important;
  display: block !important;
  border-radius: 0 !important;
}

/* Summary */
.rh-post__summary {
  font-size: 16px !important;
  color: var(--rh-text-sec) !important;
  line-height: 1.7 !important;
  margin-bottom: 1.75rem !important;
  padding-bottom: 1.75rem !important;
  border-bottom: 0.5px solid rgba(255,255,255,0.07) !important;
  font-style: italic !important;
}

/* Main content */
.rh-post__content {
  color: rgba(255,255,255,0.75) !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
}

.rh-post__content h1,
.rh-post__content h2,
.rh-post__content h3,
.rh-post__content h4 {
  color: #ffffff !important;
  font-weight: 600 !important;
  margin-top: 2rem !important;
  margin-bottom: 0.75rem !important;
}

.rh-post__content h2 { font-size: 22px !important; }
.rh-post__content h3 { font-size: 18px !important; }

.rh-post__content p {
  margin-bottom: 1.25rem !important;
  color: rgba(255,255,255,0.7) !important;
}

.rh-post__content a {
  color: var(--rh-brand) !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(0,226,248,0.3) !important;
  text-underline-offset: 3px !important;
}

.rh-post__content a:hover {
  text-decoration-color: var(--rh-brand) !important;
}

.rh-post__content p.rh-post-cta-row {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  margin: 1.75rem 0 !important;
}

.rh-post__content .rh-post-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-height: 46px !important;
  padding: 0 22px !important;
  border: 1px solid rgba(0,226,248,0.32) !important;
  border-radius: 999px !important;
  background: rgba(0,226,248,0.08) !important;
  color: var(--rh-brand) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: transform 0.15s, background 0.2s, border-color 0.2s, color 0.2s !important;
}

.rh-post__content .rh-post-cta:hover {
  transform: translateY(-1px) !important;
  border-color: var(--rh-brand) !important;
  background: rgba(0,226,248,0.14) !important;
  color: #ffffff !important;
  text-decoration: none !important;
}

.rh-post__content .rh-post-cta--success,
.rh-post__content .rh-post-cta--success:hover {
  border-color: #22c55e !important;
  background: #22c55e !important;
  color: #061108 !important;
  transform: none !important;
}

@media (max-width: 575px) {
  .rh-post__content p.rh-post-cta-row {
    align-items: stretch !important;
    flex-direction: column !important;
  }

  .rh-post__content .rh-post-cta {
    width: 100% !important;
  }
}

.rh-post__content ul,
.rh-post__content ol {
  color: rgba(255,255,255,0.7) !important;
  padding-left: 1.5rem !important;
  margin-bottom: 1.25rem !important;
}

.rh-post__content li {
  margin-bottom: 0.4rem !important;
}

.rh-post__content blockquote {
  border-left: 2px solid var(--rh-brand) !important;
  padding-left: 1rem !important;
  color: var(--rh-text-sec) !important;
  font-style: italic !important;
  margin: 1.5rem 0 !important;
}

.rh-post__content code {
  background: rgba(0,226,248,0.07) !important;
  color: var(--rh-brand) !important;
  border-radius: 4px !important;
  padding: 2px 6px !important;
  font-size: 13px !important;
  font-family: 'Courier New', monospace !important;
}

.rh-post__content pre {
  background: #0d0d14 !important;
  border: 0.5px solid rgba(0,226,248,0.15) !important;
  border-radius: 10px !important;
  padding: 1.25rem !important;
  overflow-x: auto !important;
  margin-bottom: 1.25rem !important;
}

.rh-post__content pre code {
  background: none !important;
  padding: 0 !important;
}

.rh-post__content img {
  border-radius: 10px !important;
  max-width: 100% !important;
}

.rh-post__content hr {
  border-color: rgba(255,255,255,0.08) !important;
  margin: 2rem 0 !important;
}

/* Footer back link */
.rh-post__footer {
  margin-top: 3rem !important;
  padding-top: 1.5rem !important;
  border-top: 0.5px solid rgba(255,255,255,0.07) !important;
}

.rh-post__back-footer {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.4) !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}

.rh-post__back-footer:hover {
  color: rgba(255,255,255,0.75) !important;
  text-decoration: none !important;
}


/* ─────────────────────────────────────────
   BLOG LISTING — section grouping
───────────────────────────────────────── */

.rh-blog-section {
  margin-bottom: 3.5rem;
}

.rh-blog-section__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
}

.rh-blog-section__title {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 !important;
}

.rh-blog-section__count {
  font-size: 12px !important;
  color: var(--rh-text-muted) !important;
  font-weight: 400 !important;
}

/* Accent line left of section title */
.rh-blog-section__title::before {
  content: '';
  display: inline-block;
  width: 3px;
  height: 16px;
  background: var(--rh-brand);
  border-radius: 999px;
  margin-right: 10px;
  vertical-align: middle;
  opacity: 0.8;
}


/* ─────────────────────────────────────────
   BLOG — meta above title
───────────────────────────────────────── */
.rh-post__meta {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  flex-wrap: wrap !important;
  margin-bottom: 0.6rem !important;
}

.rh-post__header {
  margin-bottom: 1.5rem !important;
}

/* ─────────────────────────────────────────
   BLOG — New badge on cards
───────────────────────────────────────── */
.rh-blog-new-badge {
  display: inline-flex !important;
  align-items: center !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  color: #07070f !important;
  background: var(--rh-brand) !important;
  border-radius: 999px !important;
  padding: 2px 8px !important;
  margin-bottom: 6px !important;
}

/* ─────────────────────────────────────────
   BLOG — Featured / pinned post
───────────────────────────────────────── */
.rh-blog-featured {
  margin-bottom: 2.5rem;
}

.rh-blog-featured__link {
  display: flex !important;
  gap: 1.5rem !important;
  background: #0c0c16 !important;
  border: 0.5px solid rgba(0,226,248,0.15) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  text-decoration: none !important;
  transition: border-color 0.2s, transform 0.2s !important;
}

.rh-blog-featured__link:hover {
  border-color: rgba(0,226,248,0.35) !important;
  transform: translateY(-2px) !important;
  text-decoration: none !important;
}

.rh-blog-featured__img {
  width: 280px;
  flex-shrink: 0;
}

.rh-blog-featured__img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.rh-blog-featured__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem 1.5rem 1.5rem 0;
}

.rh-blog-featured__badge {
  display: inline-flex !important;
  align-items: center !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--rh-brand) !important;
  background: rgba(0,226,248,0.08) !important;
  border: 0.5px solid rgba(0,226,248,0.2) !important;
  border-radius: 999px !important;
  padding: 3px 10px !important;
  width: fit-content !important;
}

.rh-blog-featured__title {
  font-size: 20px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

.rh-blog-featured__summary {
  font-size: 13px !important;
  color: var(--rh-text-sec) !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

.rh-blog-featured__read {
  font-size: 13px !important;
  color: var(--rh-brand) !important;
  font-weight: 500 !important;
}

@media (max-width: 640px) {
  .rh-blog-featured__link { flex-direction: column !important; }
  .rh-blog-featured__img  { width: 100% !important; height: 180px !important; }
  .rh-blog-featured__body { padding: 1.25rem !important; }
}

/* ─────────────────────────────────────────
   BLOG — Search bar
───────────────────────────────────────── */
.rh-blog-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0c0c16;
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0 14px;
  margin-bottom: 2.5rem;
  transition: border-color 0.2s;
}

.rh-blog-search:focus-within {
  border-color: rgba(0,226,248,0.3);
}

.rh-blog-search svg {
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}

.rh-blog-search input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-family: inherit !important;
  padding: 13px 0 !important;
  box-shadow: none !important;
}

.rh-blog-search input::placeholder {
  color: rgba(255,255,255,0.28) !important;
}

.rh-blog-search__clear {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08) !important;
  border: none !important;
  border-radius: 50% !important;
  width: 22px !important;
  height: 22px !important;
  cursor: pointer !important;
  color: rgba(255,255,255,0.5) !important;
  padding: 0 !important;
  flex-shrink: 0;
  transition: background 0.2s !important;
}

.rh-blog-search__clear:hover {
  background: rgba(255,255,255,0.14) !important;
  color: #fff !important;
}

/* No results */
.rh-blog-no-results {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  border: 0.5px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  background: #0c0c16;
  margin-bottom: 2rem;
}

.rh-blog-no-results p {
  font-size: 14px !important;
  color: var(--rh-text-muted) !important;
  margin: 0 !important;
}

/* ─────────────────────────────────────────
   BLOG POST — copy link + footer
───────────────────────────────────────── */
.rh-post__footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}

.rh-post__copy-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.4) !important;
  background: transparent !important;
  border: 0.5px solid rgba(255,255,255,0.1) !important;
  border-radius: 999px !important;
  padding: 6px 14px !important;
  cursor: pointer !important;
  font-family: inherit !important;
  transition: all 0.2s !important;
}

.rh-post__copy-link:hover {
  color: rgba(255,255,255,0.75) !important;
  border-color: rgba(255,255,255,0.25) !important;
}

.rh-post__copy-link--copied {
  color: #4ade80 !important;
  border-color: rgba(34,197,94,0.3) !important;
}

/* ─────────────────────────────────────────
   BLOG POST — related posts
───────────────────────────────────────── */
.rh-post__related {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 0.5px solid rgba(255,255,255,0.07);
}

.rh-post__related-title {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 1.25rem 0 !important;
}

/* ─────────────────────────────────────────
   BLOG POST — back to top button
───────────────────────────────────────── */
.rh-back-to-top {
  position: fixed !important;
  bottom: 2rem !important;
  right: 2rem !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background: rgba(0,226,248,0.1) !important;
  border: 0.5px solid rgba(0,226,248,0.25) !important;
  color: var(--rh-brand) !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.3s, transform 0.3s, background 0.2s !important;
  transform: translateY(8px) !important;
  z-index: 99 !important;
}

.rh-back-to-top--visible {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.rh-back-to-top:hover {
  background: rgba(0,226,248,0.18) !important;
}


/* ─────────────────────────────────────────
   GET KEY PAGE
───────────────────────────────────────── */

.rh-getkey-page {
  background: #080810;
  min-height: 100vh;
}

/* Hero header */
.rh-getkey-hero {
  padding: 6rem 2rem 3rem;
  text-align: center;
  position: relative;
}

.rh-getkey-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,226,248,0.18), transparent);
}

.rh-getkey-hero__inner {
  max-width: 600px;
  margin: 0 auto;
}

.rh-getkey-hero__title {
  font-size: clamp(32px, 4vw, 48px) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0.5rem 0 !important;
  line-height: 1.05 !important;
}

.rh-getkey-hero__subtitle {
  font-size: 15px !important;
  color: var(--rh-text-sec) !important;
  margin: 0 !important;
  line-height: 1.7 !important;
}

/* Options section */
.rh-getkey-options {
  padding: 3rem 2rem 5rem;
}

.rh-getkey-options__inner {
  max-width: min(92vw, 1000px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Base card */
.rh-key-card {
  background: #0c0c16;
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s;
}

/* Premium card */
.rh-key-card--premium {
  border-color: rgba(0,226,248,0.25) !important;
  background: linear-gradient(135deg, #0c0c1e 0%, #0a0a18 100%);
  box-shadow: 0 0 40px rgba(0,226,248,0.05);
}

.rh-key-card--premium:hover {
  border-color: rgba(0,226,248,0.4) !important;
  box-shadow: 0 0 60px rgba(0,226,248,0.08);
}

/* Recommended badge */
.rh-key-card__recommended {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--rh-brand);
  color: #07070f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 10px 10px;
}

/* Card top row */
.rh-key-card__top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* Icon */
.rh-key-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rh-key-card__icon--premium {
  background: rgba(0,226,248,0.1);
  border: 0.5px solid rgba(0,226,248,0.25);
  color: var(--rh-brand);
}

.rh-key-card__icon--free {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
}

/* Heading */
.rh-key-card__title {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 2px 0 !important;
}

.rh-key-card__price {
  font-size: 14px !important;
  color: var(--rh-brand) !important;
  margin: 0 !important;
  font-weight: 500 !important;
}

.rh-key-card__price strong {
  font-weight: 700;
}

.rh-key-card__duration {
  font-size: 13px !important;
  color: var(--rh-text-muted) !important;
  margin: 0 !important;
}

/* Description */
.rh-key-card__desc {
  font-size: 14px !important;
  color: var(--rh-text-sec) !important;
  line-height: 1.65 !important;
  margin: 0 0 1.25rem 0 !important;
}

/* Benefits list */
.rh-key-card__benefits {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 1.5rem 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.rh-key-card__benefits li {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 13.5px !important;
  color: rgba(255,255,255,0.75) !important;
}

.rh-key-card__benefits li svg {
  color: #4ade80;
  flex-shrink: 0;
}

.rh-key-card__benefit--muted {
  color: var(--rh-text-muted) !important;
}

.rh-key-card__benefit--muted svg {
  color: rgba(255,255,255,0.25) !important;
}

/* CTA buttons */
.rh-key-card__btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  padding: 13px 24px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: all 0.2s !important;
  cursor: pointer !important;
}

.rh-key-card__btn--premium {
  background: var(--rh-brand) !important;
  color: #07070f !important;
  border: none !important;
}

.rh-key-card__btn--premium:hover {
  background: #00c8de !important;
  color: #07070f !important;
  transform: translateY(-1px) !important;
  text-decoration: none !important;
}

.rh-key-card__btn--free {
  background: transparent !important;
  color: rgba(255,255,255,0.8) !important;
  border: 0.5px solid rgba(255,255,255,0.18) !important;
}

.rh-key-card__btn--free:hover {
  border-color: rgba(255,255,255,0.35) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  text-decoration: none !important;
}

/* Free cards row */
.rh-key-free-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Help / tutorial link */
.rh-key-card__help {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  font-size: 12.5px;
  color: var(--rh-text-muted);
}

.rh-key-card__help svg {
  flex-shrink: 0;
  opacity: 0.6;
}

.rh-key-card__help-soon {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 2px 8px;
}

/* Mobile */
@media (max-width: 640px) {
  .rh-getkey-hero {
    padding: 5rem 1.25rem 2.5rem;
  }

  .rh-getkey-options {
    padding: 2rem 1.25rem 4rem;
  }

  .rh-key-free-row {
    grid-template-columns: 1fr;
  }

  .rh-key-card {
    padding: 1.5rem;
  }
}


/* ─────────────────────────────────────────
   MAINTENANCE PAGE
───────────────────────────────────────── */

.rh-maintenance__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem 2.5rem;
  gap: 0.75rem;
}

.rh-maintenance__icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(0,226,248,0.08);
  border: 0.5px solid rgba(0,226,248,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rh-brand);
  margin-bottom: 0.5rem;
}

.rh-maintenance__title {
  font-size: clamp(28px, 4vw, 42px) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 !important;
}

.rh-maintenance__subtitle {
  font-size: 15px !important;
  color: var(--rh-text-sec) !important;
  max-width: 480px;
  margin: 0 !important;
  line-height: 1.65 !important;
}

.rh-maintenance__admin {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: transparent !important;
  color: rgba(255,255,255,0.4) !important;
  border: 0.5px solid rgba(255,255,255,0.12) !important;
  border-radius: 999px !important;
  padding: 8px 20px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  font-family: inherit !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
  margin-top: 0.5rem !important;
}

.rh-maintenance__admin:hover {
  color: rgba(255,255,255,0.75) !important;
  border-color: rgba(255,255,255,0.25) !important;
}

.rh-maintenance__divider {
  width: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,226,248,0.18), transparent);
  margin: 0 auto;
}


/* ─────────────────────────────────────────
   Ad blocker notice
───────────────────────────────────────── */
.rh-maintenance__adblocker,
.rh-key-adblocker {
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  margin-top: 1.25rem !important;
  padding: 12px 16px !important;
  background: rgba(255,200,0,0.05) !important;
  border: 0.5px solid rgba(255,200,0,0.15) !important;
  border-radius: 10px !important;
  font-size: 12.5px !important;
  color: rgba(255,255,255,0.45) !important;
  line-height: 1.55 !important;
}

.rh-maintenance__adblocker svg,
.rh-key-adblocker svg {
  color: rgba(255,200,0,0.5) !important;
  flex-shrink: 0 !important;
  margin-top: 1px !important;
}


/* ─────────────────────────────────────────
   Get Key — premium pill row
───────────────────────────────────────── */
.rh-key-card__pill-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  margin-bottom: 1.5rem !important;
}

.rh-key-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.8) !important;
  background: rgba(0,226,248,0.07) !important;
  border: 0.5px solid rgba(0,226,248,0.18) !important;
  border-radius: 999px !important;
  padding: 4px 11px !important;
  white-space: nowrap !important;
}

.rh-key-pill::before {
  content: '' !important;
  width: 5px !important;
  height: 5px !important;
  border-radius: 50% !important;
  background: var(--rh-brand) !important;
  flex-shrink: 0 !important;
}


/* Salesy one-liner on premium card */
.rh-key-card__salesy {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.55) !important;
  margin: 0 0 0.9rem 0 !important;
  font-style: italic !important;
}


/* ─────────────────────────────────────────
   GUIDE PAGE
───────────────────────────────────────── */

.rh-guide-page {
  background: #080810;
  min-height: 100vh;
}

/* Hero */
.rh-guide-hero {
  padding: 6rem 2rem 3.5rem;
  text-align: center;
  position: relative;
}

.rh-guide-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,226,248,0.18), transparent);
}

.rh-guide-hero__inner { max-width: 640px; margin: 0 auto; }

.rh-guide-hero__title {
  font-size: clamp(30px, 4vw, 48px) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.1 !important;
  margin: 0.5rem 0 !important;
}

.rh-guide-hero__subtitle {
  font-size: 15px !important;
  color: var(--rh-text-sec) !important;
  margin: 0 !important;
  line-height: 1.7 !important;
}

/* Shared section wrapper */
.rh-guide-section {
  padding: 3.5rem 2rem;
  position: relative;
}

.rh-guide-section + .rh-guide-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
}

.rh-guide-section__inner {
  max-width: min(92vw, 760px);
  margin: 0 auto;
}

.rh-guide-section__title {
  font-size: clamp(20px, 2.5vw, 28px) !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 0.3rem 0 !important;
}

.rh-guide-section__subtitle {
  font-size: 14px !important;
  color: var(--rh-text-muted) !important;
  margin: 0 0 2rem 0 !important;
}

/* What you need */
.rh-guide-needs {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #0c0c16;
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
}

.rh-guide-need {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  align-items: flex-start;
}

.rh-guide-need__divider {
  height: 0.5px;
  background: rgba(255,255,255,0.07);
  margin: 0;
}

.rh-guide-need__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0,226,248,0.08);
  border: 0.5px solid rgba(0,226,248,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rh-brand);
  flex-shrink: 0;
  margin-top: 2px;
}

.rh-guide-need__title {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 0.3rem 0 !important;
}

.rh-guide-need__desc {
  font-size: 13.5px !important;
  color: var(--rh-text-sec) !important;
  margin: 0 0 0.75rem 0 !important;
  line-height: 1.65 !important;
}

/* Executor cards */
.rh-guide-executors {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.rh-guide-executor {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  text-decoration: none !important;
  transition: border-color 0.2s, background 0.2s;
}

.rh-guide-executor:hover {
  border-color: rgba(0,226,248,0.25);
  background: rgba(0,226,248,0.04);
}

.rh-guide-executor--placeholder {
  opacity: 0.4;
  border-style: dashed;
}

.rh-guide-executor__name {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

.rh-guide-executor__tag {
  font-size: 11px;
  color: var(--rh-text-muted);
}

/* Steps */
.rh-guide-section--steps { background: #080810; }

.rh-guide-steps {
  display: flex;
  flex-direction: column;
}

.rh-guide-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.rh-guide-step__connector {
  width: 2px;
  height: 28px;
  background: rgba(0,226,248,0.15);
  border-radius: 999px;
  margin-left: 19px;
  flex-shrink: 0;
}

.rh-guide-step__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,226,248,0.08);
  border: 0.5px solid rgba(0,226,248,0.22);
  color: var(--rh-brand);
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rh-guide-step__body {
  padding-top: 8px;
  padding-bottom: 4px;
}

.rh-guide-step__title {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 0.3rem 0 !important;
}

.rh-guide-step__desc {
  font-size: 13.5px !important;
  color: var(--rh-text-sec) !important;
  margin: 0 !important;
  line-height: 1.65 !important;
}

/* Code block inside steps */
.rh-guide-code {
  margin-top: 0.75rem;
  background: #0d0d14;
  border: 0.5px solid rgba(0,226,248,0.15);
  border-radius: 8px;
  padding: 10px 14px;
  overflow-x: auto;
}

.rh-guide-code code {
  font-family: 'Courier New', monospace !important;
  font-size: 12.5px !important;
  color: var(--rh-brand) !important;
  white-space: nowrap !important;
  background: none !important;
  padding: 0 !important;
}

/* Links */
.rh-guide-link {
  color: var(--rh-brand) !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(0,226,248,0.3) !important;
  text-underline-offset: 3px !important;
  transition: text-decoration-color 0.2s !important;
}

.rh-guide-link:hover {
  text-decoration-color: var(--rh-brand) !important;
}

/* Discord CTA */
.rh-guide-discord {
  padding: 2rem 2rem 5rem;
}

.rh-guide-discord__inner {
  max-width: min(92vw, 760px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: #0c0c16;
  border: 0.5px solid rgba(88,101,242,0.25);
  border-radius: 14px;
  padding: 1.5rem;
  flex-wrap: wrap;
}

.rh-guide-discord__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(88,101,242,0.12);
  border: 0.5px solid rgba(88,101,242,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7289da;
  flex-shrink: 0;
}

.rh-guide-discord__text { flex: 1; min-width: 0; }

.rh-guide-discord__title {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 2px 0 !important;
}

.rh-guide-discord__desc {
  font-size: 13px !important;
  color: var(--rh-text-sec) !important;
  margin: 0 !important;
}

.rh-guide-discord__btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  background: rgba(88,101,242,0.15) !important;
  border: 0.5px solid rgba(88,101,242,0.3) !important;
  color: #7289da !important;
  border-radius: 999px !important;
  padding: 10px 20px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  transition: background 0.2s !important;
  flex-shrink: 0;
}

.rh-guide-discord__btn:hover {
  background: rgba(88,101,242,0.25) !important;
  color: #7289da !important;
  text-decoration: none !important;
}

/* Mobile */
@media (max-width: 640px) {
  .rh-guide-hero { padding: 5rem 1.25rem 2.5rem; }
  .rh-guide-section { padding: 2.5rem 1.25rem; }
  .rh-guide-discord { padding: 1.5rem 1.25rem 4rem; }
  .rh-guide-discord__inner { flex-direction: column; align-items: flex-start; }
}


/* ─────────────────────────────────────────
   GUIDE — executor section
───────────────────────────────────────── */

.rh-guide-needs--device {
  margin-bottom: 1.25rem;
}

.rh-guide-executor-section {
  background: #0c0c16;
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
}

.rh-guide-executor-intro {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
  align-items: flex-start;
}

/* Warning text */
.rh-guide-need__desc--warn {
  display: flex !important;
  align-items: flex-start !important;
  gap: 6px !important;
  background: rgba(255,160,0,0.06) !important;
  border: 0.5px solid rgba(255,160,0,0.18) !important;
  border-radius: 8px !important;
  padding: 9px 12px !important;
  font-size: 12.5px !important;
  color: rgba(255,200,100,0.8) !important;
  margin-top: 0.6rem !important;
  line-height: 1.55 !important;
}

.rh-guide-need__desc--warn svg {
  flex-shrink: 0;
  margin-top: 1px;
  opacity: 0.7;
}

/* Status bar */
.rh-exec-status-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 1.5rem;
  font-size: 12px;
  color: var(--rh-text-muted);
  background: rgba(255,255,255,0.02);
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}

.rh-exec-status-bar__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
  animation: rh-pulse-core 2s ease-in-out infinite;
}

.rh-exec-status-bar__dot--live {
  background: var(--rh-green) !important;
}

.rh-exec-status-bar__dot--err {
  background: rgba(255,80,80,0.7) !important;
  animation: none !important;
}

/* Sections inside executor area */
.rh-exec-section {
  padding: 1.25rem 1.5rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}

.rh-exec-section:last-child {
  border-bottom: none;
}

.rh-exec-section__title {
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  color: var(--rh-text-muted) !important;
  margin: 0 0 1rem 0 !important;
}

/* Grid of cards */
.rh-exec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
}

/* Individual executor card */
.rh-exec-card {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  text-decoration: none !important;
  transition: border-color 0.2s, background 0.2s;
  overflow: hidden;
}

.rh-exec-card:hover {
  border-color: rgba(0,226,248,0.22);
  background: rgba(0,226,248,0.03);
  text-decoration: none !important;
}

.rh-exec-card--recommended {
  border-color: rgba(0,226,248,0.2) !important;
  background: rgba(0,226,248,0.04) !important;
}

/* Reverb Pick badge — sits above the card name, in flow */
.rh-exec-rec-badge {
  display: inline-flex !important;
  align-items: center !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em !important;
  color: #07070f !important;
  background: var(--rh-brand) !important;
  padding: 2px 9px !important;
  border-radius: 999px !important;
  width: fit-content !important;
  margin-bottom: 6px !important;
}

.rh-exec-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.rh-exec-card__name {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

/* Status badges */
.rh-exec-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 999px;
  flex-shrink: 0;
}

.rh-exec-badge--updated  { background: rgba(34,197,94,0.12);  color: #4ade80; border: 0.5px solid rgba(34,197,94,0.25); }
.rh-exec-badge--outdated { background: rgba(255,160,0,0.1);   color: #fbbf24; border: 0.5px solid rgba(255,160,0,0.25); }
.rh-exec-badge--unknown  { background: rgba(255,255,255,0.05); color: var(--rh-text-muted); border: 0.5px solid rgba(255,255,255,0.1); }

/* Meta row */
.rh-exec-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.rh-exec-platform {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--rh-text-muted);
}

.rh-exec-cost {
  font-size: 11px;
  font-weight: 600;
  padding: 1px 7px;
  border-radius: 999px;
}

.rh-exec-cost--free { color: #4ade80; background: rgba(34,197,94,0.08); }
.rh-exec-cost--paid { color: #a78bfa; background: rgba(167,139,250,0.08); }

.rh-exec-version {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
}

.rh-exec-card__note {
  font-size: 12px !important;
  color: var(--rh-text-muted) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

.rh-exec-card__link {
  font-size: 11.5px;
  color: var(--rh-brand);
  margin-top: 2px;
  opacity: 0.7;
}

.rh-exec-card:hover .rh-exec-card__link {
  opacity: 1;
}

@media (max-width: 640px) {
  .rh-exec-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rh-guide-executor-intro {
    flex-direction: column;
  }
}


/* Guide copy script button */
.rh-guide-copy-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  margin-top: 0.75rem !important;
  background: var(--rh-brand) !important;
  color: #07070f !important;
  border: none !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  font-family: inherit !important;
  padding: 10px 20px !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.15s !important;
}

.rh-guide-copy-btn:hover {
  background: #00c8de !important;
  transform: translateY(-1px) !important;
}

.rh-guide-copy-btn--copied {
  background: #22c55e !important;
  color: #fff !important;
}


/* Mac platform tag colour */
.rh-exec-platform--mac {
  color: rgba(200, 200, 210, 0.7) !important;
}


/* ─────────────────────────────────────────
   EXECUTOR QUIZ
───────────────────────────────────────── */

.rh-quiz {
  padding: 1.5rem;
}

.rh-quiz__q {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 0.4rem 0 !important;
}

.rh-quiz__hint {
  font-size: 13px !important;
  color: var(--rh-text-muted) !important;
  margin: 0 0 1.1rem 0 !important;
}

/* Platform / budget buttons */
.rh-quiz__options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1rem;
}

.rh-quiz__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  min-width: 90px;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  flex: 1;
}

.rh-quiz__btn:hover {
  border-color: rgba(0,226,248,0.35);
  background: rgba(0,226,248,0.05);
  transform: translateY(-2px);
}

.rh-quiz__btn-emoji {
  font-size: 22px;
  line-height: 1;
}

.rh-quiz__btn-label {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
}

/* Back button */
.rh-quiz__back {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  color: var(--rh-text-muted);
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1rem;
  transition: color 0.2s;
}

.rh-quiz__back:hover { color: rgba(255,255,255,0.7); }

/* Result cards */
.rh-quiz--result { }

.rh-quiz-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  text-decoration: none !important;
  margin-bottom: 10px;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}

.rh-quiz-card:hover {
  border-color: rgba(0,226,248,0.22);
  background: rgba(0,226,248,0.03);
  text-decoration: none !important;
}

.rh-quiz-card--top {
  border-color: rgba(0,226,248,0.22) !important;
  background: rgba(0,226,248,0.04) !important;
}

/* Tag (e.g. Top Pick, Lifetime) */
.rh-quiz-card__tag {
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #07070f;
  background: var(--rh-brand);
  padding: 2px 9px;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 2px;
}

.rh-quiz-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.rh-quiz-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.rh-quiz-card__note {
  font-size: 13px !important;
  color: var(--rh-text-sec) !important;
  margin: 0 !important;
  line-height: 1.55 !important;
}

.rh-quiz-card__link {
  font-size: 12px;
  color: var(--rh-brand);
  opacity: 0.75;
  margin-top: 2px;
}

.rh-quiz-card:hover .rh-quiz-card__link { opacity: 1; }

/* Other options section */
.rh-quiz__other-label {
  font-size: 11px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.07em !important;
  color: var(--rh-text-muted) !important;
  margin: 0.5rem 0 0.75rem 0 !important;
}

.rh-quiz__others {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
  margin-bottom: 1rem;
}

.rh-quiz__others .rh-quiz-card {
  margin-bottom: 0;
}

/* Start over button */
.rh-quiz__restart {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  color: var(--rh-text-muted);
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  margin-top: 0.5rem;
  transition: color 0.2s;
}

.rh-quiz__restart:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 480px) {
  .rh-quiz__options { flex-direction: column; }
  .rh-quiz__btn { flex-direction: row; justify-content: flex-start; min-width: unset; }
  .rh-quiz__others { grid-template-columns: 1fr; }
}


/* ─────────────────────────────────────────
   Quiz bridge — connects warning to finder
───────────────────────────────────────── */
.rh-quiz-bridge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 1.5rem;
  padding: 12px 14px;
  background: rgba(0,226,248,0.04);
  border-top: 0.5px solid rgba(0,226,248,0.12);
  border-left: 2px solid rgba(0,226,248,0.35);
}

.rh-quiz-bridge__left {
  color: var(--rh-brand);
  flex-shrink: 0;
  opacity: 0.8;
}

.rh-quiz-bridge__title {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 2px 0 !important;
}

.rh-quiz-bridge__sub {
  font-size: 12px !important;
  color: var(--rh-text-muted) !important;
  margin: 0 !important;
}


/* Gap between quiz and script need card */
.rh-guide-executor-section + .rh-guide-needs--device {
  margin-top: 1.25rem;
}


/* Mobile — script need card icon above text, matching exploit layout */
@media (max-width: 640px) {
  .rh-guide-needs--device .rh-guide-need {
    flex-direction: column !important;
  }
}


/* ─────────────────────────────────────────
   SUPPORTED GAMES PAGE
───────────────────────────────────────── */

.rh-games-page {
  background: #080810;
  min-height: 100vh;
}

/* Hero */
.rh-games-hero {
  padding: 5rem 2rem 2.5rem;
  text-align: center;
  position: relative;
}

.rh-games-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 30%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,226,248,0.18), transparent);
}

.rh-games-hero__inner { max-width: 600px; margin: 0 auto; }

.rh-games-hero__title {
  font-size: clamp(28px, 3.5vw, 42px) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0.4rem 0 !important;
  line-height: 1.1 !important;
}

.rh-games-hero__subtitle {
  font-size: 14px !important;
  color: var(--rh-text-sec) !important;
  margin: 0 0 1.5rem 0 !important;
  line-height: 1.65 !important;
}

/* Search */
.rh-games-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0c0c16;
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0 14px;
  max-width: 420px;
  margin: 0 auto;
  transition: border-color 0.2s;
}

.rh-games-search:focus-within { border-color: rgba(0,226,248,0.3); }

.rh-games-search svg { color: rgba(255,255,255,0.3); flex-shrink: 0; }

.rh-games-search input {
  flex: 1;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-family: inherit !important;
  padding: 13px 0 !important;
  box-shadow: none !important;
}

.rh-games-search input::placeholder { color: rgba(255,255,255,0.28) !important; }

/* Content */
.rh-games-content { padding: 3rem 2rem 5rem; }

.rh-games-content__inner {
  max-width: min(92vw, 1100px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Block headers */
.rh-games-block__header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
}

.rh-games-block__title {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 !important;
}

.rh-games-block__title::before {
  content: '';
  display: inline-block;
  width: 3px; height: 16px;
  background: var(--rh-brand);
  border-radius: 999px;
  margin-right: 10px;
  vertical-align: middle;
  opacity: 0.8;
}

.rh-games-block__sub {
  font-size: 12px !important;
  color: var(--rh-text-muted) !important;
}

/* Games grid */
.rh-games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

/* Game card */
.rh-game-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 0.5px solid rgba(255,255,255,0.07);
  background: #0c0c16;
  aspect-ratio: 16/9;
  transition: border-color 0.2s, transform 0.2s;
}

.rh-game-card:hover {
  border-color: rgba(0,226,248,0.25);
  transform: translateY(-3px);
}

.rh-game-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}

.rh-game-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
  gap: 2px;
}

.rh-game-card__name {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.2;
}

.rh-game-card__cta {
  font-size: 11px;
  color: var(--rh-brand);
  opacity: 0;
  transition: opacity 0.2s;
}

.rh-game-card:hover .rh-game-card__cta { opacity: 1; }

/* No results */
.rh-games-no-results {
  display: flex;
  justify-content: center;
  padding: 3rem;
  border: 0.5px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  background: #0c0c16;
}

.rh-games-no-results p {
  font-size: 14px !important;
  color: var(--rh-text-muted) !important;
  margin: 0 !important;
}

/* ─────────────────────────────────────────
   GAME MODAL
───────────────────────────────────────── */

.rh-game-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.rh-game-modal-overlay--open {
  opacity: 1;
  pointer-events: auto;
}

.rh-game-modal {
  background: #0d0d18;
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  width: min(92vw, 600px);
  max-height: 85vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.96) translateY(8px);
  transition: transform 0.25s;
}

.rh-game-modal-overlay--open .rh-game-modal {
  transform: scale(1) translateY(0);
}

.rh-game-modal__inner {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1;
}

/* Modal header */
.rh-modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.rh-modal-thumb-wrap {
  width: 72px;
  height: 40px;
  border-radius: 6px;
  overflow: hidden;
  background: #0c0c16;
  flex-shrink: 0;
  border: 0.5px solid rgba(255,255,255,0.08);
}

.rh-modal-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}

.rh-modal-header__info { flex: 1; min-width: 0; }

.rh-modal-title {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 2px 0 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rh-modal-subtitle {
  font-size: 12px !important;
  color: var(--rh-text-muted) !important;
  margin: 0 !important;
}

.rh-modal-close {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  font-family: inherit;
}

.rh-modal-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Modal tabs */
.rh-modal-tabs {
  display: flex;
  gap: 0;
  padding: 0 20px;
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
  overflow-x: auto;
  flex-shrink: 0;
}

.rh-modal-tab {
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--rh-text-muted);
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  padding: 12px 16px;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.rh-modal-tab:hover { color: rgba(255,255,255,0.7); }

.rh-modal-tab--active {
  color: var(--rh-brand) !important;
  border-bottom-color: var(--rh-brand) !important;
}

/* Features list */
.rh-modal-features {
  flex: 1;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rh-modal-feature {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.rh-modal-feature__check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
  border: 0.5px solid rgba(34,197,94,0.25);
  color: #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.rh-modal-feature__name {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 1px 0 !important;
}

.rh-modal-feature__desc {
  font-size: 12px !important;
  color: var(--rh-text-muted) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* Modal footer */
.rh-modal-footer {
  padding: 14px 20px;
  border-top: 0.5px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.rh-modal-copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 12px 24px;
  background: var(--rh-brand);
  color: #07070f;
  border: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
}

.rh-modal-copy:hover { background: #00c8de; }

.rh-modal-copy--copied {
  background: #22c55e !important;
  color: #fff !important;
}

/* Mobile — bottom sheet */
@media (max-width: 640px) {
  .rh-game-modal-overlay {
    align-items: flex-end;
  }

  .rh-game-modal {
    width: 100%;
    max-height: 88vh;
    border-radius: 20px 20px 0 0;
    transform: translateY(100%);
  }

  .rh-game-modal-overlay--open .rh-game-modal {
    transform: translateY(0);
  }

  .rh-games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rh-games-content { padding: 2rem 1.25rem 4rem; }
  .rh-games-hero { padding: 4rem 1.25rem 2rem; }
}


/* Modal — coming soon state */
.rh-modal-coming-soon {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--rh-text-muted);
}

.rh-modal-coming-soon__title {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 !important;
}

.rh-modal-coming-soon__sub {
  font-size: 13px !important;
  color: var(--rh-text-muted) !important;
  margin: 0 !important;
  line-height: 1.65 !important;
  max-width: 380px;
}

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */

.rh-nav {
  background: rgba(8, 8, 16, 0.85) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-bottom: 0.5px solid rgba(255,255,255,0.06) !important;
  position: relative;
  z-index: 1000;
}

.rh-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: min(92vw, 1480px);
  margin: 0 auto;
  padding: 0.85rem 0;
}

/* Logo */
.rh-nav__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none !important;
  flex-shrink: 0;
}

.rh-nav__logo-img {
  height: 28px;
  width: 28px;
  border-radius: 6px;
  object-fit: cover;
}

.rh-nav__logo-text {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

/* Desktop links */
.rh-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

@media (max-width: 991px) {
  .rh-nav__links { display: none; }
}

.rh-nav__link {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.6) !important;
  text-decoration: none !important;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.rh-nav__link:hover {
  color: #ffffff !important;
  background: rgba(255,255,255,0.06);
}

/* Right actions */
.rh-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Login button */
.rh-nav__login {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55) !important;
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none !important;
  transition: color 0.2s, border-color 0.2s;
  display: inline-flex;
  align-items: center;
}

.rh-nav__login:hover {
  color: rgba(255,255,255,0.85) !important;
  border-color: rgba(255,255,255,0.25);
}

@media (max-width: 991px) {
  .rh-nav__login { display: none; }
}

/* Cart */
.rh-nav__cart {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  color: rgba(255,255,255,0.5) !important;
  text-decoration: none !important;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.rh-nav__cart:hover {
  color: rgba(255,255,255,0.85) !important;
  background: rgba(255,255,255,0.06);
}

.rh-nav__cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--rh-brand);
  color: #07070f;
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* Get Access CTA */
.rh-nav__cta {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  color: #07070f !important;
  background: var(--rh-brand);
  border-radius: 999px;
  padding: 7px 16px;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.rh-nav__cta:hover {
  background: #00c8de;
  transform: translateY(-1px);
}

/* Currency selector */
.rh-nav__currency { font-size: 12px; }

@media (max-width: 991px) {
  .rh-nav__currency { display: none; }
}

/* Hamburger */
.rh-nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
}

.rh-nav__hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: rgba(255,255,255,0.7);
  border-radius: 999px;
  transition: background 0.2s;
}

.rh-nav__hamburger:hover span { background: #fff; }

/* Overlay */
.rh-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(3px);
  z-index: 1998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.rh-nav__overlay--open {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer */
.rh-nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: #0c0c18;
  border-left: 0.5px solid rgba(255,255,255,0.08);
  z-index: 1999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.rh-nav__drawer--open { transform: translateX(0); }

.rh-nav__drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
}

.rh-nav__drawer-header .rh-nav__logo-text {
  font-size: 16px;
}

.rh-nav__drawer-close {
  background: rgba(255,255,255,0.06);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: rgba(255,255,255,0.6);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.rh-nav__drawer-close:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.rh-nav__drawer-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  overflow-y: auto;
}

.rh-nav__drawer-link {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none !important;
  padding: 0.9rem 1.5rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.04);
  transition: color 0.2s, background 0.2s;
}

.rh-nav__drawer-link:hover {
  color: #ffffff !important;
  background: rgba(255,255,255,0.04);
}

.rh-nav__drawer-footer {
  padding: 1rem 1.5rem;
  border-top: 0.5px solid rgba(255,255,255,0.07);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */

.rh-footer {
  background: #080810 !important;
  position: relative;
}

.rh-footer::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,226,248,0.25), transparent);
}

.rh-footer__main {
  padding: 3.5rem 0 2.5rem;
}

.rh-footer__inner {
  max-width: min(92vw, 1100px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

/* Brand */
.rh-footer__logo {
  height: 32px;
  width: 32px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 0.75rem;
  display: block;
}

.rh-footer__tagline {
  font-size: 13px !important;
  color: var(--rh-text-muted) !important;
  margin: 0 !important;
  line-height: 1.65 !important;
  max-width: 260px;
}

/* Columns */
.rh-footer__col-title {
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.35) !important;
  margin: 0 0 1rem 0 !important;
}

.rh-footer__links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rh-footer__link {
  font-size: 13.5px !important;
  color: rgba(255,255,255,0.5) !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}

.rh-footer__link:hover {
  color: rgba(255,255,255,0.85) !important;
}

/* Community */
.rh-footer__community-text {
  font-size: 13px !important;
  color: var(--rh-text-muted) !important;
  margin: 0 0 1rem 0 !important;
  line-height: 1.6 !important;
}

.rh-footer__discord {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(88,101,242,0.12);
  border: 0.5px solid rgba(88,101,242,0.25);
  color: #7289da !important;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  transition: background 0.2s;
}

.rh-footer__discord:hover {
  background: rgba(88,101,242,0.22);
  color: #7289da !important;
}

/* Bottom bar */
.rh-footer__bar {
  border-top: 0.5px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
}

.rh-footer__bar-inner {
  max-width: min(92vw, 1100px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.rh-footer__copy,
.rh-footer__not-affiliated {
  font-size: 12px !important;
  color: rgba(255,255,255,0.2) !important;
}

/* Responsive footer */
@media (max-width: 900px) {
  .rh-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .rh-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .rh-footer__inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .rh-footer__bar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}


/* ── LEFT ── */

.rh-product-compare {
  background: #0c0c16;
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.rh-product-compare__title {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 1.25rem 0 !important;
}

.rh-product-compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
}

.rh-product-compare__col { background: #0d0d1a; }
.rh-product-compare__col--premium { background: #0b0b1e; }

.rh-product-compare__col-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
}

.rh-product-compare__col--premium .rh-product-compare__col-head { color: var(--rh-brand); }

.rh-product-compare__badge {
  font-size: 10px; font-weight: 700;
  color: #07070f; background: var(--rh-brand);
  padding: 2px 8px; border-radius: 999px;
  letter-spacing: 0.04em;
}

.rh-product-compare__list { list-style: none !important; padding: 8px 0 !important; margin: 0 !important; }

.rh-product-compare__item {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 12.5px !important;
  padding: 7px 14px !important;
  color: var(--rh-text-sec) !important;
}

.rh-product-compare__item::before {
  content: '';
  width: 16px; height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.rh-product-compare__item--yes::before {
  background-color: rgba(34,197,94,0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234ade80' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5'/%3E%3C/svg%3E");
}

.rh-product-compare__item--no { opacity: 0.4; }
.rh-product-compare__item--no::before {
  background-color: rgba(255,255,255,0.05);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 18L18 6M6 6l12 12'/%3E%3C/svg%3E");
}

/* How it works */
.rh-product-how {
  background: #0c0c16;
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.rh-product-how__title {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 1.25rem 0 !important;
}

.rh-product-how__steps { display: flex; flex-direction: column; }

.rh-product-how__step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.rh-product-how__connector {
  width: 2px; height: 20px;
  background: rgba(0,226,248,0.15);
  border-radius: 999px;
  margin-left: 16px;
}

.rh-product-how__num {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(0,226,248,0.08);
  border: 0.5px solid rgba(0,226,248,0.22);
  color: var(--rh-brand);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.rh-product-how__step-title {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 2px 0 !important;
  padding-top: 6px;
}

.rh-product-how__step-desc {
  font-size: 12.5px !important;
  color: var(--rh-text-muted) !important;
  margin: 0 !important;
  line-height: 1.55 !important;
}

/* Perks */
.rh-product-perks {
  background: #0c0c16;
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.rh-product-perks__title {
  font-size: 15px !important;
  font-weight: 600 !important;
  color: #ffffff !important;
  margin: 0 0 1.25rem 0 !important;
}

.rh-product-perks__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.rh-product-perk { display: flex; gap: 10px; align-items: flex-start; }

.rh-product-perk__icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(0,226,248,0.08);
  border: 0.5px solid rgba(0,226,248,0.18);
  color: var(--rh-brand);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.rh-product-perk__name {
  font-size: 13px !important; font-weight: 600 !important;
  color: #ffffff !important; margin: 0 0 2px 0 !important;
}

.rh-product-perk__desc {
  font-size: 12px !important;
  color: var(--rh-text-muted) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* Description */
.rh-product-desc {
  background: #0c0c16;
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
}

.rh-product-tabs { display: flex; border-bottom: 0.5px solid rgba(255,255,255,0.07); overflow-x: auto; }

.rh-product-tab {
  background: transparent; border: none;
  border-bottom: 2px solid transparent;
  color: var(--rh-text-muted);
  font-size: 13px; font-weight: 500; font-family: inherit;
  padding: 11px 16px; cursor: pointer; white-space: nowrap; flex-shrink: 0;
  transition: color 0.2s, border-color 0.2s;
}

.rh-product-tab--active { color: var(--rh-brand) !important; border-bottom-color: var(--rh-brand) !important; }

.rh-product-desc__content { padding: 1.25rem 1.5rem; }
.rh-product-desc__content .editor { font-size: 13.5px !important; color: rgba(255,255,255,0.7) !important; line-height: 1.75 !important; }
.rh-product-desc__content .editor p { color: rgba(255,255,255,0.7) !important; }
.rh-product-desc__content .editor a { color: var(--rh-brand) !important; }
.rh-product-desc__content .editor ul { padding-left: 1.25rem !important; }
.rh-product-desc__content .editor li { margin-bottom: 0.35rem !important; }

/* ── RIGHT ── */
.rh-product-right {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rh-product-form-card {
  background: #0c0c16;
  border: 0.5px solid rgba(0,226,248,0.18);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 0 40px rgba(0,226,248,0.04);
}

.rh-product-form-card__price-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 0.5rem;
}

.rh-product-form-card__price {
  font-size: 30px; font-weight: 800;
  color: #ffffff; letter-spacing: -0.02em;
}

.rh-product-stock { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 999px; }
.rh-product-stock--in  { color: #4ade80; background: rgba(34,197,94,0.1);  border: 0.5px solid rgba(34,197,94,0.25); }
.rh-product-stock--out { color: #f87171; background: rgba(239,68,68,0.1);  border: 0.5px solid rgba(239,68,68,0.25); }
.rh-product-stock--hold{ color: var(--rh-brand); background: rgba(0,226,248,0.08); border: 0.5px solid rgba(0,226,248,0.2); }

.rh-product-live { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 0.5px solid rgba(255,255,255,0.06); }
.rh-product-live__item { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--rh-text-muted); }

/* Product FAQ */
.rh-product-faq {
  background: #0c0c16;
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
}

.rh-product-faq__title {
  font-size: 14px !important; font-weight: 600 !important;
  color: #ffffff !important; margin: 0 0 0.75rem 0 !important;
}

.rh-product-faq .rh-faq__question { padding: 0.85rem 0 !important; font-size: 13px !important; }
.rh-product-faq .rh-faq__answer p { font-size: 12.5px !important; padding-right: 0 !important; }

/* Responsive */
@media (max-width: 900px) {
  .rh-product-body__inner { grid-template-columns: 1fr; }
  .rh-product-right { position: static; }
  .rh-product-perks__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .rh-product-hero { padding: 3rem 1.25rem 2rem; }
  .rh-product-body { padding: 2rem 1.25rem 4rem; }
  .rh-product-compare__grid { grid-template-columns: 1fr; }
  .rh-product-hero__ctas { flex-direction: column; }
  .rh-product-hero__cta-primary,
  .rh-product-hero__cta-secondary { width: 100%; justify-content: center; }
}



/* ── Form overrides ── */
.rh-product-card .form-label {
  font-size: 11px !important; font-weight: 600 !important;
  letter-spacing: 0.08em !important; text-transform: uppercase !important;
  color: rgba(255,255,255,0.28) !important; margin-bottom: 8px !important;
}

.rh-product-card .variants { display: flex !important; flex-direction: column !important; gap: 7px !important; }

.rh-product-card .variant {
  display: flex !important; align-items: center !important;
  justify-content: space-between !important; gap: 10px !important;
  padding: 10px 12px !important;
  background: rgba(255,255,255,0.03) !important;
  border: 0.5px solid rgba(255,255,255,0.09) !important;
  border-radius: 10px !important;
  text-align: left !important; cursor: pointer !important; width: 100% !important;
  color: #ffffff !important; transition: border-color 0.2s, background 0.2s !important;
}

.rh-product-card .variant:hover:not(:disabled) {
  border-color: rgba(0,226,248,0.25) !important;
  background: rgba(0,226,248,0.03) !important;
}

.rh-product-card .variant.active {
  border-color: rgba(0,226,248,0.4) !important;
  background: rgba(0,226,248,0.06) !important;
}

.rh-product-card .variant:disabled { opacity: 0.3 !important; cursor: not-allowed !important; }
.rh-product-card .variant .name { font-size: 13px !important; font-weight: 600 !important; color: #ffffff !important; margin: 0 !important; }
.rh-product-card .variant .description { font-size: 11px !important; color: var(--rh-text-muted) !important; margin: 1px 0 0 0 !important; }
.rh-product-card .variant .stock { font-size: 10.5px !important; color: var(--rh-text-muted) !important; margin: 1px 0 0 0 !important; }
.rh-product-card .variant .price { font-size: 13.5px !important; font-weight: 700 !important; color: #ffffff !important; white-space: nowrap !important; flex-shrink: 0 !important; }
.rh-product-card .active-indicator { display: flex !important; width: 16px !important; height: 16px !important; flex-shrink: 0 !important; color: var(--rh-brand) !important; }

.rh-product-card .input-group { max-width: 150px !important; }
.rh-product-card .form-control { background: rgba(255,255,255,0.04) !important; border-color: rgba(255,255,255,0.1) !important; color: #ffffff !important; text-align: center !important; font-size: 14px !important; font-weight: 600 !important; }
.rh-product-card .form-control:focus { background: rgba(255,255,255,0.06) !important; border-color: rgba(0,226,248,0.3) !important; box-shadow: none !important; }
.rh-product-card .input-group-btn { background: rgba(255,255,255,0.04) !important; border-color: rgba(255,255,255,0.1) !important; color: rgba(255,255,255,0.6) !important; width: 36px !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.rh-product-card .input-group-btn:hover { background: rgba(255,255,255,0.08) !important; color: #fff !important; }
.rh-product-card .input-group-btn svg { width: 13px !important; height: 13px !important; }

.rh-product-card .form-control.text-center { font-size: 12px !important; color: var(--rh-text-muted) !important; background: rgba(0,226,248,0.04) !important; border-color: rgba(0,226,248,0.12) !important; max-width: unset !important; }

/* Buy Now = primary cyan */
.rh-product-card .btn-outline-primary:not(.input-group-btn) {
  background: var(--rh-brand) !important; border-color: var(--rh-brand) !important;
  color: #07070f !important; font-weight: 700 !important; border-radius: 999px !important;
  padding: 12px !important; font-size: 14px !important; width: 100% !important;
  transition: background 0.2s !important;
}
.rh-product-card .btn-outline-primary:not(.input-group-btn):hover { background: #00c8de !important; }

/* Add to Cart = secondary */
.rh-product-card .btn-primary:not(.variant):not(.input-group-btn) {
  background: transparent !important; border: 0.5px solid rgba(255,255,255,0.15) !important;
  color: rgba(255,255,255,0.7) !important; font-weight: 500 !important; border-radius: 999px !important;
  padding: 11px !important; font-size: 14px !important; width: 100% !important;
  transition: background 0.2s, color 0.2s !important;
}
.rh-product-card .btn-primary:not(.variant):not(.input-group-btn):hover { background: rgba(255,255,255,0.06) !important; color: #fff !important; }

/* Addon */
.rh-product-card .addon-item { background: rgba(255,255,255,0.03) !important; border: 0.5px solid rgba(255,255,255,0.08) !important; border-radius: 10px !important; }
.rh-product-card .addon-item .fw-medium { font-size: 13px !important; color: #ffffff !important; }
.rh-product-card .addon-item .small.text-muted { white-space: normal !important; font-size: 12px !important; color: var(--rh-text-muted) !important; line-height: 1.5 !important; }
.rh-product-card .btn-addon-add { background: rgba(0,226,248,0.1) !important; border: 0.5px solid rgba(0,226,248,0.25) !important; color: var(--rh-brand) !important; border-radius: 999px !important; font-size: 12px !important; padding: 4px 12px !important; white-space: nowrap !important; font-weight: 500 !important; }
.rh-product-card .btn-addon-add:hover { background: rgba(0,226,248,0.18) !important; }
.rh-product-card .btn-addon-remove { background: rgba(239,68,68,0.08) !important; border: 0.5px solid rgba(239,68,68,0.2) !important; color: #f87171 !important; border-radius: 999px !important; font-size: 12px !important; padding: 4px 12px !important; white-space: nowrap !important; font-weight: 500 !important; }

.rh-product-card .text-danger { color: #f87171 !important; font-size: 12px !important; }

/* Responsive */
@media (max-width: 860px) {
  .rh-product-wrap { grid-template-columns: 1fr; }
  .rh-product-right { position: static; }
}

@media (max-width: 560px) {
  .rh-product-wrap { padding: 2rem 0 4rem; }
}


/* ─────────────────────────────────────────
   PRODUCT PAGE — Resilia-style layout
───────────────────────────────────────── */

.rh-product { background: #080810; }

/* ── Above fold ── */
.rh-pp-fold {
  padding: 3rem 3rem 2.5rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}

.rh-pp-fold__inner {
  max-width: min(94vw, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.rh-pp-visual {
  display: flex;
  flex-direction: column;
}

/* ── Carousel ── */
.rh-pp-carousel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rh-pp-carousel__main {
  position: relative;
  background: #0c0c18;
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rh-pp-carousel__main--placeholder {
  flex-direction: column;
  gap: 10px;
}

.rh-pp-carousel__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.rh-pp-carousel__img--show {
  opacity: 1 !important;
}

/* Thumbnails */
.rh-pp-carousel__thumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 0;
}

.rh-pp-carousel__thumb {
  width: 72px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.08);
  background: #0c0c18;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: border-color 0.2s, transform 0.15s;
}

.rh-pp-carousel__thumb:hover {
  border-color: rgba(0,226,248,0.3);
  transform: translateY(-1px);
}

.rh-pp-carousel__thumb--active {
  border-color: var(--rh-brand) !important;
}

.rh-pp-carousel__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder styles */
.rh-pp-visual__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(0,226,248,0.12), transparent 65%);
  pointer-events: none;
}

.rh-pp-visual__logo {
  width: 72px; height: 72px;
  border-radius: 18px;
  object-fit: cover;
  position: relative;
  z-index: 1;
}

.rh-pp-visual__label {
  font-size: 22px !important; font-weight: 800 !important;
  color: #ffffff !important; margin: 0 !important;
  letter-spacing: -0.02em; position: relative; z-index: 1;
}

.rh-pp-visual__sublabel {
  font-size: 12px !important; color: var(--rh-brand) !important;
  margin: 0 !important; font-weight: 600 !important;
  letter-spacing: 0.07em; text-transform: uppercase; position: relative; z-index: 1;
}

/* Feature tiles */
.rh-pp-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.rh-pp-tile {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0c0c16;
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}

.rh-pp-tile svg { color: var(--rh-brand); flex-shrink: 0; }

/* ── Purchase column ── */
.rh-pp-purchase {
  display: flex;
  flex-direction: column;
}

/* Rating row */
/* Title */
.rh-pp-title {
  font-size: clamp(22px, 2.5vw, 32px) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 0.6rem 0 !important;
  line-height: 1.1 !important;
}

/* Meta row: rating + status inline */
.rh-pp-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}

.rh-pp-meta-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rh-pp-stars { color: #fbbf24; font-size: 13px; letter-spacing: 1px; }

.rh-pp-rating__text {
  font-size: 12px;
  color: var(--rh-text-muted);
}

/* Status inline */
.rh-pp-meta-status {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-left: 14px;
  border-left: 0.5px solid rgba(255,255,255,0.1);
}

.rh-pp-status-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  display: inline-block;
}

.rh-pp-status-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid;
  opacity: 0;
  animation: rh-status-ring 2s ease-out infinite;
}

@keyframes rh-status-ring {
  0%   { transform: scale(0.7); opacity: 0.7; }
  100% { transform: scale(2); opacity: 0; }
}

.rh-pp-status-text {
  font-size: 13px;
  font-weight: 600;
}



.rh-pp-hook {
  font-size: 14px !important;
  color: var(--rh-text-sec) !important;
  margin: 0 0 1.25rem 0 !important;
  line-height: 1.6 !important;
}

/* Price */
.rh-pp-price-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 0.5rem;
}

.rh-pp-price {
  font-size: 34px; font-weight: 800;
  color: #ffffff; letter-spacing: -0.03em;
}

.rh-pp-instock {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 600; color: #4ade80;
  background: rgba(34,197,94,0.1); border: 0.5px solid rgba(34,197,94,0.25);
  border-radius: 999px; padding: 3px 10px;
}

.rh-pp-outstock {
  font-size: 12px; font-weight: 600; color: #f87171;
  background: rgba(239,68,68,0.1); border: 0.5px solid rgba(239,68,68,0.25);
  border-radius: 999px; padding: 3px 10px;
}

.rh-pp-live {
  display: flex; gap: 14px; font-size: 12px;
  color: var(--rh-text-muted); margin-bottom: 1rem;
}

.rh-pp-variant-label {
  font-size: 11px !important; font-weight: 700 !important;
  text-transform: uppercase !important; letter-spacing: 0.08em !important;
  color: rgba(255,255,255,0.3) !important; margin: 0 0 8px 0 !important;
}

/* Guarantee strip */
.rh-pp-guarantee {
  display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap; font-size: 11.5px;
  color: rgba(255,255,255,0.3);
  margin-top: 1rem; padding-top: 1rem;
  border-top: 0.5px solid rgba(255,255,255,0.06);
}

.rh-pp-guarantee svg { color: var(--rh-brand); flex-shrink: 0; }


/* ── Above fold ── */
.rh-pp-fold {
  padding: 3rem 3rem 2.5rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}

.rh-pp-fold__inner {
  max-width: min(92vw, 1060px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* Visual column */
.rh-pp-visual__main {
  background: #0c0c18;
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
}

.rh-pp-visual__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rh-pp-visual__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 2rem;
}

.rh-pp-visual__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(0,226,248,0.12), transparent 65%);
  pointer-events: none;
}

.rh-pp-visual__logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  object-fit: cover;
}

.rh-pp-visual__label {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 !important;
  letter-spacing: -0.02em;
}

.rh-pp-visual__sublabel {
  font-size: 13px !important;
  color: var(--rh-brand) !important;
  margin: 0 !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Feature tiles */
.rh-pp-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.rh-pp-tile {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #0c0c16;
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
}

.rh-pp-tile svg { color: var(--rh-brand); flex-shrink: 0; }

/* Purchase column */
.rh-pp-purchase {
  display: flex;
  flex-direction: column;
}

.rh-pp-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0.75rem;
}

.rh-pp-stars {
  color: #fbbf24;
  font-size: 14px;
  letter-spacing: 1px;
}

.rh-pp-rating__text {
  font-size: 12.5px;
  color: var(--rh-text-muted);
}

.rh-pp-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: #4ade80;
}

.rh-pp-status__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.rh-pp-title {
  font-size: clamp(22px, 2.5vw, 32px) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 0.5rem 0 !important;
  line-height: 1.1 !important;
}

.rh-pp-hook {
  font-size: 14px !important;
  color: var(--rh-text-sec) !important;
  margin: 0 0 1.25rem 0 !important;
  line-height: 1.6 !important;
}

.rh-pp-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.5rem;
}

.rh-pp-price {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
}

.rh-pp-instock {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #4ade80;
  background: rgba(34,197,94,0.1);
  border: 0.5px solid rgba(34,197,94,0.25);
  border-radius: 999px;
  padding: 3px 10px;
}

.rh-pp-instock--low {
  color: #fbbf24 !important;
  background: rgba(245,158,11,0.1) !important;
  border-color: rgba(245,158,11,0.3) !important;
}

.rh-pp-instock--very-low {
  color: #f87171 !important;
  background: rgba(239,68,68,0.1) !important;
  border-color: rgba(239,68,68,0.3) !important;
}

.rh-pp-outstock {
  font-size: 12px; font-weight: 600;
  color: #f87171;
  background: rgba(239,68,68,0.1);
  border: 0.5px solid rgba(239,68,68,0.25);
  border-radius: 999px;
  padding: 3px 10px;
}

.rh-pp-live {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--rh-text-muted);
  margin-bottom: 1rem;
}

.rh-pp-variant-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  color: rgba(255,255,255,0.3) !important;
  margin: 0 0 8px 0 !important;
}

/* Guarantee strip */
.rh-pp-guarantee {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 11.5px;
  color: rgba(255,255,255,0.3);
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 0.5px solid rgba(255,255,255,0.06);
}

.rh-pp-guarantee svg { color: var(--rh-brand); flex-shrink: 0; }

/* ── Form overrides ── */
.rh-pp-purchase .form-label {
  display: none !important; /* variant label handled above */
}

/* Suppress quantity label too */
.rh-pp-purchase label[for="quantity"] {
  font-size: 11px !important; font-weight: 700 !important;
  text-transform: uppercase !important; letter-spacing: 0.08em !important;
  color: rgba(255,255,255,0.3) !important;
}

.rh-pp-purchase .variants { display: flex !important; flex-direction: column !important; gap: 8px !important; }

/* Variant = big card like Resilia buy options */
.rh-pp-purchase .variant {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding: 14px 16px !important;
  background: rgba(255,255,255,0.03) !important;
  border: 1.5px solid rgba(255,255,255,0.08) !important;
  border-radius: 12px !important;
  text-align: left !important; cursor: pointer !important; width: 100% !important;
  color: #ffffff !important; transition: border-color 0.2s, background 0.2s !important;
  position: relative !important;
}

.rh-pp-purchase .variant:hover:not(:disabled) {
  border-color: rgba(0,226,248,0.3) !important;
  background: rgba(0,226,248,0.03) !important;
}

.rh-pp-purchase .variant.active {
  border-color: var(--rh-brand) !important;
  background: rgba(0,226,248,0.06) !important;
}

.rh-pp-purchase .variant:disabled { opacity: 0.3 !important; cursor: not-allowed !important; }

.rh-pp-purchase .variant .name-stock { flex: 1 !important; min-width: 0 !important; }
.rh-pp-purchase .variant .name { font-size: 14px !important; font-weight: 700 !important; color: #ffffff !important; margin: 0 0 2px 0 !important; }
.rh-pp-purchase .variant .description { font-size: 11.5px !important; color: var(--rh-text-muted) !important; margin: 2px 0 0 0 !important; line-height: 1.4 !important; }
.rh-pp-purchase .variant .stock { font-size: 11px !important; color: var(--rh-text-muted) !important; margin: 2px 0 0 0 !important; }
.rh-pp-purchase .variant .stock .stock-low { color: #fbbf24 !important; }
.rh-pp-purchase .variant .stock .stock-very-low { color: #f87171 !important; }
.rh-pp-purchase .variant .price { font-size: 16px !important; font-weight: 800 !important; color: #ffffff !important; white-space: nowrap !important; flex-shrink: 0 !important; text-align: right !important; display: flex !important; flex-direction: column !important; align-items: flex-end !important; }
.rh-pp-purchase .variant .price s { font-size: 12px !important; opacity: 0.4 !important; font-weight: 400 !important; }
.rh-pp-purchase .active-indicator { display: flex !important; align-items: center !important; width: 20px !important; height: 20px !important; flex-shrink: 0 !important; color: var(--rh-brand) !important; }

/* Quantity */
.rh-pp-purchase .input-group { max-width: 150px !important; }
.rh-pp-purchase .form-control { background: rgba(255,255,255,0.04) !important; border-color: rgba(255,255,255,0.1) !important; color: #ffffff !important; text-align: center !important; font-size: 15px !important; font-weight: 600 !important; }
.rh-pp-purchase .form-control:focus { border-color: rgba(0,226,248,0.3) !important; box-shadow: none !important; }
.rh-pp-purchase .input-group-btn { background: rgba(255,255,255,0.04) !important; border-color: rgba(255,255,255,0.1) !important; color: rgba(255,255,255,0.6) !important; width: 38px !important; display: flex !important; align-items: center !important; justify-content: center !important; }
.rh-pp-purchase .input-group-btn:hover { background: rgba(255,255,255,0.08) !important; color: #fff !important; }
.rh-pp-purchase .input-group-btn svg { width: 14px !important; height: 14px !important; }
.rh-pp-purchase .form-control.text-center { font-size: 12px !important; color: var(--rh-text-muted) !important; background: rgba(0,226,248,0.04) !important; border-color: rgba(0,226,248,0.12) !important; max-width: unset !important; }

/* Addon */
.rh-pp-purchase .addon-item { background: rgba(255,255,255,0.03) !important; border: 0.5px solid rgba(255,255,255,0.08) !important; border-radius: 10px !important; }
.rh-pp-purchase .addon-item .fw-medium { font-size: 13px !important; color: #ffffff !important; }
.rh-pp-purchase .addon-item .small.text-muted { white-space: normal !important; font-size: 12px !important; color: var(--rh-text-muted) !important; line-height: 1.5 !important; }
.rh-pp-purchase .btn-addon-add { background: rgba(0,226,248,0.1) !important; border: 0.5px solid rgba(0,226,248,0.25) !important; color: var(--rh-brand) !important; border-radius: 999px !important; font-size: 12px !important; padding: 5px 14px !important; white-space: nowrap !important; font-weight: 500 !important; }
.rh-pp-purchase .btn-addon-add:hover { background: rgba(0,226,248,0.18) !important; }
.rh-pp-purchase .btn-addon-remove { background: rgba(239,68,68,0.08) !important; border: 0.5px solid rgba(239,68,68,0.2) !important; color: #f87171 !important; border-radius: 999px !important; font-size: 12px !important; padding: 5px 14px !important; white-space: nowrap !important; font-weight: 500 !important; }

/* Buy Now = big primary cyan (like Resilia's big green button) */
.rh-pp-purchase .btn-outline-primary:not(.input-group-btn) {
  background: var(--rh-brand) !important; border-color: var(--rh-brand) !important;
  color: #07070f !important; font-weight: 700 !important; border-radius: 10px !important;
  padding: 14px !important; font-size: 15px !important; width: 100% !important;
  letter-spacing: 0.01em !important; transition: background 0.2s !important;
}
.rh-pp-purchase .btn-outline-primary:not(.input-group-btn):hover { background: #00c8de !important; }

/* Add to Cart = subtle secondary */
.rh-pp-purchase .btn-primary:not(.variant):not(.input-group-btn) {
  background: transparent !important; border: 1.5px solid rgba(255,255,255,0.15) !important;
  color: rgba(255,255,255,0.65) !important; font-weight: 500 !important; border-radius: 10px !important;
  padding: 13px !important; font-size: 14px !important; width: 100% !important;
  transition: background 0.2s, color 0.2s !important;
}
.rh-pp-purchase .btn-primary:not(.variant):not(.input-group-btn):hover { background: rgba(255,255,255,0.06) !important; color: #fff !important; }

.rh-pp-purchase .text-danger { color: #f87171 !important; font-size: 12px !important; }

/* ── Below fold ── */
.rh-pp-below { background: #080810; }

.rh-pp-section-title {
  font-size: clamp(20px, 2.5vw, 28px) !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 0 1.75rem 0 !important;
  text-align: center !important;
}

/* Trust section */
.rh-pp-trust-section {
  padding: 4rem 2rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}

.rh-pp-trust-section__inner {
  max-width: min(92vw, 920px);
  margin: 0 auto;
}

.rh-pp-compare-plans {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(120px, 0.65fr) minmax(140px, 0.78fr);
  background: linear-gradient(145deg, rgba(255,255,255,0.032), rgba(255,255,255,0.014));
  border: 1px solid rgba(255,255,255,0.075);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.16);
}

.rh-pp-compare-head,
.rh-pp-compare-row {
  display: contents;
}

.rh-pp-compare-head > div,
.rh-pp-compare-row > div {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.055);
}

.rh-pp-compare-row:last-child > div {
  border-bottom: 0;
}

.rh-pp-compare-head__feature,
.rh-pp-compare-head__plan {
  background: rgba(255,255,255,0.025);
  color: rgba(255,255,255,0.38);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rh-pp-compare-head__plan {
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.055);
}

.rh-pp-compare-head__plan span {
  display: block;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
  letter-spacing: 0.03em;
}

.rh-pp-compare-head__plan small {
  display: block;
  margin-top: 3px;
  color: rgba(255,255,255,0.32);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}

.rh-pp-compare-head__plan--premium {
  background:
    radial-gradient(circle at 50% 0%, rgba(0,226,248,0.14), transparent 72%),
    rgba(0,226,248,0.045);
  color: var(--rh-brand);
}

.rh-pp-compare-head__plan--premium span,
.rh-pp-compare-head__plan--premium small {
  color: var(--rh-brand);
}

.rh-pp-compare-feature span {
  display: block;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
}

.rh-pp-compare-feature small {
  display: block;
  margin-top: 3px;
  color: var(--rh-text-muted);
  font-size: 12px;
  line-height: 1.45;
}

.rh-pp-compare-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-align: center;
  border-left: 1px solid rgba(255,255,255,0.055);
  font-size: 12px;
  font-weight: 700;
}

.rh-pp-compare-value::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
}

.rh-pp-compare-value--yes {
  color: rgba(255,255,255,0.9);
  background: rgba(0,226,248,0.035);
}

.rh-pp-compare-value--yes::before {
  background-color: rgba(0,226,248,0.13);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300e2f8' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  box-shadow: 0 0 16px rgba(0,226,248,0.14);
}

.rh-pp-compare-value--no {
  color: rgba(255,255,255,0.34);
}

.rh-pp-compare-value--no::before {
  background-color: rgba(255,255,255,0.055);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-opacity='0.42' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 18L18 6M6 6l12 12'/%3E%3C/svg%3E");
}

.rh-pp-compare-value--muted {
  background: transparent;
  color: rgba(255,255,255,0.56);
}

.rh-pp-trust-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0,226,248,0.08);
  border: 0.5px solid rgba(0,226,248,0.18);
  color: var(--rh-brand);
  display: flex; align-items: center; justify-content: center;
}

.rh-pp-trust-card__name {
  font-size: 13.5px !important; font-weight: 700 !important;
  color: #ffffff !important; margin: 0 !important;
}

.rh-pp-trust-card__desc {
  font-size: 12px !important;
  color: var(--rh-text-muted) !important;
  margin: 0 !important; line-height: 1.5 !important;
}

/* Stats */
.rh-pp-stats {
  background: linear-gradient(135deg, #080814, #0a0a18);
  padding: 3rem 2rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}

.rh-pp-stats__inner {
  max-width: min(92vw, 1100px);
  margin: 0 auto;
}

.rh-pp-games-strip {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rh-pp-games-strip__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.065);
}

.rh-pp-games-strip__eyebrow {
  display: block;
  color: var(--rh-brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.rh-pp-games-strip__head h2 {
  font-size: clamp(18px, 2.2vw, 26px) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 !important;
}

.rh-pp-games-strip__link {
  color: rgba(255,255,255,0.62) !important;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
  transition: color 0.2s;
}

.rh-pp-games-strip__link:hover { color: var(--rh-brand) !important; }

.rh-pp-games-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(180px, 205px);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,226,248,0.35) transparent;
}

.rh-pp-games-row .rh-game-card {
  min-width: 180px;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}

.rh-pp-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 1rem;
}

.rh-pp-stat__num {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--rh-brand);
  letter-spacing: -0.02em;
  line-height: 1;
}

.rh-pp-stat__label {
  font-size: 12px;
  color: var(--rh-text-muted);
  font-weight: 500;
  text-align: center;
}

.rh-pp-stat__divider {
  width: 0.5px;
  height: 40px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

/* Reviews */
.rh-pp-reviews {
  padding: 4rem 2rem;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}

.rh-pp-reviews__inner {
  max-width: min(92vw, 960px);
  margin: 0 auto;
}

.rh-pp-reviews__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 2.5rem;
}

.rh-pp-reviews__sub {
  font-size: 14px !important;
  color: var(--rh-text-muted) !important;
  margin: 0 !important;
  text-align: center !important;
}

.rh-pp-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.rh-pp-review-card {
  background: #0c0c16;
  border: 0.5px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.rh-pp-review-card--link {
  color: inherit !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.rh-pp-review-card--link:hover {
  transform: translateY(-2px);
  border-color: rgba(0,226,248,0.22);
  background: #0f0f1c;
}

.rh-pp-review-card__stars { color: #fbbf24; font-size: 13px; letter-spacing: 1px; }

.rh-pp-review-card__text {
  font-size: 13.5px !important;
  color: rgba(255,255,255,0.75) !important;
  margin: 0 !important;
  line-height: 1.65 !important;
  flex: 1 !important;
}

.rh-pp-review-card__author { display: flex; align-items: center; gap: 10px; margin-top: auto; }

.rh-pp-review-card__avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(0,226,248,0.12);
  border: 0.5px solid rgba(0,226,248,0.2);
  color: var(--rh-brand);
  font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.rh-pp-review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rh-pp-review-card__name { font-size: 13px !important; font-weight: 600 !important; color: #ffffff !important; margin: 0 !important; }
.rh-pp-review-card__verified { font-size: 11px !important; color: #4ade80 !important; margin: 0 !important; }
.rh-pp-review-card__proof {
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(0,226,248,0.08);
  border: 0.5px solid rgba(0,226,248,0.2);
  color: var(--rh-brand);
  font-weight: 700;
}

/* FAQ section */
.rh-pp-faq-section {
  padding: 4rem 2rem 5rem;
}

.rh-pp-faq-section__inner {
  max-width: min(92vw, 720px);
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 900px) {
  .rh-pp-fold__inner {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .rh-pp-carousel__main { aspect-ratio: 16 / 9; }
  .rh-pp-purchase { position: static; }
  .rh-pp-compare-plans { grid-template-columns: minmax(0, 1.2fr) minmax(104px, 0.65fr) minmax(120px, 0.75fr); }
  .rh-pp-review-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .rh-pp-fold { padding: 2rem 1.25rem; }
  .rh-pp-tiles { grid-template-columns: 1fr 1fr; }
  .rh-pp-trust-section,
  .rh-pp-stats { padding-left: 1.25rem; padding-right: 1.25rem; }
  .rh-pp-games-strip__head { align-items: flex-start; flex-direction: column; gap: 0.75rem; }
  .rh-pp-games-strip__link { white-space: normal; }
  .rh-pp-games-row { grid-auto-columns: minmax(165px, 72vw); }
  .rh-pp-compare-plans {
    display: flex;
    flex-direction: column;
  }
  .rh-pp-compare-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .rh-pp-compare-head__feature {
    display: none;
  }
  .rh-pp-compare-head__plan {
    border-left: 0;
    padding: 13px 10px;
  }
  .rh-pp-compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .rh-pp-compare-row > div {
    border-bottom: 0;
  }
  .rh-pp-compare-feature {
    grid-column: 1 / -1;
    padding: 14px 14px 8px !important;
  }
  .rh-pp-compare-value {
    justify-content: flex-start;
    border-left: 0;
    padding: 8px 14px 14px !important;
  }
  .rh-pp-compare-value:nth-child(3) {
    border-left: 1px solid rgba(255,255,255,0.055);
  }
}

/* Product media balance */
.rh-pp-fold {
  padding: clamp(2rem, 4vw, 4rem) clamp(1.25rem, 4vw, 3rem) clamp(2rem, 3vw, 3rem);
}

.rh-pp-fold__inner {
  max-width: min(94vw, 1220px) !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: clamp(1.5rem, 3vw, 2.75rem) !important;
  align-items: stretch !important;
}

.rh-pp-visual {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  min-height: 100%;
  justify-content: flex-start;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.rh-pp-carousel {
  flex: 0 0 auto;
  width: 100%;
  gap: 0 !important;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 20%, rgba(0,226,248,0.18), transparent 42%),
    linear-gradient(145deg, #10101f 0%, #080812 58%, #0a1320 100%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  box-shadow:
    0 28px 90px rgba(0,0,0,0.36),
    0 0 44px rgba(0,226,248,0.07),
    inset 0 1px 0 rgba(255,255,255,0.055);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.rh-pp-carousel:hover {
  transform: translateY(-2px);
  border-color: rgba(0,226,248,0.18);
  box-shadow:
    0 34px 105px rgba(0,0,0,0.42),
    0 0 58px rgba(0,226,248,0.11),
    inset 0 1px 0 rgba(255,255,255,0.065);
}

.rh-pp-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), transparent 18%),
    radial-gradient(circle at 14% 10%, rgba(255,255,255,0.08), transparent 24%);
  opacity: 0.78;
}

.rh-pp-carousel__main {
  flex: 0 0 auto;
  aspect-ratio: 4 / 3 !important;
  min-height: clamp(390px, 39vw, 560px);
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.rh-pp-carousel__img {
  object-fit: cover !important;
  transform: scale(1.001);
  transition: opacity 0.32s ease, transform 0.5s ease, filter 0.5s ease !important;
  filter: saturate(1.04) contrast(1.03);
}

.rh-pp-carousel:hover .rh-pp-carousel__img--show {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.05);
}

.rh-pp-carousel__thumbs {
  flex: 0 0 auto;
  gap: 8px !important;
  align-items: center;
  padding: 9px 10px;
  background: linear-gradient(180deg, rgba(9,9,18,0.42), rgba(9,9,18,0.86));
  border-top: 1px solid rgba(255,255,255,0.065);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 3;
}

.rh-pp-carousel__thumb {
  width: 76px !important;
  height: 52px !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.105) !important;
  border-radius: 8px !important;
  opacity: 0.66;
  transition: transform 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease !important;
}

.rh-pp-carousel__thumb:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  border-color: rgba(0,226,248,0.28) !important;
}

.rh-pp-carousel__thumb--active {
  opacity: 1;
  border-color: rgba(0,226,248,0.78) !important;
  box-shadow: 0 0 0 1px rgba(0,226,248,0.2), 0 0 18px rgba(0,226,248,0.16);
}

.rh-pp-tiles {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0 !important;
  margin-top: 0;
  padding: 2px 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  position: relative;
}

.rh-pp-tiles::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2px;
  right: 2px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,226,248,0.22), rgba(255,255,255,0.08), transparent);
  opacity: 0.9;
}

.rh-pp-tile {
  min-height: 48px;
  gap: 9px !important;
  padding: 12px 14px 10px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: rgba(255,255,255,0.72) !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  line-height: 1.25;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.2s ease, transform 0.2s ease !important;
}

.rh-pp-tile:nth-child(odd)::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.09), transparent);
}

.rh-pp-tile:nth-child(n + 3)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.055), transparent);
}

.rh-pp-tile:hover {
  transform: translateX(2px);
  color: rgba(255,255,255,0.9) !important;
}

.rh-pp-tile svg {
  width: 18px;
  height: 18px;
  color: rgba(0,226,248,0.82) !important;
  opacity: 0.86;
  filter: drop-shadow(0 0 8px rgba(0,226,248,0.16));
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.rh-pp-tile:hover svg {
  color: var(--rh-brand) !important;
  opacity: 1;
  transform: scale(1.04);
}

.rh-pp-purchase {
  min-height: 100%;
  justify-content: center;
}

@media (max-width: 900px) {
  .rh-pp-fold__inner {
    grid-template-columns: 1fr !important;
    max-width: min(92vw, 760px) !important;
  }

  .rh-pp-visual {
    min-height: auto;
  }

  .rh-pp-carousel__main {
    aspect-ratio: 16 / 10 !important;
    min-height: clamp(320px, 60vw, 480px);
  }
}

@media (max-width: 560px) {
  .rh-pp-fold {
    padding: 1.5rem 1rem 2rem !important;
  }

  .rh-pp-visual {
    gap: 8px !important;
  }

  .rh-pp-carousel__main {
    aspect-ratio: 1 / 1 !important;
    min-height: 0 !important;
  }

  .rh-pp-carousel {
    border-radius: 16px;
  }

  .rh-pp-carousel__thumbs {
    padding: 7px 8px;
  }

  .rh-pp-carousel__thumb {
    width: 58px !important;
    height: 44px !important;
  }

  .rh-pp-tiles {
    grid-template-columns: 1fr !important;
    padding-top: 3px;
  }

  .rh-pp-tile {
    min-height: 44px;
    padding: 11px 4px !important;
    font-size: 12px !important;
  }

  .rh-pp-tile:nth-child(odd)::after {
    display: none;
  }

  .rh-pp-tile:nth-child(n + 2)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 4px;
    right: 4px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  }
}

/* ─────────────────────────────────────────
   LANDSCAPE MOBILE — horizontal orientation
───────────────────────────────────────── */

@media (max-width: 900px) and (orientation: landscape) {

  /* Navbar — tighter */
  .rh-nav__inner { padding: 0.5rem 0; }

  /* Hero — compress height */
  .rh-hero { min-height: auto !important; padding: 2rem 1.25rem !important; }
  .rh-hero__content { padding: 1.5rem 0 !important; }
  .rh-hero__title { font-size: clamp(22px, 4vw, 32px) !important; }

  /* Product page fold — single column, no height stretching */
  .rh-pp-fold__inner {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .rh-pp-carousel__main { min-height: 200px !important; max-height: 50vw !important; }

  .rh-pp-purchase { position: static !important; }

  /* Guide page */
  .rh-guide-body__inner { grid-template-columns: 1fr !important; }

  /* Games page */
  .rh-games-grid { grid-template-columns: repeat(3, 1fr) !important; }

  /* Modal — full height on landscape */
  .rh-game-modal {
    max-height: 96vh !important;
    border-radius: 12px !important;
  }

  /* FAQ */
  .rh-faq-grid { grid-template-columns: 1fr !important; }

  /* Blog */
  .rh-blog-grid { grid-template-columns: 1fr 1fr !important; }

  /* Footer */
  .rh-footer__inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
  }

  /* Supported games tiles */
  .rh-product-perks__grid { grid-template-columns: 1fr 1fr !important; }

  /* Below fold comparison */
  .rh-pp-compare-plans { grid-template-columns: minmax(0, 1.25fr) minmax(100px, 0.65fr) minmax(120px, 0.75fr) !important; }

  /* Supported games strip */
  .rh-pp-games-row { grid-auto-columns: minmax(170px, 190px) !important; }
}