/* PS5-inspired dark/blue rental catalog UI. Reuses the site's existing color tokens.
   Variables live on :root (not scoped to .rc-root) because the rent modal is mounted
   as a sibling of .rc-root, not a descendant of it. */
:root {
  --rc-bg: var(--_colors-2---bg-primary, #0a0a0f);
  --rc-panel: #1c1d20;
  --rc-panel-2: #232427;
  --rc-border: #ffffff2b;
  --rc-border-2: var(--_colors-2---border-subtle, #ffffff1f);
  --rc-text: var(--_colors-2---text-primary, #fff);
  --rc-text-2: var(--_colors-2---text-secondary, #ffffff80);
  --rc-text-3: var(--_colors-2---text-tertiary, #ffffff4d);
  --rc-blue: var(--base--blue, #2562ff);
  --rc-blue-glow: #2562ff33;
  --rc-green: #2fd876;
  --rc-red: #ff4d4f;
  --rc-amber: #ffab2e;
  --rc-purple: #a06bff;
}
[data-theme="light"] {
  --rc-bg: #f4f5f7;
  --rc-panel: #ffffff;
  --rc-panel-2: #eef0f3;
  --rc-border: #0000001f;
  --rc-border-2: #00000016;
  --rc-text: #0a0a0f;
  --rc-text-2: #3f3f48;
  --rc-text-3: #6b6b74;
}

.rc-theme-toggle {
  width: 34px; height: 34px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,.08); color: #fff; display: flex; align-items: center; justify-content: center;
  flex: none;
}
.rc-theme-toggle .rc-icon { width: 1.1rem; height: 1.1rem; }
.rc-theme-toggle .rc-theme-icon-moon { display: none; }
.rc-theme-toggle.is-light .rc-theme-icon-sun { display: none; }
.rc-theme-toggle.is-light .rc-theme-icon-moon { display: block; }
[data-theme="light"] .rc-theme-toggle { background: #00000012; color: #0a0a0f; }
.rc-root {
  color: var(--rc-text);
  font-family: var(--_typography---font-family--body);
}

.rc-icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.15em; stroke: currentColor; }
.rc-icon-lg { width: 1.4em; height: 1.4em; }
.rc-icon-xl { width: 2.2rem; height: 2.2rem; stroke: currentColor; }

.rc-howitworks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 1.5rem; }
.rc-howitworks-card { background: var(--rc-panel); border-radius: 1.25rem; padding: 2rem; }
.rc-howitworks-icon {
  width: 4rem; height: 4rem; border-radius: 50%; background: #fff; color: #0a0a0a;
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem;
}
.rc-howitworks-card h4 { font-family: var(--_typography---font-family--headers); font-size: 1.4rem; font-weight: 400; margin: 0 0 0.75rem; }
.rc-howitworks-card p { color: var(--rc-text-2); line-height: 1.5; margin: 0 0 1.25rem; }
.rc-howitworks-card ul { margin: 0; padding-left: 1.2rem; color: var(--rc-text-2); line-height: 1.8; }
.rc-howitworks-card strong { color: var(--rc-text); }

@media (max-width: 767px) {
  .rc-howitworks-grid { grid-template-columns: 1fr; }
}

.rc-guide-hero { max-width: 640px; margin-bottom: 2.5rem; }
.rc-guide-title { font-family: var(--_typography---font-family--headers); font-size: 2.75rem; font-weight: 400; margin: 0.5rem 0 1rem; line-height: 1.1; }
.rc-guide-intro { color: var(--rc-text-2); font-size: 1.05rem; line-height: 1.6; margin: 0 0 1.5rem; }
.rc-guide-cta {
  display: inline-block; background: #fff; color: #0a0a0a; font-weight: 800; text-decoration: none;
  padding: 0.9rem 1.6rem; border-radius: 999px; font-size: 0.95rem;
}
.rc-guide-cta:hover { filter: brightness(.92); }
/* when the CTA is the last element in a section (e.g. after the testimonials
   grid) it needs its own bottom margin -- stacked sections have no vertical
   gap of their own between them */
.rc-testi-grid + .rc-guide-cta { display: block; width: fit-content; margin-bottom: 3rem; }

.rc-guide-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.rc-guide-step { background: var(--rc-panel); border-radius: 1.25rem; padding: 1.5rem 1.75rem; position: relative; }
.rc-guide-step-num {
  position: absolute; top: 1.5rem; right: 1.75rem; width: 2rem; height: 2rem; border-radius: 50%;
  background: #fff; color: #0a0a0a; font-weight: 800; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.rc-guide-step h4 { font-family: var(--_typography---font-family--headers); font-size: 1.15rem; font-weight: 400; margin: 0 0 0.5rem; padding-right: 2.5rem; }
.rc-guide-step p { color: var(--rc-text-2); margin: 0; line-height: 1.5; }

/* FAQ-style accordion (native <details>/<summary>, zero JS) -- whole guide
   sections (Trophy vs Non-Trophy, PS5 Game Rental Philippines, Rental Rules)
   collapse under their own title. */
.rc-guide-section-accordion { border-bottom: 1px solid var(--rc-border); padding-bottom: 1.75rem; margin-bottom: 1.75rem; }
.rc-guide-section-accordion:last-of-type { border-bottom: none; }
.rc-guide-section-accordion > summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; margin: 0;
}
.rc-guide-section-accordion > summary::-webkit-details-marker { display: none; }
.rc-guide-section-accordion > summary::marker { content: ''; }
.rc-guide-section-accordion > summary:focus,
.rc-guide-section-accordion > summary:focus-visible { outline: none; }
.rc-guide-section-accordion > summary .rc-guide-title { margin: 0; }
.rc-accordion-chevron { flex: none; color: var(--rc-text-2); font-size: 1.5rem; line-height: 1; transition: transform 0.2s ease; }
.rc-guide-section-accordion[open] .rc-accordion-chevron { transform: rotate(180deg); }
.rc-guide-section-accordion > summary + * { margin-top: 1.75rem; }

.rc-guide-links { display: flex; gap: 1.5rem; }
.rc-guide-links a { color: var(--rc-text-2); text-decoration: underline; font-size: 0.9rem; }
.rc-guide-links a:hover { color: var(--rc-text); }

@media (max-width: 767px) {
  .rc-guide-steps { grid-template-columns: 1fr; }
  .rc-guide-title { font-size: 2rem; }
}

/* solid white, no border -- the site's buttons/selected states all share this look. */
.rc-frame-btn,
.rc-chip.is-active,
.rc-modal-cta {
  background: #fff;
  border: none;
  color: #0a0a0a;
}
/* in light mode a white "selected" filter chip would vanish against the page --
   use the brand blue instead so the active state stays visible. */
[data-theme="light"] .rc-chip.is-active {
  background: var(--rc-blue);
  color: #fff;
}
/* plan-tab/slot-option cards live inside modals, which are always a dark
   panel regardless of page theme (see .rc-modal) -- so their "selected"
   state is always blue-on-white, never theme-conditional. */
.rc-plan-tab.is-active,
.rc-slot-option.is-active {
  background: var(--rc-blue);
  color: #fff;
}
.rc-slot-option.is-active .rc-slot-option-price,
.rc-slot-option.is-active .rc-slot-option-amount { color: #fff; }
.rc-frame-btn:hover,
.rc-modal-cta:hover {
  filter: brightness(.92);
}

/* toolbar */
.rc-toolbar { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: stretch; margin-bottom: 1.25rem; }

.rc-search {
  position: relative; display: flex; align-items: center; flex: 1 1 260px; min-width: 220px;
  background: var(--rc-panel); border: 1px solid var(--rc-border-2); border-radius: 999px; padding: 0.3rem;
}
.rc-search-icon {
  flex: none; width: 2.4rem; height: 2.4rem; border-radius: 50%; border: none; cursor: default;
  background: #fff; color: #0a0a0a; display: flex; align-items: center; justify-content: center;
}
.rc-search input {
  flex: 1; width: 100%; box-sizing: border-box; padding: 0.5rem 1rem 0.5rem 0.75rem;
  border: none; background: transparent; color: var(--rc-text); font-size: 0.95rem; outline: none;
}
.rc-search input::placeholder { color: var(--rc-text-3); }
.rc-search-clear {
  flex: none; width: 1.7rem; height: 1.7rem; border-radius: 50%; border: none; cursor: pointer;
  background: var(--rc-panel-2); color: var(--rc-text-2); display: none; align-items: center; justify-content: center;
  margin-right: 0.3rem;
}
.rc-search-clear:hover { color: var(--rc-text); }
.rc-search.has-value .rc-search-clear { display: flex; }

.rc-filter-group {
  display: flex; align-items: stretch; background: var(--rc-panel); border: 1px solid var(--rc-border-2);
  border-radius: 999px; padding: 0 0.5rem;
}
.rc-filter-sep { width: 1px; margin: 0.6rem 0.4rem; background: rgba(255,255,255,.3); }
.rc-filter-seg { display: flex; flex-direction: column; justify-content: center; padding: 0.35rem 0.9rem; }
.rc-filter-label { font-size: 0.6rem; font-weight: 700; color: var(--rc-text-3); text-transform: uppercase; letter-spacing: .05em; }
.rc-filter-select {
  appearance: none; border: none; background: transparent; color: var(--rc-text);
  font-size: 0.88rem; font-weight: 700; cursor: pointer; padding: 0; margin-top: 0.1rem;
}
.rc-filter-select:focus { outline: none; }
.rc-filter-select option { background: #12141c; color: #fff; }
[data-theme="light"] .rc-filter-select option { background: #fff; color: #0a0a0f; }

.rc-chips {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; max-width: 100%;
}
.rc-chip {
  padding: 0.5rem 1rem; border-radius: 999px; border: none;
  background: var(--rc-panel); color: var(--rc-text-2); font-size: 0.8rem; font-weight: 700;
  cursor: pointer; transition: all .15s; letter-spacing: .01em; white-space: nowrap;
}
.rc-chip:hover:not(.is-active) { color: var(--rc-text); background: var(--rc-panel-2); }
.rc-chip.is-active { box-shadow: none; }

.rc-meta-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.rc-count { color: var(--rc-text-2); font-size: 0.88rem; }
.rc-count strong { color: var(--rc-text); }
.rc-live { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--rc-text-2); text-transform: uppercase; letter-spacing: .08em; }
.rc-live-dot { display: none; }
@keyframes rc-pulse { 0% { box-shadow: 0 0 0 0 rgba(47,216,118,.55); } 70% { box-shadow: 0 0 0 6px rgba(47,216,118,0); } 100% { box-shadow: 0 0 0 0 rgba(47,216,118,0); } }

/* coming soon strip */
#rcComingSoonSection {
  background: linear-gradient(135deg, #123b8f 0%, var(--rc-blue) 100%);
  border-radius: 0; padding: 1.5rem 1.75rem 2.25rem; margin-top: 1.25rem; margin-bottom: 2.5rem;
}
#rcComingSoonSection .rc-section-label { margin-top: 0; }
#rcComingSoonSection .rc-eyebrow,
#rcComingSoonSection .rc-section-label h3 { color: #fff; }
#rcComingSoonSection .rc-section-sub { color: rgba(255,255,255,.75); }

#rcTestimonials {
  background: linear-gradient(135deg, #123b8f 0%, var(--rc-blue) 100%);
  border-radius: 1.5rem; padding: 2rem 1.75rem 1.5rem; margin-top: 1.75rem; margin-bottom: 2.5rem;
}
#rcTestimonials .rc-section-label { margin-top: 0; }
#rcTestimonials .rc-eyebrow,
#rcTestimonials .rc-section-label h3 { color: #fff; }
#rcTestimonials .rc-section-sub { color: rgba(255,255,255,.75); }
#rcTestimonials .rc-testi-grid + .rc-guide-cta { margin-bottom: 0; }

.rc-section-label { display: flex; align-items: baseline; gap: 0.6rem; margin: 2.5rem 0 0.9rem; }
.rc-section-label .rc-eyebrow { font-size: 0.72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--rc-blue); }
.rc-section-label h3 { margin: 0; font-family: var(--_typography---font-family--headers); font-weight: 400; font-size: 1.4rem; }
.rc-section-sub { color: var(--rc-text-2); font-size: 0.85rem; margin: 0 0 1.1rem; }

.rc-strip-wrap { position: relative; }
.rc-strip {
  display: flex; gap: 1rem; overflow-x: auto; padding: 0 0 0.75rem; scroll-snap-type: none; cursor: grab;
  scrollbar-width: none;
}
.rc-strip.is-dragging { cursor: grabbing; user-select: none; scroll-behavior: auto; }
.rc-strip::-webkit-scrollbar { display: none; }

.rc-strip-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 42px; height: 42px; border-radius: 50%;
  background: #fff; color: #0a0a0a; border: none; display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 6px 18px rgba(0,0,0,.45); z-index: 4;
  transition: background-color .15s, transform .15s, opacity .2s;
  opacity: 0; pointer-events: none;
}
.rc-strip-nav:hover { background: #e6e6e6; }
.rc-strip-nav:active { transform: translateY(-50%) scale(.94); }
.rc-strip-nav-prev { left: 0; }
.rc-strip-nav-next { right: 0; }
.rc-strip-wrap.can-scroll-left .rc-strip-nav-prev,
.rc-strip-wrap.can-scroll-right .rc-strip-nav-next {
  opacity: 1; pointer-events: auto;
}

.rc-soon-card {
  position: relative; flex: 0 0 280px; border-radius: 1rem;
  overflow: hidden; background: linear-gradient(180deg, #0a0a0a 0%, #1a233f 100%); border: none;
  cursor: pointer; transition: transform .18s, box-shadow .18s;
  display: flex; flex-direction: column;
  /* card art is always dark navy regardless of page theme -- pin its own text tokens so titles/prices stay readable in light mode. */
  --rc-text: #fff; --rc-text-2: #ffffff80; --rc-text-3: #ffffff4d;
}
[data-theme="light"] .rc-soon-card {
  background: #fff;
  --rc-text: #0a0a0f; --rc-text-2: #3f3f48; --rc-text-3: #6b6b74;
}
.rc-soon-card:hover { transform: translateY(-3px); box-shadow: 0 0 0 2px var(--rc-blue); }
.rc-soon-cover { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; background: #1c1e28; }
.rc-soon-card .rc-card-cover-wrap::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 40%; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,0) 100%); pointer-events: none;
}
.rc-soon-body { padding: 0.75rem 0.85rem 0.9rem; display: flex; flex-direction: column; flex: 1; }
.rc-soon-title { color: var(--rc-text); font-size: 0.92rem; font-weight: 700; line-height: 1.25; margin: 0 0 0.3rem; min-height: 2.5em; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }
.rc-soon-date { font-size: 0.76rem; font-weight: 600; color: var(--rc-text-2); margin: 0.3rem 0 0; }
.rc-soon-prices { display: flex; gap: 0.5rem; font-size: 0.88rem; font-weight: 600; color: var(--rc-text-2); }
.rc-soon-prices b { color: var(--rc-text); font-size: 1rem; }

/* badges */
.rc-badge {
  position: absolute; left: 0.5rem; top: 0.5rem; z-index: 2; padding: 0.28rem 0.55rem; border-radius: 999px;
  font-size: 0.58rem; font-weight: 900; letter-spacing: .04em; text-transform: uppercase;
  background: rgba(10,10,15,.9); color: #fff; white-space: nowrap; box-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.rc-badge-upcoming { background: #fff; color: #0a0a0a; }
.rc-badge-waitlist { background: #8f2732; }
.rc-badge-trophyfull { background: #ac500f; }
.rc-badge-limited { background: #b66f16; }
.rc-badge-demand { background: #bb311c; }
.rc-badge-popular { background: #26262e; }

.rc-count-badge {
  position: absolute; right: 0.5rem; top: 0.5rem; z-index: 2; width: 26px; height: 26px;
  border-radius: 50%; background: #fff; color: #0a0a0a; font-size: 0.78rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
}

/* main grid */
.rc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 1.1rem; }
.rc-card {
  position: relative; border-radius: 1rem; overflow: hidden;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a233f 100%);
  border: none; cursor: pointer; transition: transform .18s, box-shadow .18s;
  display: flex; flex-direction: column;
  /* card art is always dark navy regardless of page theme -- pin its own text tokens so titles/prices stay readable in light mode. */
  --rc-text: #fff; --rc-text-2: #ffffff80; --rc-text-3: #ffffff4d;
}
[data-theme="light"] .rc-card {
  background: #fff;
  --rc-text: #0a0a0f; --rc-text-2: #3f3f48; --rc-text-3: #6b6b74;
}
.rc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px -12px var(--rc-blue-glow); }
.rc-card-cover-wrap { position: relative; overflow: hidden; border-radius: inherit; }
.rc-card-cover-wrap::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 35%; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 100%); pointer-events: none;
}
.rc-card-cover-wrap::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 45%; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.75) 100%); pointer-events: none;
}
.rc-card-cover { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; background: #1c1e28; }
.rc-card-body { padding: 0.75rem 0.8rem 0.85rem; display: flex; flex-direction: column; flex: 1; }
.rc-card-top { display: flex; flex-direction: column; gap: 0.3rem; }
.rc-card-bottom { margin-top: auto; padding-top: 0.6rem; display: flex; flex-direction: column; gap: 0.5rem; }
.rc-card-title { color: var(--rc-text); font-size: 0.88rem; font-weight: 700; line-height: 1.25; margin: 0; min-height: 2.5em; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }
.rc-card-genre { font-size: 0.68rem; font-weight: 700; color: var(--rc-text-3); text-transform: uppercase; letter-spacing: .04em; }
.rc-plat-badge {
  display: inline-flex; align-items: stretch; border-radius: 999px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.35); font-family: Playstation, Arial, sans-serif;
  font-size: 0.62rem; line-height: 1; width: fit-content; margin: 0.1rem 0;
}
.rc-plat-seg { padding: 0.3rem 0.55rem; display: flex; align-items: center; white-space: nowrap; }
.rc-plat-primary { background: #fff; color: #0a0a0a; }
[data-theme="light"] .rc-plat-badge { border-color: rgba(10,10,15,.35); }
[data-theme="light"] .rc-plat-primary { background: #0a0a0f; color: #fff; }
.rc-plat-secondary { background: #0a0a0a; color: #fff; }
.rc-plat-primary:not(.rc-plat-solo) { clip-path: polygon(0 0, 100% 0, 82% 100%, 0% 100%); padding-right: 0.85rem; margin-right: -0.35rem; }

.rc-slot-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.7rem; gap: 0.4rem; }
.rc-slot-label { display: flex; align-items: center; gap: 0.3rem; font-weight: 600; color: var(--rc-text-2); }
.rc-slot-status {
  font-weight: 800; letter-spacing: .03em; text-transform: uppercase; font-size: 0.62rem;
  display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.12rem 0.4rem; border-radius: 999px;
}
.rc-dot { display: none; }
/* dedicated (darker-than-token) shades so white text keeps solid contrast --
   the raw --rc-green/--rc-amber etc tokens are tuned for text-on-dark, too
   light/bright to hold white text on their own as a solid pill fill. */
.rc-status-available { color: #fff; background: #1f9d57; }
.rc-status-full { color: #fff; background: #d63b3d; }
.rc-status-open { color: #fff; background: #2054d9; }
.rc-status-limited { color: #fff; background: #c9791a; }
.rc-status-priority { color: #fff; background: #8347e0; }
.rc-status-closed { color: #fff; background: #6b6b74; }

.rc-price-row { display: flex; gap: 0.4rem; padding-top: 0.4rem; }
.rc-price-box { flex: 1; text-align: center; padding: 0.4rem 0.2rem; border-radius: 0.5rem; background: #0a0a0a; }
[data-theme="light"] .rc-price-box { background: #eef0f3; }
.rc-price-box .rc-price-label { display: block; font-size: 0.6rem; font-weight: 700; color: var(--rc-text-2); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 0.1rem; }
.rc-price-box .rc-price-value { font-size: 1.02rem; font-weight: 800; color: var(--rc-text); }

.rc-empty { text-align: center; padding: 3rem 1rem; color: var(--rc-text-2); }
.rc-empty .rc-icon-lg { margin-bottom: 0.5rem; color: var(--rc-text-3); }

.rc-pagination { display: flex; align-items: center; justify-content: center; gap: 0.4rem; margin-top: 2rem; flex-wrap: wrap; }
.rc-page-btn {
  min-width: 2.4rem; height: 2.4rem; padding: 0 0.6rem; border-radius: 999px; border: none;
  background: var(--rc-panel); color: var(--rc-text); font-weight: 700; font-size: 0.85rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.rc-page-btn:hover:not(:disabled):not(.is-active) { color: var(--rc-text); background: var(--rc-panel-2); }
.rc-page-btn.is-active { background: var(--rc-blue); color: #fff; border-color: var(--rc-blue); }
.rc-page-btn:disabled { opacity: .35; cursor: not-allowed; }
.rc-page-ellipsis { color: var(--rc-text-3); padding: 0 0.2rem; }

/* modal */
.rc-modal-overlay {
  position: fixed; inset: 0; background: rgba(5,5,8,.72); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; z-index: 10050; padding: 0.75rem;
  opacity: 0; pointer-events: none; transition: opacity .18s;
}
.rc-modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.rc-modal {
  width: 100%; max-width: 560px; max-height: 95vh; overflow-y: auto; overflow-x: hidden; overscroll-behavior: contain;
  /* the rent/swap modal panel is dark navy in dark mode, and a light grey
     panel with dark text in light mode -- pinned locally (not following
     --rc-bg/--rc-text directly) so the genre line/sub-copy can be tuned
     brighter than the sitewide dark-mode secondary-text opacity, per
     feedback that they read too greyish against the cover-art gradient. */
  background: linear-gradient(165deg, #131a2e 0%, #0a0b10 55%, #050506 100%);
  --rc-text: #fff; --rc-text-2: rgba(255,255,255,.82); --rc-text-3: rgba(255,255,255,.6);
  /* also pin the panel/border tokens -- inner choice/plan/access cards use
     var(--rc-panel) for their own dark-mode-default styling, distinct from
     this outer panel's background (see the plan/choice card rules below). */
  --rc-panel: #1c1d20; --rc-panel-2: #232427; --rc-border: #ffffff2b; --rc-border-2: #ffffff1f;
  color: var(--rc-text);
  border: 1px solid var(--rc-border-2); border-radius: 1.25rem; position: relative;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(37,98,255,.08);
  transform: translateY(12px); transition: transform .18s;
  scrollbar-width: thin; scrollbar-color: #fff transparent;
}
.rc-modal::-webkit-scrollbar { width: 7px; }
.rc-modal::-webkit-scrollbar-track { background: transparent; }
.rc-modal::-webkit-scrollbar-thumb { background: #fff; border-radius: 999px; }
.rc-modal::-webkit-scrollbar-thumb:hover { background: #e2e2e2; }
[data-theme="light"] .rc-modal {
  background: #eef0f3;
  --rc-text: #0a0a0f; --rc-text-2: #3f3f48; --rc-text-3: #6b6b74;
  --rc-panel: #fff; --rc-panel-2: #f5f6f8; --rc-border: #0000001f; --rc-border-2: #00000016;
  scrollbar-color: #b7b9c0 transparent;
}
[data-theme="light"] .rc-modal::-webkit-scrollbar-thumb { background: #b7b9c0; }
[data-theme="light"] .rc-modal::-webkit-scrollbar-thumb:hover { background: #9a9ca4; }
.rc-modal-overlay.is-open .rc-modal { transform: translateY(0); }
.rc-modal-close {
  position: absolute; right: 0.9rem; top: 0.9rem; z-index: 3; width: 34px; height: 34px; border-radius: 50%;
  background: #0a0a0a; border: 1px solid var(--rc-border-2); color: #fff; display: flex;
  align-items: center; justify-content: center; cursor: pointer;
}
.rc-modal-share {
  /* hidden for now -- feature stays wired, just not exposed in the UI yet */
  display: none;
  position: absolute; right: 3.4rem; top: 0.9rem; z-index: 3; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(10,10,15,.7); border: 1px solid var(--rc-border-2); color: #fff;
  align-items: center; justify-content: center; cursor: pointer;
}
.rc-modal-share:hover, .rc-modal-close:hover { background: rgba(10,10,15,.9); }
.rc-modal-share .rc-icon, .rc-modal-close .rc-icon { width: 16px; height: 16px; }

/* full-screen sheet on mobile, PS5-app style -- close/share stay fixed
   to the viewport so they never scroll out of reach behind the cards. */
@media (max-width: 700px) {
  .rc-modal-overlay { padding: 0; align-items: stretch; }
  .rc-modal-overlay .rc-modal {
    max-width: none; width: 100%; height: 100%; max-height: 100%;
    border: none; border-radius: 0; box-shadow: none;
    transform: translateY(100%); transition: transform .3s cubic-bezier(.16,1,.3,1);
  }
  .rc-modal-overlay.is-open .rc-modal { transform: translateY(0); }
  .rc-modal-close, .rc-modal-share { position: fixed; top: 0.85rem; }
  .rc-modal-close { right: 0.85rem; }
  .rc-modal-share { right: 3.35rem; }
  .rc-modal-body, .rc-popup-modal-body { padding-top: 3.6rem; }

  /* wizard steps (plan/access) hide the cover on desktop, but on a
     full-screen mobile sheet a bare gradient looks too empty -- bring
     back a short header cover, faded into the gradient below it. */
  .rc-modal-compact .rc-modal-cover {
    display: block !important; height: 150px; aspect-ratio: auto; object-fit: cover;
  }
  .rc-modal-compact .rc-modal-body {
    margin-top: -2.5rem; padding-top: 3.5rem;
    background: linear-gradient(180deg, rgba(10,11,16,0) 0%, rgba(10,11,16,.9) 45%, #0a0b10 75%);
  }
  [data-theme="light"] .rc-modal-compact .rc-modal-body {
    background: linear-gradient(180deg, rgba(238,240,243,0) 0%, rgba(238,240,243,.9) 45%, #eef0f3 75%);
  }
}

/* share card modal */
.rc-share-sub { color: var(--rc-text-2); font-size: 0.85rem; margin: 0 0 1rem; line-height: 1.5; }
.rc-share-preview { border-radius: 1rem; overflow: hidden; margin-bottom: 1rem; background: #0a0a0a; }
.rc-share-preview canvas { width: 100%; height: auto; display: block; }
.rc-share-summary {
  background: var(--rc-panel); border-radius: 1rem; padding: 1rem 1.1rem; margin-bottom: 1rem;
  font-size: 0.85rem; line-height: 1.6; color: var(--rc-text);
}
.rc-share-summary .rc-icon { width: 14px; height: 14px; vertical-align: -2px; }
.rc-share-summary p { margin: 0.6rem 0 0; color: var(--rc-text-2); font-size: 0.78rem; }
.rc-share-summary a { color: var(--rc-blue); word-break: break-all; }
.rc-share-main-btn { background: var(--rc-blue); color: #fff; border: none; margin-bottom: 0.6rem; }
.rc-share-main-btn:hover:not(:disabled) { filter: brightness(1.08); }
.rc-share-main-btn:disabled { opacity: .5; cursor: not-allowed; }
.rc-share-btn-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.rc-share-btn {
  background: var(--rc-panel-2); color: var(--rc-text); border: none; border-radius: 999px; padding: 0.75rem;
  font-weight: 800; font-size: 0.78rem; cursor: pointer;
}
.rc-share-btn:hover:not(:disabled) { background: var(--rc-panel); }
.rc-share-btn:disabled { opacity: .5; cursor: not-allowed; }
.rc-share-status { text-align: center; font-size: 0.75rem; color: var(--rc-blue); font-weight: 700; min-height: 1.1rem; margin: 0.6rem 0 0; }
.rc-modal-cover { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; background: #1c1e28; }
.rc-modal-body {
  position: relative; margin-top: -3rem; padding: 2.5rem 1.4rem 1.5rem; border-radius: 1.1rem 1.1rem 0 0;
  background: linear-gradient(180deg, rgba(8,9,14,0) 0%, rgba(8,9,14,.75) 28%, rgba(8,9,14,.94) 100%);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
}
[data-theme="light"] .rc-modal-body {
  background: linear-gradient(180deg, rgba(238,240,243,0) 0%, rgba(238,240,243,.8) 28%, rgba(238,240,243,.96) 100%);
}

/* compact wizard steps (plan/access): a short header cover (not the
   full hero-height cover) fading into the blue-black gradient body,
   so there's still a visual anchor without the step needing to scroll. */
.rc-modal-compact .rc-modal-cover { display: block; height: 130px; aspect-ratio: auto; object-fit: cover; }
.rc-modal-compact { background: linear-gradient(165deg, #131a2e 0%, #0a0b10 55%, #050506 100%); }
.rc-modal-compact .rc-modal-body {
  position: relative; z-index: 1; margin-top: -2.25rem; padding: 3.25rem 1.3rem 0.95rem; border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(19,26,46,0) 0%, rgba(15,20,35,.92) 45%, rgba(10,11,16,.98) 75%);
}
[data-theme="light"] .rc-modal-compact { background: #eef0f3; }
[data-theme="light"] .rc-modal-compact .rc-modal-body {
  background: linear-gradient(180deg, rgba(238,240,243,0) 0%, rgba(238,240,243,.92) 45%, rgba(238,240,243,.98) 75%);
}
.rc-modal-title { color: var(--rc-text); font-family: var(--_typography---font-family--headers); font-size: 1.6rem; font-weight: 400; margin: 0 0 0.2rem; }
.rc-modal-genre { color: var(--rc-text-2); font-size: 0.82rem; font-weight: 600; margin-bottom: 1rem; }

/* plan-tab/slot-option/choice cards: original dark-grey panel look in dark
   mode (using the modal's own pinned --rc-panel/--rc-text, see .rc-modal),
   switched to plain white cards with dark text in light mode -- otherwise
   they'd stay dark-on-dark against the light page (or, if left following
   the page theme directly, white-on-white against the always-dark modal). */
.rc-plan-tabs { display: flex; gap: 0.5rem; margin-bottom: 0.85rem; }
.rc-plan-tab {
  flex: 1; padding: 0.6rem; border-radius: 999px; border: none; background: var(--rc-panel);
  color: var(--rc-text-2); font-weight: 700; font-size: 0.82rem; cursor: pointer; text-align: center;
}
.rc-plan-tab.is-active { box-shadow: 0 4px 14px -4px rgba(0,0,0,.5); }
[data-theme="light"] .rc-plan-tab { background: #fff; color: #3f3f48; }

.rc-slot-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-bottom: 1.1rem; }
.rc-slot-option {
  border: none; border-radius: 0.8rem; padding: 0.7rem 0.75rem; background: var(--rc-panel);
  cursor: pointer; text-align: left; color: var(--rc-text);
}
.rc-slot-option.is-active { box-shadow: 0 4px 14px -4px rgba(0,0,0,.5); }
.rc-slot-option.is-disabled { opacity: .45; cursor: not-allowed; }
.rc-slot-option-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.3rem; }
.rc-slot-option-name { display: flex; align-items: center; gap: 0.35rem; font-weight: 700; font-size: 0.85rem; }
.rc-slot-option-price { font-size: 0.72rem; color: var(--rc-text-2); }
.rc-slot-option-amount { font-size: 1rem; font-weight: 800; color: var(--rc-text); }
[data-theme="light"] .rc-slot-option { background: #fff; color: #0a0a0f; }
[data-theme="light"] .rc-slot-option-price { color: #3f3f48; }
[data-theme="light"] .rc-slot-option-amount { color: #0a0a0f; }

.rc-modal-cta {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%;
  padding: 0.9rem; border-radius: 999px; font-weight: 800;
  font-size: 0.9rem; text-transform: uppercase; letter-spacing: .04em; cursor: pointer;
  text-decoration: none;
}
.rc-modal-note { font-size: 0.72rem; color: var(--rc-text-3); text-align: center; margin-top: 0.4rem; line-height: 1.35; }

/* rental wizard: intent -> plan -> access */
.rc-wizard-back {
  display: inline-flex; align-items: center; gap: 0.3rem; background: #fff; border: none; color: #0a0a0a;
  font-size: 0.72rem; font-weight: 800; cursor: pointer; padding: 0.45rem 0.9rem 0.45rem 0.7rem;
  border-radius: 999px; text-transform: uppercase; letter-spacing: .03em; margin-bottom: 0.9rem;
}
.rc-wizard-back:hover { filter: brightness(.92); }
.rc-wizard-back .rc-icon { width: 14px; height: 14px; }
.rc-wizard-eyebrow { display: block; color: var(--rc-text); font-size: 0.72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 0.4rem; }
.rc-wizard-heading { color: var(--rc-text); font-family: var(--_typography---font-family--headers); font-size: 1.2rem; font-weight: 400; margin: 0 0 0.25rem; }
.rc-wizard-heading-sm { font-size: 1rem; margin-top: 0.7rem; }
.rc-wizard-sub { color: var(--rc-text-2); font-size: 0.82rem; margin: 0 0 0.7rem; line-height: 1.4; }

.rc-wizard-steps { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.5rem; }
.rc-wizard-step-chip {
  display: flex; align-items: center; gap: 0.4rem; background: var(--rc-panel); border-radius: 999px;
  padding: 0.4rem 0.85rem 0.4rem 0.4rem; font-size: 0.75rem; font-weight: 700; color: var(--rc-text-2);
}
[data-theme="light"] .rc-wizard-step-chip { background: #fff; color: #3f3f48; }
.rc-wizard-step-num {
  width: 1.35rem; height: 1.35rem; border-radius: 50%; background: var(--rc-blue); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 0.72rem;
}

/* step 1: intent */
.rc-choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.rc-choice-card {
  background: var(--rc-panel); border: none; border-radius: 1rem; padding: 1.25rem 1.1rem; text-align: left;
  cursor: pointer; display: flex; flex-direction: column; gap: 0.5rem; color: var(--rc-text);
}
.rc-choice-card:hover { background: var(--rc-panel-2); }
.rc-choice-icon { width: 2.2rem; height: 2.2rem; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; }
.rc-choice-icon .rc-icon { width: 18px; height: 18px; }
.rc-choice-name { font-weight: 800; font-size: 0.95rem; }
.rc-choice-desc { font-size: 0.78rem; color: var(--rc-text-2); line-height: 1.4; }
[data-theme="light"] .rc-choice-card { background: #fff; color: #0a0a0f; }
[data-theme="light"] .rc-choice-card:hover { background: #f0f1f4; }
[data-theme="light"] .rc-choice-icon { background: #0a0a0f14; }
[data-theme="light"] .rc-choice-desc { color: #3f3f48; }

/* step 2: plan */
.rc-plan-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.rc-plan-card {
  background: var(--rc-panel); border: none; border-radius: 1rem; padding: 1rem 1rem; text-align: left;
  cursor: pointer; display: flex; flex-direction: column; gap: 0.25rem; color: var(--rc-text);
}
.rc-plan-card:hover { background: var(--rc-panel-2); }
.rc-plan-name { font-weight: 800; font-size: 0.95rem; }
.rc-plan-price { font-size: 1.4rem; font-weight: 800; color: var(--rc-text); }
.rc-plan-desc { font-size: 0.72rem; color: var(--rc-text-2); line-height: 1.4; margin-bottom: 0.4rem; }
.rc-plan-tap { font-size: 0.68rem; font-weight: 800; color: var(--rc-blue); text-transform: uppercase; letter-spacing: .04em; }
[data-theme="light"] .rc-plan-card { background: #fff; color: #0a0a0f; }
[data-theme="light"] .rc-plan-card:hover { background: #f0f1f4; }
[data-theme="light"] .rc-plan-price { color: #0a0a0f; }
[data-theme="light"] .rc-plan-desc { color: #3f3f48; }

/* step 3: access */
.rc-access-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.6rem; margin-bottom: 0.7rem; }
.rc-access-grid-simple { grid-template-columns: 1fr 1fr; }
/* access cards: original dark-grey panel in dark mode (via the modal's own
   pinned --rc-panel/--rc-text), plain white card with dark text in light
   mode -- see the plan/choice card comment above for why this can't just
   follow the page theme directly. */
.rc-access-card {
  background: var(--rc-panel); color: var(--rc-text); border-radius: 1rem; padding: 0.85rem; display: flex; flex-direction: column; gap: 0.4rem;
}
.rc-access-card.is-disabled { opacity: .5; }
.rc-access-top { display: flex; flex-direction: column; align-items: flex-start; gap: 0.2rem; }
.rc-access-name { display: flex; align-items: center; gap: 0.35rem; font-weight: 800; font-size: 0.85rem; }
.rc-access-desc { font-size: 0.75rem; color: var(--rc-text-2); line-height: 1.4; margin: 0; }
.rc-access-note { font-size: 0.7rem; color: var(--rc-text-3); line-height: 1.4; margin: 0; }
.rc-access-price { font-size: 0.95rem; font-weight: 800; color: var(--rc-text); }
[data-theme="light"] .rc-access-card { background: #fff; color: #0a0a0f; }
[data-theme="light"] .rc-access-desc { color: #3f3f48; }
[data-theme="light"] .rc-access-note { color: #6b6b74; }
[data-theme="light"] .rc-access-price { color: #0a0a0f; }
.rc-access-choose {
  margin-top: auto; background: var(--rc-blue); color: #fff; border: none; border-radius: 999px; padding: 0.6rem 0.75rem;
  font-weight: 800; font-size: 0.72rem; text-transform: uppercase; letter-spacing: .03em; cursor: pointer; text-align: center;
}
.rc-access-choose:hover:not(:disabled) { filter: brightness(1.1); }
.rc-access-choose:disabled { opacity: .4; cursor: not-allowed; }

.rc-access-checklist { display: flex; flex-wrap: wrap; gap: 0.3rem 1rem; font-size: 0.7rem; color: var(--rc-text-2); margin-bottom: 0.4rem; }

@media (max-width: 560px) {
  .rc-choice-grid, .rc-plan-grid, .rc-access-grid, .rc-access-grid-simple { grid-template-columns: 1fr; }
}

/* the site nav is transparent by design (meant to sit over a hero image); once the
   catalog grid scrolls under it, give it a solid backdrop so text doesn't show through */
.navbar.rc-nav-solid {
  background: #0a0a0f !important;
  transition: background-color .2s;
}
[data-theme="light"] .navbar.rc-nav-solid { background: #fff !important; }

@media (max-width: 640px) {
  .rc-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .rc-soon-card { flex-basis: 220px; }
}

/* testimonials */
.rc-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2rem 0 2.5rem; }
.rc-testi-card {
  background: var(--rc-panel); border: none; border-radius: 1.5rem;
  padding: 2.25rem 2rem; display: flex; flex-direction: column; min-height: 260px;
}
.rc-testi-quote { width: 2.4rem; height: 2.4rem; color: var(--rc-blue); margin-bottom: 1.25rem; flex: none; }
.rc-testi-text { font-size: 1.05rem; color: var(--rc-text); line-height: 1.55; margin: 0 0 1.5rem; flex: 1; }
.rc-testi-meta { margin-top: auto; padding-top: 1rem; }
.rc-testi-name { font-weight: 700; font-size: 0.95rem; line-height: 1.3; }
.rc-testi-date { font-size: 0.76rem; color: var(--rc-text-3); margin-top: 0.2rem; }
@media (max-width: 900px) { .rc-testi-grid { grid-template-columns: 1fr; } }

/* contact us */
.rc-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0 4rem; max-width: 620px; }
.rc-contact-card {
  display: flex; align-items: center; gap: 0.9rem; background: var(--rc-panel); border: none;
  border-radius: 1rem; padding: 1.1rem 1.25rem; text-decoration: none; color: var(--rc-text); transition: transform .15s, background-color .15s;
  min-width: 0;
}
.rc-contact-card:hover { background: var(--rc-panel-2); transform: translateY(-2px); }
.rc-contact-icon {
  width: 2.6rem; height: 2.6rem; border-radius: 50%; background: #fff; color: #0a0a0a; flex: none;
  display: flex; align-items: center; justify-content: center;
}
.rc-contact-label { font-weight: 700; font-size: 0.9rem; }
.rc-contact-value { font-size: 0.78rem; color: var(--rc-text-2); margin-top: 0.15rem; overflow-wrap: anywhere; }
@media (max-width: 640px) { .rc-contact-grid { grid-template-columns: 1fr; } }

/* per-game detail page (/games/:slug/) */
.rc-detail-hero { display: grid; grid-template-columns: 300px 1fr; gap: 2.5rem; align-items: start; margin-bottom: 2.5rem; }
.rc-detail-cover { width: 100%; border-radius: 1.25rem; aspect-ratio: 3/4; object-fit: cover; background: #1c1e28; }
.rc-detail-eyebrow { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.9rem; }
.rc-detail-eyebrow-text { font-size: 0.72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--rc-text-2); }
.rc-detail-title { font-family: var(--_typography---font-family--headers); font-size: 2.5rem; font-weight: 400; margin: 0 0 1rem; line-height: 1.1; }
.rc-detail-intro { color: var(--rc-text-2); font-size: 1.05rem; line-height: 1.6; margin: 0 0 1.5rem; max-width: 540px; }
.rc-detail-prices { display: flex; gap: 0.75rem; margin-bottom: 1.5rem; }
.rc-detail-price-box { background: var(--rc-panel); border: none; border-radius: 0.9rem; padding: 0.9rem 1.4rem; }
.rc-detail-price-label { display: block; font-size: 0.65rem; font-weight: 700; color: var(--rc-text-3); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 0.2rem; }
.rc-detail-price-value { font-size: 1.7rem; font-weight: 800; }
.rc-detail-cta {
  display: inline-flex; align-items: center; gap: 0.5rem; background: var(--rc-blue); color: #fff; font-weight: 800;
  text-decoration: none; padding: 1rem 1.85rem; border-radius: 999px; font-size: 0.95rem;
}
.rc-detail-cta:hover { filter: brightness(1.12); }
.rc-detail-cards { display: flex; flex-direction: column; gap: 1.25rem; max-width: 760px; margin: 0.5rem 0 4rem; }
.rc-detail-card { background: var(--rc-panel); border: none; border-radius: 1.25rem; padding: 1.75rem 2rem; }
.rc-detail-card h3 { font-family: var(--_typography---font-family--headers); font-size: 1.3rem; font-weight: 400; margin: 0 0 0.75rem; }
.rc-detail-card p { color: var(--rc-text-2); line-height: 1.6; margin: 0; }
.rc-detail-card ol { color: var(--rc-text-2); line-height: 1.85; margin: 0; padding-left: 1.25rem; }
.rc-detail-footer-links { display: flex; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap; }
.rc-detail-footer-links a { color: var(--rc-text-2); text-decoration: underline; font-size: 0.9rem; }
@media (max-width: 767px) { .rc-detail-hero { grid-template-columns: 1fr; } .rc-detail-cover { max-width: 300px; } }

/* game library list page (/games/) */
.rc-lib-cta-row { margin-bottom: 2.5rem; }
.rc-lib-search { max-width: 420px; margin-bottom: 2rem; }
.rc-lib-list { column-count: 3; column-gap: 2.5rem; margin: 0 0 4rem; max-width: 1100px; }
.rc-lib-empty { display: none; color: var(--rc-text-2); padding: 2rem 0; }
.rc-lib-item.is-hidden { display: none; }
.rc-lib-item { display: flex; align-items: center; gap: 0.8rem; break-inside: avoid; margin-bottom: 1rem; }
.rc-lib-thumb { width: 42px; height: 56px; object-fit: cover; border-radius: 0.4rem; background: #1c1e28; flex: none; }
.rc-lib-item a { color: var(--rc-text); font-weight: 600; text-decoration: none; font-size: 0.95rem; }
.rc-lib-item a:hover { color: var(--rc-blue); }
.rc-lib-meta { font-size: 0.74rem; color: var(--rc-text-3); margin-top: 0.15rem; }
@media (max-width: 900px) { .rc-lib-list { column-count: 2; } }
@media (max-width: 600px) { .rc-lib-list { column-count: 1; } }

/* generic popup modal body (no cover image, plain padded panel) */
.rc-popup-modal-body { padding: 2rem 1.85rem 1.85rem; }
.rc-popup-modal-body .rc-modal-title { margin-bottom: 0.3rem; }
.rc-popup-modal-body .rc-contact-grid { max-width: none; margin: 1.5rem 0 0; }

/* rental rules nav button + popup */
.rc-rules-nav-btn {
  background: #fff; color: #0a0a0a; border: none; border-radius: 999px; font-weight: 800;
  font-size: 0.8rem; padding: 0.55rem 1.1rem; cursor: pointer; margin-right: 0.75rem; white-space: nowrap;
}
.rc-rules-nav-btn:hover { filter: brightness(.94); }
.rc-rules-modal .rc-popup-modal-body {
  max-height: 80vh; overflow-y: auto;
  scrollbar-width: thin; scrollbar-color: #3a3b40 transparent;
}
.rc-rules-modal .rc-popup-modal-body::-webkit-scrollbar { width: 7px; }
.rc-rules-modal .rc-popup-modal-body::-webkit-scrollbar-track { background: transparent; }
.rc-rules-modal .rc-popup-modal-body::-webkit-scrollbar-thumb { background: #3a3b40; border-radius: 999px; }
.rc-rules-modal .rc-popup-modal-body::-webkit-scrollbar-thumb:hover { background: #4a4b52; }
.rc-rules-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.25rem; }
.rc-rules-item { display: flex; gap: 0.9rem; }
.rc-rules-item .rc-guide-step-num { position: static; flex: none; }
.rc-rules-item-body h4 { margin: 0 0 0.3rem; font-family: var(--_typography---font-family--headers); font-size: 1rem; font-weight: 400; }
.rc-rules-item-body p { margin: 0; color: var(--rc-text-2); font-size: 0.88rem; line-height: 1.55; }
@media (max-width: 480px) { .rc-rules-nav-btn { padding: 0.5rem 0.8rem; font-size: 0.72rem; } }

/* custom hamburger + slide-in drawer, fully independent of Webflow's own nav toggle */
.rc-menu-btn {
  width: 34px; height: 34px; background: none; border: none; cursor: pointer; padding: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.rc-menu-line { width: 22px; height: 2px; border-radius: 2px; background: #fff; transition: transform .3s ease, opacity .2s ease; }
.rc-menu-btn.is-open .rc-menu-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.rc-menu-btn.is-open .rc-menu-line:nth-child(2) { opacity: 0; }
.rc-menu-btn.is-open .rc-menu-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media screen and (min-width: 992px) {
  .rc-menu-btn { display: none; }
}

.rc-drawer-overlay {
  position: fixed; inset: 0; z-index: 10040; background: rgba(5,5,8,.6); backdrop-filter: blur(2px);
  opacity: 0; pointer-events: none; transition: opacity .28s ease;
}
.rc-drawer-overlay.is-open { opacity: 1; pointer-events: auto; }
.rc-drawer {
  position: absolute; top: 0; right: 0; height: 100%; width: min(320px, 84vw);
  background: #0a0a0d; border-left: 1px solid var(--rc-border-2);
  box-shadow: -20px 0 60px -20px rgba(0,0,0,.6);
  transform: translateX(100%); transition: transform .38s cubic-bezier(.16,1,.3,1);
  display: flex; flex-direction: column; padding: 1.4rem 1.35rem;
}
.rc-drawer-overlay.is-open .rc-drawer { transform: translateX(0); }
.rc-drawer-close {
  align-self: flex-end; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.06);
  border: none; color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; margin-bottom: 1.25rem;
}
.rc-drawer-close .rc-icon { width: 16px; height: 16px; }
.rc-drawer-nav { display: flex; flex-direction: column; }
.rc-drawer-link {
  padding: 0.95rem 0.15rem; color: var(--rc-text-2); font-weight: 700; font-size: 1.05rem;
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.07); position: relative;
}
.rc-drawer-link.is-current-page { color: #fff; }
.rc-drawer-link.is-current-page::after { content: ''; position: absolute; left: 0; bottom: -1px; width: 1.75rem; height: 2px; background: #fff; border-radius: 999px; }
.rc-drawer-rules-btn {
  margin-top: 1.4rem; background: #fff; color: #0a0a0a; border: none; border-radius: 999px;
  padding: 0.9rem; font-weight: 800; font-size: 0.9rem; cursor: pointer;
}
.rc-drawer-rules-btn:hover { filter: brightness(.94); }
