/* Kernelab custom.css - real CSS (NOT stars.js, NOT image.png) */

html,
body {
  overflow-x: hidden;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* Cosmic space background — works for .r4ge-space and legacy .r4ge-grid-bg */
.r4ge-grid-bg,
.r4ge-space {
  overflow: hidden;
  background: #020202 !important;
}

.r4ge-space-base,
.r4ge-grid-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 50% -5%, rgba(255, 255, 255, 0.11) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 12% 85%, rgba(180, 200, 255, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 35% 28% at 88% 70%, rgba(255, 255, 255, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse 25% 20% at 70% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 60%),
    linear-gradient(180deg, #070707 0%, #020202 40%, #000 100%) !important;
  background-color: #020202 !important;
}

.r4ge-grid-bg {
  position: fixed !important;
}

.r4ge-stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

/* Dense drifting starfield (CSS, always visible) */
.r4ge-space-base::before,
.r4ge-space-base::after,
.r4ge-grid-bg::before,
.r4ge-grid-bg::after {
  content: '';
  position: absolute;
  inset: -20% 0 0 0;
  pointer-events: none;
  z-index: 0;
  background-repeat: repeat;
}

.r4ge-space-base::before,
.r4ge-grid-bg::before {
  opacity: 0.9;
  animation: r4ge-stars-drift 90s linear infinite;
  background-image:
    radial-gradient(1.2px 1.2px at 10px 20px, rgba(255,255,255,0.95), transparent),
    radial-gradient(1px 1px at 40px 80px, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.5px 1.5px at 90px 40px, rgba(255,255,255,0.9), transparent),
    radial-gradient(1px 1px at 140px 120px, rgba(255,255,255,0.55), transparent),
    radial-gradient(1px 1px at 180px 30px, rgba(255,255,255,0.8), transparent),
    radial-gradient(1.6px 1.6px at 220px 160px, rgba(255,255,255,0.85), transparent),
    radial-gradient(1px 1px at 260px 90px, rgba(255,255,255,0.5), transparent),
    radial-gradient(1px 1px at 300px 200px, rgba(255,255,255,0.75), transparent),
    radial-gradient(1.3px 1.3px at 340px 60px, rgba(255,255,255,0.9), transparent),
    radial-gradient(1px 1px at 380px 140px, rgba(255,255,255,0.6), transparent),
    radial-gradient(1px 1px at 50px 180px, rgba(255,255,255,0.7), transparent),
    radial-gradient(1.4px 1.4px at 120px 210px, rgba(255,255,255,0.85), transparent),
    radial-gradient(1px 1px at 200px 240px, rgba(255,255,255,0.55), transparent),
    radial-gradient(1px 1px at 280px 250px, rgba(255,255,255,0.8), transparent),
    radial-gradient(1.2px 1.2px at 360px 230px, rgba(255,255,255,0.7), transparent);
  background-size: 400px 280px;
}

.r4ge-space-base::after,
.r4ge-grid-bg::after {
  opacity: 0.55;
  animation: r4ge-stars-drift 140s linear infinite reverse;
  background-image:
    radial-gradient(1px 1px at 25px 50px, rgba(255,255,255,0.55), transparent),
    radial-gradient(1px 1px at 75px 130px, rgba(255,255,255,0.4), transparent),
    radial-gradient(1.5px 1.5px at 130px 70px, rgba(255,255,255,0.65), transparent),
    radial-gradient(1px 1px at 190px 170px, rgba(255,255,255,0.35), transparent),
    radial-gradient(1px 1px at 250px 40px, rgba(255,255,255,0.5), transparent),
    radial-gradient(2px 2px at 310px 110px, rgba(255,255,255,0.45), transparent),
    radial-gradient(1px 1px at 70px 220px, rgba(255,255,255,0.4), transparent),
    radial-gradient(1px 1px at 160px 250px, rgba(255,255,255,0.55), transparent),
    radial-gradient(1.5px 1.5px at 330px 200px, rgba(255,255,255,0.5), transparent);
  background-size: 360px 300px;
}

@keyframes r4ge-stars-drift {
  from { transform: translateY(0); }
  to { transform: translateY(-280px); }
}

.r4ge-space-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse 80% 70% at 50% 35%, transparent 20%, rgba(0, 0, 0, 0.45) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 30%, transparent 65%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.r4ge-space-scan {
  display: none;
}


/* Logo preloader */
.r4ge-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #030303;
  transition: opacity 0.65s ease, visibility 0.65s ease;
}

.r4ge-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.r4ge-loader-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
  animation: r4ge-loader-pulse 1.8s ease-in-out infinite;
}

.r4ge-loader-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.r4ge-loader-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
  animation: r4ge-loader-pop 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.r4ge-loader-mark {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: #050505;
  background: linear-gradient(145deg, #fff, #cfcfcf);
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
  animation: r4ge-loader-pop 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.r4ge-loader-name {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fafafa;
  animation: r4ge-fade-up 0.8s ease 0.15s both;
}

.r4ge-loader-bar {
  width: 120px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.r4ge-loader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: r4ge-loader-bar 1.1s ease-in-out infinite;
}

@keyframes r4ge-loader-pulse {
  0%, 100% { transform: scale(0.9); opacity: 0.55; }
  50% { transform: scale(1.15); opacity: 1; }
}

@keyframes r4ge-loader-pop {
  from { opacity: 0; transform: scale(0.7); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes r4ge-loader-bar {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

body.r4ge-loading #app {
  opacity: 0;
}

body.r4ge-loaded #app {
  opacity: 1;
  transition: opacity 0.55s ease;
}

@keyframes r4ge-brand-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* Brand */
.r4ge-logo-text {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: #fafafa;
}

.r4ge-logo-mark {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #050505;
  line-height: 1;
}

.r4ge-logo-icon {
  background: linear-gradient(145deg, #ffffff 0%, #cfcfcf 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.r4ge-logo:hover .r4ge-logo-icon {
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.16);
}

/* Hero brand composition */
.r4ge-hero {
  position: relative;
}

.r4ge-hero-glow {
  position: absolute;
  inset: 10% 15% auto;
  height: 280px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: r4ge-glow-pulse 7s ease-in-out infinite;
}

@keyframes r4ge-glow-pulse {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

.r4ge-brand {
  display: inline-block;
  margin: 0 0 1.25rem;
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
  color: #fafafa;
  text-shadow: 0 0 80px rgba(255, 255, 255, 0.18);
  animation: r4ge-brand-in 1.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.r4ge-hero-title {
  margin: 0 0 1rem;
  font-size: clamp(1.25rem, 3.2vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: rgba(244, 244, 245, 0.88);
  animation: r4ge-fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.r4ge-hero-subtitle {
  margin: 0 auto 2rem;
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(244, 244, 245, 0.48);
  animation: r4ge-fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

.r4ge-hero-actions {
  animation: r4ge-fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
}

.r4ge-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 0.85rem;
  margin-bottom: 2.75rem;
  animation: r4ge-fade-up 0.8s ease 0.32s both;
}

.r4ge-hero-divider {
  display: none;
  width: 1px;
  height: 0.85rem;
  background: rgba(255, 255, 255, 0.15);
}

@media (min-width: 640px) {
  .r4ge-hero-divider {
    display: block;
  }
}

.r4ge-hero-games {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(244, 244, 245, 0.4);
}

.r4ge-hero-stats {
  animation: r4ge-fade-up 0.8s ease 0.4s both;
}

@keyframes r4ge-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom cursor */
.r4ge-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.r4ge-cursor.is-visible {
  opacity: 1;
}

.r4ge-cursor-dot,
.r4ge-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  will-change: transform;
}

.r4ge-cursor-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #f5f5f5;
  box-shadow: 0 0 10px rgba(245, 245, 245, 0.9);
}

.r4ge-cursor-ring {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1.5px solid rgba(245, 245, 245, 0.55);
  background: rgba(255, 255, 255, 0.04);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.r4ge-cursor.is-hover .r4ge-cursor-dot {
  width: 8px;
  height: 8px;
  background: #ffffff;
  box-shadow: 0 0 16px rgba(255, 255, 255, 1);
}

.r4ge-cursor.is-hover .r4ge-cursor-ring {
  width: 52px;
  height: 52px;
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
}

@media (pointer: fine) {
  body.r4ge-custom-cursor,
  body.r4ge-custom-cursor * {
    cursor: none !important;
  }
}

@media (pointer: coarse) {
  .r4ge-cursor {
    display: none;
  }
}

/* Header — фиксирован сверху при скролле */
.r4ge-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0.75rem 1rem 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.97) 0%,
    rgba(5, 5, 5, 0.92) 75%,
    rgba(5, 5, 5, 0) 100%
  );
  pointer-events: none;
}

.r4ge-header-wrap .r4ge-nav-shell {
  pointer-events: auto;
}

.r4ge-page-wrap {
  padding-top: 5.25rem;
}

.builder .r4ge-header-wrap {
  top: 2.75rem;
}

.builder .r4ge-page-wrap {
  padding-top: 7rem;
}

.r4ge-nav-main {
  border-radius: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(22px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  min-height: 3.5rem;
}

.r4ge-nav-links {
  padding: 0 0.25rem;
}

.r4ge-nav-link {
  flex: 1;
  text-align: center;
  padding: 0.5rem 0.35rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(var(--cl-t-primary), 0.5);
  border-radius: 0.5rem;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}

@media (min-width: 400px) {
  .r4ge-nav-link {
    flex: none;
    padding: 0.5rem 0.85rem;
    font-size: 0.875rem;
  }
}

@media (min-width: 640px) {
  .r4ge-nav-link {
    padding: 0.625rem 1.1rem;
    font-size: 0.9375rem;
  }
}

.r4ge-nav-link:hover {
  color: rgba(var(--cl-t-primary), 0.85);
  background: rgba(255, 255, 255, 0.04);
}

.r4ge-nav-link-active {
  color: rgba(var(--cl-t-primary), 1);
  background: rgba(255, 255, 255, 0.12);
}

.r4ge-nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(var(--cl-t-primary), 0.5);
  transition: all 0.2s;
}

.r4ge-nav-icon-btn:hover {
  color: rgba(var(--cl-accent), 1);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.r4ge-nav-login {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #050505;
  background: linear-gradient(135deg, #ffffff, #e8e8e8);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 1px 12px rgba(255, 255, 255, 0.12);
  transition: box-shadow 0.2s, transform 0.2s;
}

.r4ge-nav-login .r4ge-btn-content {
  gap: 0.45rem;
}

.r4ge-nav-login .r4ge-btn-glow {
  width: 9rem;
  height: 9rem;
}

.r4ge-nav-login-sm {
  padding: 0.35rem 0.55rem;
}

@media (min-width: 640px) {
  .r4ge-nav-login-sm {
    padding: 0.35rem 0.75rem;
  }
}

.r4ge-nav-login:hover {
  box-shadow: 0 2px 14px rgba(255, 255, 255, 0.3);
}

/* Animated cursor buttons */
.r4ge-btn {
  --mouse-x: 50%;
  --mouse-y: 50%;
  --magnet-x: 0px;
  --magnet-y: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  transform: translate3d(var(--magnet-x), var(--magnet-y), 0)
    perspective(600px)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y));
  transition: transform 0.12s ease-out, box-shadow 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}

.r4ge-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  transition: opacity 0.25s ease;
}

.r4ge-btn-content {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  pointer-events: none;
}

.r4ge-btn-glow {
  position: absolute;
  z-index: 2;
  width: 11rem;
  height: 11rem;
  left: var(--mouse-x);
  top: var(--mouse-y);
  transform: translate(-50%, -50%);
  border-radius: 999px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  mix-blend-mode: screen;
  filter: blur(2px);
}

.r4ge-btn-shine {
  position: absolute;
  z-index: 3;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  background: radial-gradient(
    140px circle at var(--mouse-x) var(--mouse-y),
    rgba(255, 255, 255, 0.55) 0%,
    rgba(255, 255, 255, 0.15) 30%,
    transparent 65%
  );
}

.r4ge-btn.is-hover .r4ge-btn-glow,
.r4ge-btn.is-hover .r4ge-btn-shine {
  opacity: 1;
}

.r4ge-btn--primary::before {
  background: linear-gradient(135deg, #ffffff 0%, #e4e4e4 100%);
}

.r4ge-btn--primary {
  padding: 0.625rem 1.5rem;
  color: #050505;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 2px 16px rgba(255, 255, 255, 0.12);
}

.r4ge-btn--primary .r4ge-btn-glow {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.35) 30%,
    transparent 68%
  );
  mix-blend-mode: normal;
}

.r4ge-btn--primary.is-hover {
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.8);
}

.r4ge-btn--outline::before {
  background: rgba(255, 255, 255, 0.03);
}

.r4ge-btn--outline {
  padding: 0.625rem 1.5rem;
  color: rgba(var(--cl-t-primary), 0.82);
  border-color: rgba(255, 255, 255, 0.12);
}

.r4ge-btn--outline .r4ge-btn-glow {
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.25) 35%,
    transparent 70%
  );
}

.r4ge-btn--outline.is-hover {
  color: rgba(var(--cl-t-primary), 1);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.2);
}

.r4ge-btn--outline.is-hover::before {
  background: rgba(255, 255, 255, 0.07);
}

.r4ge-btn--ghost::before {
  background: rgba(255, 255, 255, 0.04);
}

.r4ge-btn--ghost {
  padding: 0.4rem 0.6875rem;
  font-size: 0.65625rem;
  color: rgba(var(--cl-t-primary), 0.7);
  border-color: rgba(255, 255, 255, 0.08);
}

.r4ge-btn--ghost .r4ge-btn-glow {
  width: 7rem;
  height: 7rem;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.7) 0%,
    transparent 70%
  );
}

.r4ge-btn--ghost.is-hover {
  color: rgba(var(--cl-t-primary), 0.95);
  border-color: rgba(255, 255, 255, 0.28);
}

.r4ge-btn--ghost.is-hover::before {
  background: rgba(255, 255, 255, 0.12);
}

.r4ge-btn--sm {
  padding: 0.35rem 0.7rem;
  font-size: 0.75rem;
  border-radius: 0.375rem;
}

.r4ge-btn--lg {
  padding: 0.95rem 1.85rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 0.625rem;
}

.r4ge-btn--lg .r4ge-btn-content {
  gap: 0.625rem;
}

.r4ge-btn--lg .r4ge-btn-content i {
  font-size: 0.875rem;
}

.r4ge-btn--xs {
  padding: 0.4rem 0.6875rem;
  font-size: 0.65625rem;
}

.r4ge-btn--sm .r4ge-btn-glow,
.r4ge-btn--xs .r4ge-btn-glow {
  width: 7rem;
  height: 7rem;
}

.r4ge-category-card:hover .r4ge-category-go i {
  transform: translateX(2px);
}

.r4ge-category-go .r4ge-btn-content i {
  font-size: 0.5rem;
  transition: transform 0.2s;
}

.r4ge-category-card:hover .r4ge-category-go .r4ge-btn-content i {
  transform: translateX(2px);
}

/* Section spacing */
.r4ge-section-sep {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.r4ge-section-pad {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .r4ge-section-pad {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .r4ge-section-pad {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }
}

.r4ge-section-pad--hero {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .r4ge-section-pad--hero {
    padding-top: 3.5rem;
    padding-bottom: 5.5rem;
  }
}

.r4ge-section-pad--last {
  padding-bottom: 4.5rem;
}

@media (min-width: 768px) {
  .r4ge-section-pad--last {
    padding-bottom: 6.5rem;
  }
}

/* Hero CTA + stats */
.r4ge-hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.25rem;
}

@media (min-width: 640px) {
  .r4ge-hero-badges {
    gap: 0.625rem;
    margin-bottom: 2.5rem;
  }
}

.r4ge-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(var(--cl-t-primary), 0.65);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0.4rem;
  white-space: nowrap;
}

.r4ge-hero-badge i {
  font-size: 0.5625rem;
  color: rgba(var(--cl-accent), 0.75);
}

.r4ge-hero-badge--live {
  color: rgba(var(--cl-t-primary), 0.75);
  border-color: rgba(74, 222, 128, 0.2);
  background: rgba(74, 222, 128, 0.06);
}

.r4ge-hero-badge-dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 6px rgba(74, 222, 128, 0.45);
  flex-shrink: 0;
}

.r4ge-hero-badge--game {
  padding: 0.35rem 0.65rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(var(--cl-t-primary), 0.55);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.r4ge-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto 3rem;
}

@media (min-width: 640px) {
  .r4ge-hero-actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    max-width: none;
    margin-bottom: 4rem;
  }
}

.r4ge-hero-actions a {
  min-width: 13.5rem;
}

.r4ge-lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.r4ge-lang-btn {
  padding: 0.4rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(var(--cl-t-primary), 0.45);
  border-radius: 0.375rem;
  transition: color 0.15s, background 0.15s;
}

.r4ge-lang-btn:hover {
  color: rgba(var(--cl-t-primary), 0.8);
}

.r4ge-lang-btn.is-active {
  color: rgba(var(--cl-t-primary), 1);
  background: rgba(255, 255, 255, 0.18);
}

.r4ge-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 36rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .r4ge-hero-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.125rem;
  }
}

@media (min-width: 768px) {
  .r4ge-hero-stats {
    gap: 1.375rem;
  }
}

.r4ge-hero-stat {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(12, 12, 12, 0.6);
  padding: 1.375rem 1rem;
  text-align: center;
  transition: border-color 0.2s;
}

.r4ge-hero-stat:hover {
  border-color: rgba(255, 255, 255, 0.18);
}

.r4ge-hero-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  color: rgba(var(--cl-t-primary), 1);
}

@media (min-width: 768px) {
  .r4ge-hero-stat-value {
    font-size: 1.75rem;
  }
}

.r4ge-hero-stat-label {
  font-size: 0.625rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(var(--cl-t-primary), 0.38);
  margin-top: 0.625rem;
}

.r4ge-hero-stat--rating {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.r4ge-hero-stat--rating .r4ge-hero-stat-value {
  color: rgba(var(--cl-accent), 1);
}

/* Categories */
.r4ge-categories-head {
  text-align: center;
  margin-bottom: 2.75rem;
}

@media (min-width: 768px) {
  .r4ge-categories-head {
    margin-bottom: 3.25rem;
  }
}

.r4ge-categories-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(var(--cl-t-primary), 1);
}

@media (min-width: 768px) {
  .r4ge-categories-title {
    font-size: 1.875rem;
  }
}

.r4ge-categories-subtitle {
  font-size: 0.875rem;
  color: rgba(var(--cl-t-primary), 0.45);
  margin-top: 0.5rem;
}

@media (min-width: 1024px) {
  #categories {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
  }

  #categories .r4ge-section-pad {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.r4ge-categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.125rem;
  max-width: 100%;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .r4ge-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .r4ge-categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.125rem;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}

.r4ge-category-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(12, 12, 12, 0.75);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.r4ge-category-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.r4ge-category-media {
  position: relative;
  aspect-ratio: 16 / 11;
  min-height: 10.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

@media (min-width: 768px) {
  .r4ge-category-media {
    min-height: 11.5rem;
  }
}

.r4ge-category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.r4ge-category-card:hover .r4ge-category-img {
  transform: scale(1.04);
}

.r4ge-category-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.25);
  font-size: 2.5rem;
}

.r4ge-category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.15) 0%,
    rgba(5, 5, 5, 0.35) 45%,
    rgba(5, 5, 5, 0.82) 100%
  );
  pointer-events: none;
}

.r4ge-category-hot {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.55rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 999px;
}

.r4ge-category-hot i {
  font-size: 0.5rem;
}

.r4ge-category-title-overlay {
  position: absolute;
  left: 50%;
  bottom: 2.5rem;
  transform: translateX(-50%);
  z-index: 2;
  width: calc(100% - 1.75rem);
  text-align: center;
  font-size: 1.3125rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  color: rgba(var(--cl-t-primary), 1);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  line-height: 1.15;
}

@media (min-width: 768px) {
  .r4ge-category-title-overlay {
    font-size: 1.4375rem;
  }
}

.r4ge-category-glass {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: -1.125rem 0.875rem 0;
  padding: 0.625rem 0.75rem;
  position: relative;
  z-index: 3;
  border-radius: 0.625rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 14, 14, 0.82);
  backdrop-filter: blur(12px);
}

.r4ge-category-glass-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(var(--cl-accent), 0.9);
  font-size: 0.625rem;
}

.r4ge-category-glass-text {
  font-size: 0.71875rem;
  font-weight: 600;
  color: rgba(var(--cl-t-primary), 0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.r4ge-category-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.875rem;
  padding: 1rem 1rem 1.125rem;
}

.r4ge-category-count {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  min-width: 0;
}

.r4ge-category-count-num {
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(var(--cl-t-primary), 1);
}

.r4ge-category-count-label {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(var(--cl-t-primary), 0.38);
}

.r4ge-category-go {
  flex-shrink: 0;
}

.r4ge-category-card:hover .r4ge-category-go {
  color: rgba(var(--cl-t-primary), 0.95);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.r4ge-category-go i {
  font-size: 0.5rem;
  transition: transform 0.2s;
}

.r4ge-category-card:hover .r4ge-category-go i {
  transform: translateX(2px);
}

.r4ge-categories-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  margin: 0 1rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

.r4ge-categories-empty p {
  font-size: 0.875rem;
  color: rgba(var(--cl-t-primary), 0.45);
}

/* Features bento */
.r4ge-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .r4ge-bento {
    grid-template-columns: 1.05fr 1fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 1rem;
    align-items: stretch;
  }

  .r4ge-bento-reviews {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .r4ge-bento-quality {
    grid-column: 2;
    grid-row: 1;
  }

  .r4ge-bento-warranty {
    grid-column: 3;
    grid-row: 1;
  }

  .r4ge-bento-wide {
    grid-column: 2 / 4;
    grid-row: 2;
    width: 100%;
  }
}

.r4ge-bento-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(12, 12, 12, 0.7);
  padding: 1.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.r4ge-bento-quality,
.r4ge-bento-warranty {
  min-height: 11rem;
}

.r4ge-bento-wide {
  min-height: auto;
}

.r4ge-bento-wide-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  height: 100%;
}

@media (min-width: 640px) {
  .r4ge-bento-wide-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.r4ge-bento-wide-text {
  flex: 1;
  min-width: 0;
}

.r4ge-bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.875rem;
}

.r4ge-bento-games-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .r4ge-bento-games-row {
    gap: 0.625rem;
  }
}

.r4ge-game-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(var(--cl-t-primary), 0.7);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  white-space: nowrap;
}

.r4ge-game-pill i {
  font-size: 0.625rem;
}

.r4ge-bento-title {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(var(--cl-t-primary), 0.9);
}

.r4ge-bento-desc {
  font-size: 0.6875rem;
  color: rgba(var(--cl-t-primary), 0.4);
  margin-top: 0.25rem;
  line-height: 1.4;
}

.r4ge-bento-head {
  margin-bottom: 0.875rem;
}

.r4ge-bento-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(var(--cl-accent), 0.8);
  transition: color 0.2s;
}

.r4ge-bento-link:hover {
  color: rgba(var(--cl-accent), 1);
}

/* Reviews column */
.r4ge-bento-reviews-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.r4ge-mini-review {
  padding-bottom: 0.625rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.r4ge-mini-review:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.r4ge-mini-review-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.r4ge-mini-avatar {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5625rem;
  font-weight: 700;
  color: rgba(var(--cl-accent), 0.9);
}

.r4ge-mini-review-text {
  font-size: 0.6875rem;
  color: rgba(var(--cl-t-primary), 0.55);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Chart card */
.r4ge-bento-chart {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
  height: 4.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.r4ge-chart-bar {
  width: 1.75rem;
  border-radius: 0.25rem 0.25rem 0 0;
  background: rgba(255, 255, 255, 0.15);
  transition: height 0.3s;
}

.r4ge-chart-bar-active {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);
}

/* Warranty orbs */
.r4ge-bento-orbs {
  position: relative;
  height: 4.5rem;
  margin-top: auto;
  padding-top: 0.5rem;
}

.r4ge-orb {
  position: absolute;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(var(--cl-accent), 0.8);
}

.r4ge-orb-lg {
  width: 3.5rem;
  height: 3.5rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
}

.r4ge-orb-md {
  width: 2.25rem;
  height: 2.25rem;
  right: 15%;
  top: 10%;
  font-size: 0.65rem;
}

.r4ge-orb-sm {
  width: 1.75rem;
  height: 1.75rem;
  left: 10%;
  bottom: 5%;
  font-size: 0.55rem;
}

.r4ge-bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(var(--cl-t-primary), 0.6);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.375rem;
}

/* Old feature cards — remove if unused */
.r4ge-feature-card {
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(13, 20, 36, 0.5);
}

.r4ge-feature-icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Footer */
.r4ge-footer {
  padding-top: 2.5rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .r4ge-footer {
    padding-top: 3.5rem;
    padding-bottom: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .r4ge-footer {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
  }
}

.r4ge-footer-card {
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(12, 12, 12, 0.6);
  backdrop-filter: blur(12px);
}

.r4ge-footer-inner {
  gap: 2rem;
  padding: 2rem 1.75rem 1.5rem;
}

@media (min-width: 768px) {
  .r4ge-footer-inner {
    gap: 2.5rem;
    padding: 2.75rem 2.5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .r4ge-footer-card {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
  }

  .r4ge-footer-inner {
    gap: 3rem;
    padding: 3.25rem 3rem 2.25rem;
  }
}

.r4ge-footer-copy {
  padding: 0 1.75rem 1.75rem;
}

@media (min-width: 768px) {
  .r4ge-footer-copy {
    padding: 0 2.5rem 2.25rem;
  }
}

@media (min-width: 1024px) {
  .r4ge-footer-copy {
    padding: 0 3rem 2.75rem;
  }
}

.r4ge-footer-copy-text {
  font-size: 0.6875rem;
  color: rgba(var(--cl-t-primary), 0.35);
}

.r4ge-footer-link {
  font-size: 0.8125rem;
  color: rgba(var(--cl-t-primary), 0.45);
  transition: color 0.2s;
}

.r4ge-footer-link:hover {
  color: rgba(var(--cl-t-primary), 0.85);
}

.r4ge-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(var(--cl-t-primary), 0.45);
  transition: all 0.2s;
}

.r4ge-social-btn:hover {
  color: #5865f2;
  border-color: rgba(88, 101, 242, 0.3);
  background: rgba(88, 101, 242, 0.08);
}

.r4ge-product-card {
  border-radius: 0.75rem;
  transition: border-color 0.2s;
}

.r4ge-product-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

/* Products page */
@media (min-width: 1024px) {
  .r4ge-products-page {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
  }
}

.r4ge-products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .r4ge-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .r4ge-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.125rem;
  }
}

.r4ge-products-grid--centered {
  justify-items: center;
}

/* Product card */
.r4ge-pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.92) 0%, rgba(8, 8, 8, 0.88) 100%);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  backdrop-filter: blur(10px);
  transition: border-color 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.r4ge-pcard-shine {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.12) 48%,
    transparent 62%
  );
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.r4ge-pcard:hover .r4ge-pcard-shine {
  transform: translateX(120%);
}

.r4ge-pcard:hover {
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 40px rgba(255, 255, 255, 0.06);
}

.r4ge-reveal {
  animation: r4ge-fade-up 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.r4ge-products-grid .r4ge-pcard:nth-child(1) { animation-delay: 0.05s; }
.r4ge-products-grid .r4ge-pcard:nth-child(2) { animation-delay: 0.12s; }
.r4ge-products-grid .r4ge-pcard:nth-child(3) { animation-delay: 0.19s; }
.r4ge-products-grid .r4ge-pcard:nth-child(4) { animation-delay: 0.26s; }
.r4ge-products-grid .r4ge-pcard:nth-child(5) { animation-delay: 0.33s; }
.r4ge-products-grid .r4ge-pcard:nth-child(6) { animation-delay: 0.4s; }
.r4ge-products-grid .r4ge-pcard:nth-child(n+7) { animation-delay: 0.45s; }

.r4ge-products-head {
  animation: r4ge-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.r4ge-products-eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.r4ge-products-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fafafa;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.12);
}

.r4ge-products-desc {
  margin: 0.85rem auto 0;
  max-width: 28rem;
  font-size: 0.925rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

.r4ge-products-empty-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  margin-bottom: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.35);
  font-size: 1.5rem;
}

.r4ge-pcard-media {
  position: relative;
  aspect-ratio: 16 / 10;
  min-height: 10rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

@media (min-width: 768px) {
  .r4ge-pcard-media {
    min-height: 11rem;
  }
}

.r4ge-pcard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

.r4ge-pcard:hover .r4ge-pcard-img {
  transform: scale(1.08);
  filter: brightness(1.08) contrast(1.05);
}

.r4ge-pcard-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.25);
  font-size: 2.5rem;
}

.r4ge-pcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 5, 5, 0.1) 0%,
    rgba(5, 5, 5, 0.3) 40%,
    rgba(5, 5, 5, 0.88) 100%
  );
  pointer-events: none;
}

.r4ge-pcard-badges {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  max-width: calc(100% - 1.5rem);
}

.r4ge-pcard-hot {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.3rem 0.55rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 999px;
}

.r4ge-pcard-hot i {
  font-size: 0.5rem;
}

.r4ge-pcard-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.6rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: 999px;
}

.r4ge-pcard-status i {
  font-size: 0.5rem;
}

.r4ge-pcard-status--undetected {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.28);
}

.r4ge-pcard-status--detected {
  color: #f87171;
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.28);
}

.r4ge-pcard-title-overlay {
  position: absolute;
  left: 1rem;
  bottom: 2.25rem;
  z-index: 2;
  max-width: calc(100% - 2rem);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(var(--cl-t-primary), 1);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  line-height: 1.1;
}

@media (min-width: 768px) {
  .r4ge-pcard-title-overlay {
    font-size: 1.375rem;
  }
}

.r4ge-pcard-glass {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin: -1rem 0.875rem 0;
  padding: 0.625rem 0.75rem;
  position: relative;
  z-index: 3;
  border-radius: 0.625rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 14, 14, 0.82);
  backdrop-filter: blur(12px);
}

.r4ge-pcard-glass-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  flex-shrink: 0;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(var(--cl-accent), 0.9);
  font-size: 0.625rem;
}

.r4ge-pcard-glass-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r4ge-pcard-glass-text {
  font-size: 0.71875rem;
  font-weight: 600;
  color: rgba(var(--cl-t-primary), 0.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.r4ge-pcard-body {
  padding: 0.875rem 1rem 0.625rem;
}

.r4ge-pcard-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.r4ge-pcard-meta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(var(--cl-accent), 0.8);
  font-size: 0.5rem;
}

.r4ge-pcard-meta-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r4ge-pcard-meta-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(var(--cl-t-primary), 0.95);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.r4ge-pcard-subrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.375rem;
}

.r4ge-pcard-subtitle {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(var(--cl-t-primary), 0.38);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.r4ge-pcard-preview {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(var(--cl-t-primary), 0.45);
  transition: color 0.2s;
}

.r4ge-pcard:hover .r4ge-pcard-preview {
  color: rgba(var(--cl-accent), 0.9);
}

.r4ge-pcard-preview i {
  font-size: 0.5625rem;
}

.r4ge-pcard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.875rem;
  padding: 0.75rem 1rem 1.125rem;
  margin-top: auto;
}

.r4ge-pcard-price {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}

.r4ge-pcard-price-val {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(var(--cl-t-primary), 1);
}

.r4ge-pcard-price-old {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(var(--cl-t-primary), 0.35);
  text-decoration: line-through;
}

.r4ge-pcard-price-label {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(var(--cl-t-primary), 0.38);
}

.r4ge-pcard-go {
  flex-shrink: 0;
}

.r4ge-pcard:hover .r4ge-pcard-go {
  color: rgba(var(--cl-t-primary), 0.95);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.r4ge-pcard-go i {
  font-size: 0.5rem;
  transition: transform 0.2s;
}

.r4ge-pcard:hover .r4ge-pcard-go i {
  transform: translateX(2px);
}

.r4ge-feedback-card {
  backdrop-filter: blur(8px);
}

/* Product detail page */
.r4ge-pdp {
  padding: 1.5rem 0 2.5rem;
}

@media (min-width: 1024px) {
  .r4ge-pdp {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
  }
}

.r4ge-pdp-wrap {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .r4ge-pdp-wrap {
    padding: 0 1.5rem;
  }
}

.r4ge-pdp-header {
  margin-bottom: 1.75rem;
}

@media (min-width: 768px) {
  .r4ge-pdp-header {
    margin-bottom: 2.25rem;
  }
}

.r4ge-pdp-title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: rgba(var(--cl-t-primary), 1);
}

@media (min-width: 768px) {
  .r4ge-pdp-title {
    font-size: 2.25rem;
  }
}

.r4ge-pdp-lead {
  margin-top: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(var(--cl-t-primary), 0.45);
  max-width: 42rem;
}

.r4ge-pdp-rating {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.875rem;
}

.r4ge-pdp-stars {
  display: inline-flex;
  gap: 0.125rem;
  color: #fbbf24;
  font-size: 0.75rem;
}

.r4ge-pdp-rating-text {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(var(--cl-t-primary), 0.55);
}

.r4ge-pdp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.r4ge-pdp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
}

.r4ge-pdp-badge i {
  font-size: 0.5625rem;
}

.r4ge-pdp-badge--undetected {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.25);
}

.r4ge-pdp-badge--detected {
  color: #f87171;
  background: rgba(248, 113, 113, 0.1);
  border-color: rgba(248, 113, 113, 0.25);
}

.r4ge-pdp-badge--accent {
  color: rgba(var(--cl-accent), 1);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.r4ge-pdp-badge--gold {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.25);
}

.r4ge-pdp-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .r4ge-pdp-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.85fr);
    gap: 2rem;
    align-items: start;
  }
}

.r4ge-pdp-main {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.r4ge-pdp-gallery {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(12, 12, 12, 0.65);
  overflow: hidden;
}

.r4ge-pdp-gallery-main {
  position: relative;
  overflow: hidden;
}

.r4ge-pdp-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r4ge-pdp-gallery-thumbs {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  overflow-x: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.r4ge-pdp-thumb {
  flex-shrink: 0;
  width: 4.5rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0.55;
  transition: opacity 0.2s, border-color 0.2s;
}

.r4ge-pdp-thumb.is-active,
.r4ge-pdp-thumb:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.45);
}

.r4ge-pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r4ge-pdp-card,
.r4ge-pdp-reviews,
.r4ge-pdp-related {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(12, 12, 12, 0.65);
}

.r4ge-pdp-card-head,
.r4ge-pdp-reviews-head,
.r4ge-pdp-related-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.r4ge-pdp-card-head {
  gap: 0.625rem;
  justify-content: flex-start;
}

.r4ge-pdp-card-head i {
  color: rgba(var(--cl-accent), 0.85);
  font-size: 0.875rem;
}

.r4ge-pdp-card-head h2,
.r4ge-pdp-reviews-head h2,
.r4ge-pdp-related-head h2 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: rgba(var(--cl-t-primary), 0.95);
}

.r4ge-pdp-card-body {
  padding: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(var(--cl-t-primary), 0.7);
}

.r4ge-pdp-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.r4ge-pdp-stat,
.r4ge-pdp-rating-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(12, 12, 12, 0.55);
}

.r4ge-pdp-stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(var(--cl-accent), 0.9);
  font-size: 0.875rem;
}

.r4ge-pdp-stat-body,
.r4ge-pdp-rating-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  flex: 1;
}

.r4ge-pdp-stat-body {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.r4ge-pdp-stat-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(var(--cl-t-primary), 0.88);
}

.r4ge-pdp-stat-value {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(var(--cl-t-primary), 0.38);
  white-space: nowrap;
}

.r4ge-pdp-rating-card {
  flex-direction: row;
  align-items: flex-start;
}

.r4ge-pdp-rating-card-score {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1;
}

.r4ge-pdp-rating-card--green .r4ge-pdp-rating-card-score {
  color: #4ade80;
}

.r4ge-pdp-rating-card--blue .r4ge-pdp-rating-card-score {
  color: rgba(var(--cl-accent), 1);
}

.r4ge-pdp-rating-card-bar {
  display: block;
  width: 100%;
  height: 0.3rem;
  margin-top: 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.r4ge-pdp-rating-card--green .r4ge-pdp-rating-card-bar span {
  background: linear-gradient(90deg, #4ade80, rgba(74, 222, 128, 0.45));
}

.r4ge-pdp-rating-card--blue .r4ge-pdp-rating-card-bar span {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.45));
}

.r4ge-pdp-rating-card-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
}

.r4ge-pdp-panels {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.r4ge-pdp-panel-toggles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.r4ge-pdp-panel-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.125rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(12, 12, 12, 0.55);
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
}

.r4ge-pdp-panel-toggle:hover,
.r4ge-pdp-panel-toggle.is-active {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
}

.r4ge-pdp-panel-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(var(--cl-accent), 0.9);
  font-size: 0.8125rem;
}

.r4ge-pdp-panel-toggle-text {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(var(--cl-t-primary), 0.92);
}

.r4ge-pdp-panel-toggle-chevron {
  font-size: 0.625rem;
  color: rgba(var(--cl-accent), 0.85);
  transition: transform 0.2s;
}

.r4ge-pdp-panel-toggle-chevron.is-open {
  transform: rotate(180deg);
}

.r4ge-pdp-panel-body {
  animation: r4ge-pdp-fade 0.2s ease;
}

@keyframes r4ge-pdp-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.r4ge-pdp-panel-inner {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 12, 12, 0.72);
  overflow: hidden;
}

.r4ge-pdp-panel-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.r4ge-pdp-panel-head-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: rgba(var(--cl-accent), 0.9);
  font-size: 0.8125rem;
}

.r4ge-pdp-panel-head h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: rgba(var(--cl-t-primary), 0.95);
}

.r4ge-pdp-tab-content {
  padding: 1.25rem;
}

.r4ge-pdp-tab-content:has(> :not(.r4ge-pdp-tab-fallback)) .r4ge-pdp-tab-fallback {
  display: none;
}

.r4ge-spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.r4ge-spec-list li,
.r4ge-pdp-tab-content table tr {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.r4ge-spec-list li:last-child,
.r4ge-pdp-tab-content table tr:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.r4ge-spec-list li span:first-child,
.r4ge-pdp-tab-content table th,
.r4ge-pdp-tab-content table td:first-child {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(var(--cl-t-primary), 0.42);
}

.r4ge-spec-list li span:last-child,
.r4ge-pdp-tab-content table td:last-child {
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(var(--cl-t-primary), 0.92);
  text-align: right;
}

.r4ge-func-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .r4ge-func-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .r4ge-func-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.r4ge-func-col {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.r4ge-func-col-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.r4ge-func-col--aim .r4ge-func-col-head {
  color: #fb923c;
}

.r4ge-func-col--esp .r4ge-func-col-head {
  color: #60a5fa;
}

.r4ge-func-col--misc .r4ge-func-col-head {
  color: #c084fc;
}

.r4ge-func-list {
  list-style: none;
  margin: 0;
  padding: 0.625rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  max-height: 18rem;
  overflow-y: auto;
}

.r4ge-func-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.625rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(var(--cl-t-primary), 0.72);
}

.r4ge-func-list li::before {
  content: "✓";
  font-size: 0.625rem;
  font-weight: 700;
  color: rgba(var(--cl-t-primary), 0.28);
}

.r4ge-func-col--aim .r4ge-func-list li {
  color: #fdba74;
  border-color: rgba(251, 146, 60, 0.14);
  background: rgba(251, 146, 60, 0.06);
}

.r4ge-func-col--aim .r4ge-func-list li::before {
  color: #fb923c;
}

.r4ge-func-col--esp .r4ge-func-list li {
  color: #93c5fd;
  border-color: rgba(96, 165, 250, 0.14);
  background: rgba(96, 165, 250, 0.06);
}

.r4ge-func-col--esp .r4ge-func-list li::before {
  color: #60a5fa;
}

.r4ge-func-col--misc .r4ge-func-list li {
  color: #d8b4fe;
  border-color: rgba(192, 132, 252, 0.14);
  background: rgba(192, 132, 252, 0.06);
}

.r4ge-func-col--misc .r4ge-func-list li::before {
  color: #c084fc;
}

.r4ge-pdp-extra-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.r4ge-pdp-extra-tabs:empty {
  display: none;
}

.r4ge-pdp-accordion {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(12, 12, 12, 0.55);
  overflow: hidden;
}

.r4ge-pdp-accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(var(--cl-t-primary), 0.9);
  text-align: left;
  transition: background 0.2s;
}

.r4ge-pdp-accordion-btn:hover {
  background: rgba(255, 255, 255, 0.02);
}

.r4ge-pdp-accordion-btn i {
  font-size: 0.625rem;
  color: rgba(var(--cl-t-primary), 0.4);
  transition: transform 0.2s;
}

.r4ge-pdp-accordion-btn i.is-open {
  transform: rotate(180deg);
}

.r4ge-pdp-accordion-content {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(var(--cl-t-primary), 0.65);
}

.r4ge-pdp-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 1.25rem;
}

@media (min-width: 640px) {
  .r4ge-pdp-reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .r4ge-pdp-reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.r4ge-pdp-review {
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.r4ge-pdp-review-top {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
}

.r4ge-pdp-review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: rgba(var(--cl-accent), 0.9);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.r4ge-pdp-review-stars {
  display: flex;
  gap: 0.125rem;
  color: #fbbf24;
  font-size: 0.5625rem;
}

.r4ge-pdp-review-date {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.625rem;
  color: rgba(var(--cl-t-primary), 0.35);
}

.r4ge-pdp-review-text {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(var(--cl-t-primary), 0.65);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.r4ge-pdp-reviews-more {
  display: flex;
  justify-content: center;
  padding: 0 1.25rem 1.25rem;
}

.r4ge-pdp-reviews-empty {
  padding: 2rem 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(var(--cl-t-primary), 0.4);
}

.r4ge-pdp-sidebar-sticky {
  position: sticky;
  top: 5.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.r4ge-pdp-buy-card {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 12, 12, 0.82);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.r4ge-pdp-buy-head {
  padding: 1.25rem 1.25rem 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.r4ge-pdp-buy-label {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--cl-t-primary), 0.38);
}

.r4ge-pdp-buy-price {
  margin-top: 0.375rem;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(var(--cl-t-primary), 1);
}

.r4ge-pdp-buy-stock {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #4ade80;
}

.r4ge-pdp-buy-stock--out {
  color: #f87171;
}

.r4ge-pdp-form form > div {
  border: 0 !important;
  background: transparent !important;
  padding: 1rem 1.25rem 1.25rem !important;
}

.r4ge-pdp-form label {
  display: block;
  margin-bottom: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(var(--cl-t-primary), 0.4);
}

.r4ge-pdp-form .mb-4.pb-4.border-b {
  margin-bottom: 1rem !important;
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

.r4ge-pdp-form .flex.flex-col.gap-2 > button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding: 0.875rem 1rem !important;
  border-radius: 0.625rem !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.02) !important;
  transition: border-color 0.2s, background 0.2s !important;
}

.r4ge-pdp-form .flex.flex-col.gap-2 > button:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.04) !important;
}

.r4ge-pdp-form .flex.flex-col.gap-2 > button[class*="border-accent"] {
  border-color: rgba(255, 255, 255, 0.45) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.r4ge-pdp-form .flex.flex-col.gap-2 > button .text-base {
  font-size: 0.875rem !important;
  font-weight: 600 !important;
}

.r4ge-pdp-form .flex.flex-col.gap-2 > button .bg-white\/\[0\.025\] {
  padding: 0.25rem 0.5rem !important;
  border-radius: 0.375rem !important;
  background: rgba(255, 255, 255, 0.12) !important;
  font-weight: 700 !important;
  color: rgba(var(--cl-accent), 1) !important;
}

.r4ge-pdp-form .flex.flex-col.gap-4.mt-4 {
  margin-top: 1rem !important;
}

.r4ge-pdp-form .flex.flex-col.gap-4.mt-4 button[type="submit"] {
  width: 100%;
  padding: 0.95rem 1.25rem !important;
  border-radius: 0.625rem !important;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #050505 !important;
  background: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.55) !important;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.2);
  transition: filter 0.2s, transform 0.2s !important;
}

.r4ge-pdp-form .flex.flex-col.gap-4.mt-4 button[type="submit"] *,
.r4ge-pdp-form .flex.flex-col.gap-4.mt-4 button[type="submit"] .r4ge-btn-content,
.r4ge-pay-btn.r4ge-btn--primary,
.r4ge-pay-btn.r4ge-btn--primary .r4ge-btn-content,
.r4ge-pay-btn.r4ge-btn--primary .r4ge-btn-content * {
  color: #050505 !important;
}

.r4ge-pdp-form .flex.flex-col.gap-4.mt-4 button[type="submit"]:hover:not(:disabled) {
  filter: brightness(0.96);
  transform: translateY(-1px);
}

.r4ge-pdp-form label[for="quantity"],
.r4ge-pdp-form label[for="quantity"] + div {
  display: none;
}

.r4ge-pdp-quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.r4ge-pdp-quick-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  min-height: 4.25rem;
  padding: 0.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(12, 12, 12, 0.55);
  font-size: 0.6875rem;
  font-weight: 600;
  color: rgba(var(--cl-t-primary), 0.55);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

a.r4ge-pdp-quick-btn:hover {
  color: rgba(var(--cl-t-primary), 0.9);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.r4ge-pdp-quick-btn i {
  font-size: 1rem;
  color: rgba(var(--cl-accent), 0.85);
}

.r4ge-pdp-payments {
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(12, 12, 12, 0.55);
}

.r4ge-pdp-payments-label {
  display: block;
  margin-bottom: 0.625rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--cl-t-primary), 0.35);
}

.r4ge-pdp-payments-icons {
  display: flex;
  gap: 0.5rem;
}

.r4ge-pdp-payments-icons span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(var(--cl-t-primary), 0.45);
  font-size: 0.875rem;
}

.r4ge-pdp-related {
  margin-top: 2rem;
}

.r4ge-pdp-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(var(--cl-accent), 0.9);
  text-decoration: none;
  transition: color 0.2s;
}

.r4ge-pdp-related-link:hover {
  color: rgba(var(--cl-t-primary), 0.95);
}

.r4ge-pdp-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.25rem;
}

@media (min-width: 640px) {
  .r4ge-pdp-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .r4ge-pdp-related-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
/* Product page payment buttons */
.r4ge-pay-actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.r4ge-pay-email {
  margin-bottom: 0.25rem;
}

.r4ge-pay-btn {
  width: 100%;
  min-height: 3.125rem;
  font-size: 0.9375rem;
  border-radius: 0.625rem;
}

.r4ge-pay-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
}

.r4ge-pay-btn:not(:disabled):active {
  transition-duration: 0.08s;
}

.r4ge-pay-btn.is-ripple:not(:disabled) {
  transform: translate3d(var(--magnet-x), var(--magnet-y), 0) scale(0.975)
    perspective(600px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
}

.r4ge-pay-btn-ripple {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.35) 0%, transparent 55%);
  transition: opacity 0.15s ease;
}

.r4ge-pay-btn.is-ripple .r4ge-pay-btn-ripple {
  opacity: 1;
}

.r4ge-pay-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.4375rem;
  font-size: 0.8125rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.r4ge-pay-btn--ru .r4ge-pay-btn-icon--ru {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(var(--cl-accent), 1);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.r4ge-pay-btn.is-hover .r4ge-pay-btn-icon {
  transform: scale(1.08);
}

.r4ge-pay-btn--ru {
  color: rgba(var(--cl-accent), 1);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), 0 4px 20px rgba(0, 0, 0, 0.2);
}

.r4ge-pay-btn--ru::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.r4ge-pay-btn--ru.is-hover {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.22), 0 4px 24px rgba(0, 0, 0, 0.25);
}

.r4ge-pay-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.125rem 0;
}

.r4ge-pay-divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.r4ge-pay-divider__text {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(var(--cl-t-primary), 0.28);
}

/* RU payment modal (oplata.info) */
.r4ge-ru-pay-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.r4ge-ru-pay-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 18, 0.82);
  backdrop-filter: blur(4px);
}

.r4ge-ru-pay-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 22rem;
  padding: 1.5rem 1.25rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(165deg, rgba(14, 20, 36, 0.98) 0%, rgba(12, 12, 12, 0.98) 100%);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.08);
  text-align: center;
}

.r4ge-ru-pay-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.65rem;
  border: none;
  background: transparent;
  color: rgba(var(--cl-t-primary), 0.45);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s;
}

.r4ge-ru-pay-modal__close:hover {
  color: rgba(var(--cl-t-primary), 0.9);
}

.r4ge-ru-pay-modal__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(var(--cl-t-primary), 1);
  margin-bottom: 0.35rem;
}

.r4ge-ru-pay-modal__label {
  font-size: 0.75rem;
  color: rgba(var(--cl-t-primary), 0.45);
  margin-bottom: 0.25rem;
}

.r4ge-ru-pay-modal__variant {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(var(--cl-t-primary), 0.95);
  margin-bottom: 0.35rem;
}

.r4ge-ru-pay-modal__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(var(--cl-accent), 1);
  margin-bottom: 1.125rem;
}

.r4ge-ru-pay-modal__btn {
  width: 100%;
  margin-top: 0.25rem;
  text-decoration: none;
  background: linear-gradient(145deg, #ffffff 0%, #d8d8d8 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.16) !important;
}
.r4ge-ru-pay-modal__btn .r4ge-btn-content,
.r4ge-ru-pay-modal__btn .r4ge-btn-content * {
  color: #050505 !important;
}
.r4ge-ru-pay-modal__rub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  margin-right: 0.15rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: #050505 !important;
  background: transparent !important;
  box-shadow: none !important;
}
.r4ge-ru-pay-modal__rub i {
  color: #050505 !important;
}

.r4ge-ru-pay-modal__note {
  margin-top: 0.875rem;
  font-size: 0.6875rem;
  line-height: 1.45;
  color: rgba(var(--cl-t-primary), 0.4);
}

/* ===== Status page ===== */
.r4ge-status-page .r4ge-status-head {
  text-align: center;
  margin-bottom: 2.5rem;
  animation: r4ge-fade-up 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.r4ge-status-eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.r4ge-status-title {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fafafa;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.12);
}

.r4ge-status-subtitle {
  margin: 0.75rem auto 0;
  max-width: 28rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.45);
}

.r4ge-status-summary {
  display: flex;
  justify-content: center;
  margin-top: 1.35rem;
}

.r4ge-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 222, 128, 0.28);
  background: rgba(74, 222, 128, 0.08);
  color: #4ade80;
  font-size: 0.8rem;
  font-weight: 600;
}

.r4ge-status-pill-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.7);
  animation: r4ge-status-blink 1.6s ease-in-out infinite;
}

@keyframes r4ge-status-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.85); }
}

.r4ge-status-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.r4ge-status-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 0.5rem;
}

.r4ge-status-group-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  padding-left: 0.25rem;
}

.r4ge-status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.92), rgba(8, 8, 8, 0.88));
  backdrop-filter: blur(12px);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.r4ge-status-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 30px rgba(255, 255, 255, 0.05);
}

.r4ge-status-card-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.r4ge-status-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  overflow: hidden;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
}

.r4ge-status-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.r4ge-status-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fafafa;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(52vw, 22rem);
}

.r4ge-status-card-meta {
  margin-top: 0.2rem;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
}

.r4ge-status-card-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.r4ge-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(74, 222, 128, 0.28);
  background: rgba(74, 222, 128, 0.1);
}

.r4ge-status-badge-dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  flex-shrink: 0;
}

.r4ge-status-badge-pulse {
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  opacity: 0.45;
  animation: r4ge-status-pulse 1.8s ease-out infinite;
}

@keyframes r4ge-status-pulse {
  0% { transform: scale(0.7); opacity: 0.55; }
  70% { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

.r4ge-status-badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.r4ge-status-card-go {
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.r4ge-status-card:hover .r4ge-status-card-go {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateX(2px);
}

.r4ge-status-list .r4ge-status-card:nth-child(1) { animation-delay: 0.05s; }
.r4ge-status-list .r4ge-status-card:nth-child(2) { animation-delay: 0.1s; }
.r4ge-status-list .r4ge-status-card:nth-child(3) { animation-delay: 0.15s; }
.r4ge-status-list .r4ge-status-card:nth-child(4) { animation-delay: 0.2s; }
.r4ge-status-list .r4ge-status-card:nth-child(5) { animation-delay: 0.25s; }
.r4ge-status-list .r4ge-status-card:nth-child(n+6) { animation-delay: 0.3s; }

@media (max-width: 640px) {
  .r4ge-status-card {
    padding: 0.9rem;
  }
  .r4ge-status-card-meta {
    display: none;
  }
  .r4ge-status-badge-label {
    font-size: 0.68rem;
  }
}


/* ===== Configurable PDP features ===== */
.r4ge-pdp-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1.25rem 0 1.5rem;
}

@media (min-width: 900px) {
  .r4ge-pdp-features {
    gap: 1rem;
  }
}

.r4ge-pdp-stat,
.r4ge-pdp-rating-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 4.75rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(145deg, rgba(20, 20, 20, 0.95), rgba(8, 8, 8, 0.9));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.r4ge-pdp-stat:hover,
.r4ge-pdp-rating-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.r4ge-pdp-stat-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.r4ge-pdp-stat-body,
.r4ge-pdp-rating-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  flex: 1;
}

.r4ge-pdp-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
}

.r4ge-pdp-stat-value,
.r4ge-pdp-rating-card-score {
  font-size: 0.95rem;
  font-weight: 750;
  color: #fafafa;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.r4ge-pdp-rating-card-bar {
  display: block;
  height: 3px;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.r4ge-pdp-rating-card-bar > span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #fff;
}

.r4ge-pdp-rating-card--green .r4ge-pdp-rating-card-score { color: #4ade80; }
.r4ge-pdp-rating-card--green .r4ge-pdp-rating-card-bar > span { background: #4ade80; box-shadow: 0 0 12px rgba(74, 222, 128, 0.45); }
.r4ge-pdp-rating-card--blue .r4ge-pdp-rating-card-score { color: #93c5fd; }
.r4ge-pdp-rating-card--blue .r4ge-pdp-rating-card-bar > span { background: #60a5fa; }
.r4ge-pdp-rating-card--orange .r4ge-pdp-rating-card-score { color: #fdba74; }
.r4ge-pdp-rating-card--orange .r4ge-pdp-rating-card-bar > span { background: #fb923c; }
.r4ge-pdp-rating-card--white .r4ge-pdp-rating-card-score { color: #fff; }
.r4ge-pdp-rating-card--white .r4ge-pdp-rating-card-bar > span { background: #fff; }

.r4ge-pdp-panel-toggle {
  border-radius: 0.9rem !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(12, 12, 12, 0.85) !important;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease !important;
}

.r4ge-pdp-panel-toggle.is-active {
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.r4ge-pdp-panel-inner {
  border-radius: 1.1rem !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.95), rgba(6, 6, 6, 0.92)) !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.r4ge-af-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 0.25rem;
}

@media (min-width: 800px) {
  .r4ge-af-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.r4ge-af-col {
  border-radius: 1rem;
  border: 1px solid color-mix(in srgb, var(--af-color, #fff) 28%, transparent);
  background: rgba(8, 8, 8, 0.72);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.r4ge-af-col:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35), 0 0 24px color-mix(in srgb, var(--af-color, #fff) 12%, transparent);
}

.r4ge-af-title {
  margin: 0;
  padding: 1rem 1.1rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--af-color, #fff);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: color-mix(in srgb, var(--af-color, #fff) 8%, transparent);
}

.r4ge-af-items {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.85rem;
}

.r4ge-af-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 0.8rem;
  border-radius: 0.7rem;
  border: 1px solid color-mix(in srgb, var(--af-color, #fff) 28%, transparent);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.88rem;
  font-weight: 650;
  color: #f4f4f5;
}

.r4ge-af-item i {
  color: var(--af-color, #fff);
  font-size: 0.7rem;
}


.r4ge-pdp-tab-content:has(.r4ge-spec-from-tab:not(:empty)) .r4ge-spec-list-fallback,
.r4ge-pdp-tab-content:has(.r4ge-spec-from-tab:not(:empty)) .r4ge-af-grid-fallback,
.r4ge-pdp-tab-content:has(#auto-requirements:not(:empty)) .r4ge-spec-list-fallback {
  display: none !important;
}


.r4ge-af-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-top: 0.25rem;
  align-items: stretch;
}

@media (min-width: 800px) {
  .r4ge-af-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.r4ge-af-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid color-mix(in srgb, var(--af-color, #fff) 28%, transparent);
  background: rgba(8, 8, 8, 0.72);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.r4ge-af-col:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35), 0 0 24px color-mix(in srgb, var(--af-color, #fff) 12%, transparent);
}

.r4ge-af-title {
  margin: 0;
  padding: 1rem 1.1rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--af-color, #fff);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: color-mix(in srgb, var(--af-color, #fff) 8%, transparent);
}

.r4ge-af-items {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.85rem;
  flex: 1;
}

.r4ge-af-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.7rem 0.8rem;
  border-radius: 0.7rem;
  border: 1px solid color-mix(in srgb, var(--af-color, #fff) 28%, transparent);
  background: rgba(255, 255, 255, 0.02);
  font-size: 0.88rem;
  font-weight: 650;
  color: #f4f4f5;
  line-height: 1.35;
  word-break: normal;
  overflow-wrap: break-word;
  hyphens: none;
}

.r4ge-af-item span {
  min-width: 0;
  flex: 1;
  word-break: normal;
  overflow-wrap: break-word;
  white-space: normal;
}

.r4ge-af-item i {
  color: var(--af-color, #fff);
  font-size: 0.7rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}


/* ===== FIX: product gallery / Splide must not stack ===== */
.r4ge-pdp-gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 26rem;
  overflow: hidden;
}

.r4ge-pdp-gallery-main .splide,
.r4ge-pdp-gallery-main .splide__track,
.r4ge-pdp-gallery-main .aspect-product-page-image {
  height: 100% !important;
  max-height: 100%;
}

.r4ge-pdp-splide .splide__track {
  overflow: hidden !important;
}

.r4ge-pdp-splide .splide__list {
  display: flex !important;
  flex-direction: row !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.r4ge-pdp-splide .splide__slide {
  width: 100% !important;
  flex: 0 0 100% !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}

.r4ge-pdp-splide:not(.is-initialized) .splide__slide:not(:first-child),
.r4ge-pdp-splide:not(.is-initialized) .splide__slide:not(:first-child) img {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  left: -9999px !important;
}

.r4ge-pdp-gallery-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}


/* ===== Legal pages (Refund / Terms) — Kernelab black premium ===== */
.r4ge-legal-page {
  position: relative;
}

.r4ge-legal-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.25rem;
}

.r4ge-legal-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.06);
}

.r4ge-legal-title {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fafafa;
}

.r4ge-legal-subtitle {
  margin: 0 auto 1rem;
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.48);
}

.r4ge-legal-updated {
  display: inline-flex;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 500;
}

.r4ge-legal-cards {
  display: grid;
  gap: 0.85rem;
  margin: 0 auto 1.5rem;
  max-width: 56rem;
}

.r4ge-legal-cards--3 {
  grid-template-columns: 1fr;
}

.r4ge-legal-cards--4 {
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .r4ge-legal-cards--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .r4ge-legal-cards--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .r4ge-legal-cards--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.r4ge-legal-card {
  position: relative;
  padding: 1.15rem 1.15rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.015) 100%),
    rgba(10, 10, 10, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.r4ge-legal-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.02) 100%),
    rgba(12, 12, 12, 0.85);
}

.r4ge-legal-card-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  color: #0a0a0a;
  background: linear-gradient(145deg, #ffffff 0%, #cfcfcf 100%);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
}

.r4ge-legal-card-icon--soft {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.r4ge-legal-card-title {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f5f5f5;
}

.r4ge-legal-card-text {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
}

.r4ge-legal-rules {
  max-width: 56rem;
  margin: 0 auto 1.25rem;
  padding: 1.25rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(8, 8, 8, 0.75);
}

.r4ge-legal-rules-title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fafafa;
}

.r4ge-legal-rules-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.r4ge-legal-rule {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.9rem 1rem;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.r4ge-legal-rule-num {
  flex: 0 0 auto;
  min-width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #0a0a0a;
  background: linear-gradient(145deg, #fff 0%, #d0d0d0 100%);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.1);
}

.r4ge-legal-rule p {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.r4ge-legal-full {
  max-width: 56rem;
  margin: 0 auto 1.25rem;
  padding: 1.25rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 8, 0.65);
}

.r4ge-legal-full-title {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fafafa;
}

.r4ge-legal-full-body {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.r4ge-legal-cta {
  max-width: 56rem;
  margin: 0 auto;
  padding: 1.15rem 1.25rem;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%),
    rgba(10, 10, 10, 0.8);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

@media (min-width: 720px) {
  .r4ge-legal-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.r4ge-legal-cta-copy h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fafafa;
}

.r4ge-legal-cta-copy p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.45);
}

.r4ge-legal-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0a0a0a !important;
  background: linear-gradient(145deg, #ffffff 0%, #d8d8d8 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.16);
  text-decoration: none !important;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.r4ge-legal-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 36px rgba(255, 255, 255, 0.24);
}


/* ===== Before / After compare (Rust category) ===== */
.r4ge-ba {
  position: relative;
  max-width: 56rem;
  margin: 0 auto 2.25rem;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}

.r4ge-ba-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: min(58vh, 28rem);
  overflow: hidden;
  border-radius: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #050505;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 24px 60px rgba(0, 0, 0, 0.45);
  cursor: ew-resize;
}

.r4ge-ba-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.r4ge-ba-img--after {
  position: absolute;
  inset: 0;
}

.r4ge-ba-before-clip {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  overflow: hidden;
  z-index: 2;
}

.r4ge-ba-img--before {
  position: absolute;
  inset: 0 auto 0 0;
  height: 100%;
  max-width: none;
}

.r4ge-ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  width: 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.r4ge-ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(255,255,255,0.15), #fff 20%, #fff 80%, rgba(255,255,255,0.15));
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.35);
}

.r4ge-ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.6rem;
  height: 2.6rem;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #0a0a0a;
  font-size: 0.85rem;
  background: linear-gradient(145deg, #ffffff 0%, #d4d4d4 100%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.28);
}

.r4ge-ba-tag {
  position: absolute;
  z-index: 4;
  top: 0.85rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.r4ge-ba-tag--before {
  left: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.r4ge-ba-tag--after {
  right: 0.85rem;
  color: #0a0a0a;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.r4ge-ba-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  margin: 0;
}
.r4ge-ba-shell {
  position: relative;
}
.r4ge-ba-shell > .r4ge-ba-range {
  inset: 0.55rem;
  border-radius: 1rem;
}

.r4ge-ba.is-dragging .r4ge-ba-knob {
  transform: translate(-50%, -50%) scale(1.08);
}

@media (max-width: 640px) {
  .r4ge-ba {
    margin-bottom: 1.5rem;
  }
  .r4ge-ba-frame {
    border-radius: 0.9rem;
    max-height: 42vh;
  }
  .r4ge-ba-knob {
    width: 2.25rem;
    height: 2.25rem;
  }
}


.r4ge-ba-home {
  max-width: 56rem;
  margin: 0 auto 2rem;
}

.r4ge-ba-home-label {
  text-align: center;
  margin-bottom: 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.r4ge-ba--home {
  margin-bottom: 0;
}

.r4ge-ba--home .r4ge-ba-frame {
  max-height: min(52vh, 26rem);
}


/* ===== Beauty polish — motion, navbar, hero, cards, BA frame ===== */

/* Custom scrollbar */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.22) transparent;
}
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.16);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.28); background-clip: padding-box; }

/* Scroll reveal */
.r4ge-reveal {
  opacity: 0;
  transform: translateY(22px);
  filter: blur(4px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--r4ge-reveal-delay, 0s);
  will-change: opacity, transform, filter;
}
.r4ge-reveal-in {
  opacity: 1;
  transform: none;
  filter: none;
}
@media (prefers-reduced-motion: reduce) {
  .r4ge-reveal,
  .r4ge-reveal-in {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* Navbar on scroll */
.r4ge-header-wrap {
  position: sticky;
  top: 0;
  z-index: 60;
  transition: padding 0.35s ease, background 0.35s ease;
}
.r4ge-header-wrap.is-scrolled {
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  background: linear-gradient(180deg, rgba(5,5,5,0.88) 0%, rgba(5,5,5,0.55) 100%);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}
.r4ge-header-wrap.is-scrolled .r4ge-nav-main {
  border-color: rgba(255,255,255,0.1);
  background: rgba(12,12,12,0.72);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04) inset, 0 12px 36px rgba(0,0,0,0.35);
}
.r4ge-header-wrap.is-compact .r4ge-nav-main {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
}
.r4ge-nav-link {
  position: relative;
}
.r4ge-nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0.15rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transform: translateX(-50%);
  transition: width 0.28s ease;
  box-shadow: 0 0 12px rgba(255,255,255,0.45);
}
.r4ge-nav-link:hover::after,
.r4ge-nav-link-active::after {
  width: 1.1rem;
}
.r4ge-nav-icon-btn,
.r4ge-lang-btn {
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.r4ge-nav-icon-btn:hover {
  transform: translateY(-1px);
}

/* Hero cinematic */
.r4ge-hero {
  position: relative;
  overflow: hidden;
}
.r4ge-hero-orbit {
  position: absolute;
  left: 50%;
  top: 18%;
  width: min(720px, 90vw);
  height: min(720px, 90vw);
  transform: translate(-50%, -40%);
  border-radius: 50%;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.07) 0%, transparent 42%),
    conic-gradient(from 180deg, transparent, rgba(255,255,255,0.06), transparent 30%, rgba(255,255,255,0.04), transparent 60%);
  mask-image: radial-gradient(circle, black 20%, transparent 70%);
  animation: r4ge-orbit-spin 28s linear infinite;
  opacity: 0.7;
}
@keyframes r4ge-orbit-spin {
  to { transform: translate(-50%, -40%) rotate(360deg); }
}
.r4ge-brand {
  text-shadow: 0 0 60px rgba(255,255,255,0.22), 0 0 120px rgba(255,255,255,0.08);
}
.r4ge-hero-stat {
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.r4ge-hero-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
}
.r4ge-hero-badge--live .r4ge-hero-badge-dot {
  box-shadow: 0 0 0 0 rgba(120, 255, 170, 0.55);
  animation: r4ge-live-pulse 1.8s ease-out infinite;
}
@keyframes r4ge-live-pulse {
  70% { box-shadow: 0 0 0 8px rgba(120, 255, 170, 0); }
  100% { box-shadow: 0 0 0 0 rgba(120, 255, 170, 0); }
}

/* Category cards polish */
.r4ge-category-card {
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), border-color 0.35s ease, box-shadow 0.45s ease;
}
.r4ge-category-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 24px 50px rgba(0,0,0,0.45),
    0 0 40px rgba(255,255,255,0.04);
}
.r4ge-category-media {
  position: relative;
  overflow: hidden;
}
.r4ge-category-media::after {
  content: '';
  position: absolute;
  inset: -40% auto auto -20%;
  width: 60%;
  height: 180%;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.18) 48%, transparent 62%);
  transform: translateX(-120%) rotate(12deg);
  transition: transform 0.9s ease;
  pointer-events: none;
  z-index: 3;
}
.r4ge-category-card:hover .r4ge-category-media::after {
  transform: translateX(220%) rotate(12deg);
}
.r4ge-category-img {
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1), filter 0.45s ease;
}
.r4ge-category-card:hover .r4ge-category-img {
  transform: scale(1.07);
  filter: brightness(1.08) contrast(1.05);
}
.r4ge-category-hot {
  animation: r4ge-hot-flicker 2.4s ease-in-out infinite;
}
@keyframes r4ge-hot-flicker {
  0%, 100% { box-shadow: 0 0 12px rgba(255, 180, 60, 0.25); }
  50% { box-shadow: 0 0 22px rgba(255, 180, 60, 0.45); }
}

/* Product cards */
.r4ge-pcard {
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s ease, box-shadow 0.4s ease;
}
.r4ge-pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
}

/* Before/After premium monitor frame */
.r4ge-ba-shell {
  position: relative;
  padding: 0.55rem;
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%),
    rgba(8,8,8,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 28px 70px rgba(0,0,0,0.5),
    0 0 50px rgba(255,255,255,0.04);
}
.r4ge-ba-bezel {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent 35%, transparent 65%, rgba(255,255,255,0.05));
  opacity: 0.55;
}
.r4ge-ba-shell .r4ge-ba-frame {
  border-radius: 1rem;
  max-height: min(58vh, 28rem);
  box-shadow: inset 0 0 40px rgba(0,0,0,0.35);
}
.r4ge-ba-scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(180deg, transparent 40%, rgba(255,255,255,0.04) 50%, transparent 60%);
  mix-blend-mode: soft-light;
  animation: r4ge-ba-scan 5.5s ease-in-out infinite;
  opacity: 0.45;
}
@keyframes r4ge-ba-scan {
  0%, 100% { transform: translateY(-30%); opacity: 0.2; }
  50% { transform: translateY(30%); opacity: 0.5; }
}
.r4ge-ba-knob {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.r4ge-ba.is-dragging .r4ge-ba-knob,
.r4ge-ba-shell:hover .r4ge-ba-knob {
  box-shadow: 0 0 36px rgba(255,255,255,0.4);
}
.r4ge-ba-home-label {
  letter-spacing: 0.16em;
}

/* Buttons shine boost */
.r4ge-btn--primary .r4ge-btn-shine,
.r4ge-legal-cta-btn {
  position: relative;
  overflow: hidden;
}
.r4ge-btn--primary:hover {
  transform: translateY(-1px);
}

/* Status / legal subtle lift */
.r4ge-status-card,
.r4ge-legal-card,
.r4ge-legal-rule {
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.r4ge-status-card:hover,
.r4ge-legal-card:hover {
  transform: translateY(-3px);
}

/* Footer fade */
.r4ge-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ===== Beauty TOP v2 — tilt, sticky buy, depth ===== */

.r4ge-tilt {
  transform-style: preserve-3d;
  will-change: transform;
}
.r4ge-tilt::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: radial-gradient(
    480px circle at var(--tilt-x, 50%) var(--tilt-y, 50%),
    rgba(255,255,255,0.14),
    transparent 42%
  );
}
.r4ge-tilt:hover::before {
  opacity: 1;
}
.r4ge-category-card.r4ge-tilt,
.r4ge-pcard.r4ge-tilt {
  position: relative;
}
.r4ge-category-card .r4ge-category-media,
.r4ge-pcard .r4ge-pcard-media {
  transition: transform 0.2s ease-out;
}

.r4ge-section-sep {
  position: relative;
}
.r4ge-section-sep::before {
  content: '';
  position: absolute;
  left: 10%;
  right: 10%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  pointer-events: none;
}

.r4ge-pcard-shine {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.r4ge-pcard:hover .r4ge-pcard-shine {
  opacity: 1;
}

.r4ge-pdp-buy-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.05);
}
.r4ge-pdp-buy-card::after {
  content: '';
  position: absolute;
  inset: -40% auto auto -30%;
  width: 55%;
  height: 160%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: translateX(-140%) rotate(14deg);
  pointer-events: none;
}
.r4ge-pdp-buy-card:hover::after {
  animation: r4ge-buy-shine 1.1s ease;
}
@keyframes r4ge-buy-shine {
  to { transform: translateX(320%) rotate(14deg); }
}
.r4ge-pdp-buy-card.r4ge-pulse-once {
  animation: r4ge-card-pulse 0.85s ease;
}
@keyframes r4ge-card-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.2), 0 20px 50px rgba(0,0,0,0.35); }
  40% { box-shadow: 0 0 0 6px rgba(255,255,255,0.08), 0 20px 50px rgba(0,0,0,0.35); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0), 0 20px 50px rgba(0,0,0,0.35); }
}

.r4ge-sticky-buy {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 0.7rem 0.85rem calc(0.7rem + env(safe-area-inset-bottom));
  pointer-events: none;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.r4ge-sticky-buy.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.r4ge-sticky-buy-inner {
  max-width: 40rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04) inset;
}
.r4ge-sticky-buy-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.r4ge-sticky-buy-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 52vw;
}
.r4ge-sticky-buy-price {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.r4ge-sticky-buy-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.05rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.35);
  background: linear-gradient(145deg, #fff 0%, #d4d4d4 100%);
  color: #0a0a0a;
  font-size: 0.88rem;
  font-weight: 800;
  box-shadow: 0 0 24px rgba(255,255,255,0.18);
}
.r4ge-sticky-buy-btn:active {
  transform: scale(0.98);
}
@media (min-width: 1024px) {
  .r4ge-sticky-buy { display: none !important; }
}

.r4ge-pdp-gallery-main {
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
  overflow: hidden;
}

.r4ge-pdp-panel-toggle {
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.r4ge-pdp-panel-toggle:hover,
.r4ge-pdp-panel-toggle.is-active {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
}
.r4ge-pdp-panel-toggle.is-active {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset;
}

.r4ge-af-col {
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.r4ge-af-col:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.14);
}

.r4ge-footer .r4ge-logo-text,
.r4ge-footer a:hover {
  text-shadow: 0 0 24px rgba(255,255,255,0.12);
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

::selection {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

/* ===== Space background upgrade — deeper cosmos ===== */
.r4ge-grid-bg,
.r4ge-space {
  overflow: hidden;
  background: #010101 !important;
}

.r4ge-space-base,
.r4ge-grid-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 95% 55% at 50% -8%, rgba(255, 255, 255, 0.13) 0%, transparent 58%),
    radial-gradient(ellipse 45% 35% at 8% 78%, rgba(190, 205, 255, 0.06) 0%, transparent 58%),
    radial-gradient(ellipse 42% 32% at 92% 68%, rgba(255, 255, 255, 0.05) 0%, transparent 55%),
    radial-gradient(ellipse 30% 22% at 72% 18%, rgba(255, 255, 255, 0.04) 0%, transparent 60%),
    radial-gradient(ellipse 55% 40% at 50% 100%, rgba(255, 255, 255, 0.035) 0%, transparent 55%),
    linear-gradient(180deg, #080808 0%, #030303 38%, #000 100%) !important;
  background-color: #010101 !important;
}

.r4ge-space-nebula {
  position: absolute;
  inset: -10%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  background:
    radial-gradient(ellipse 50% 35% at 20% 30%, rgba(255, 255, 255, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 45% 40% at 80% 55%, rgba(200, 210, 255, 0.05) 0%, transparent 72%),
    radial-gradient(ellipse 40% 30% at 55% 75%, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
  filter: blur(28px);
  animation: r4ge-nebula-drift 40s ease-in-out infinite alternate;
}

.r4ge-space-aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background:
    linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.03) 42%, transparent 55%),
    linear-gradient(245deg, transparent 30%, rgba(210, 220, 255, 0.025) 50%, transparent 68%);
  mix-blend-mode: screen;
  animation: r4ge-aurora-shift 18s ease-in-out infinite alternate;
}

.r4ge-space-horizon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 50% 100%, rgba(255, 255, 255, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.25) 100%);
}

.r4ge-stars {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}

.r4ge-space-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 75% at 50% 40%, transparent 15%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, transparent 28%, transparent 62%, rgba(0, 0, 0, 0.65) 100%);
}

.r4ge-space-scan {
  display: none;
}

@keyframes r4ge-nebula-drift {
  0% { transform: translate3d(-2%, -1%, 0) scale(1); }
  100% { transform: translate3d(3%, 2%, 0) scale(1.06); }
}

@keyframes r4ge-aurora-shift {
  0% { opacity: 0.28; transform: translateX(-2%) skewX(-2deg); }
  100% { opacity: 0.5; transform: translateX(3%) skewX(2deg); }
}

@media (prefers-reduced-motion: reduce) {
  .r4ge-space-nebula,
  .r4ge-space-aurora {
    animation: none !important;
  }
}

/* ===== BA + Gameplay video side by side ===== */
.r4ge-ba-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 72rem;
  margin: 0 auto 2rem;
}

@media (min-width: 900px) {
  .r4ge-ba-media {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
    align-items: stretch;
  }
}

.r4ge-ba-media-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

.r4ge-ba-media-caption {
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

.r4ge-ba-media .r4ge-ba,
.r4ge-ba-media .r4ge-ba--inline {
  max-width: none;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.r4ge-ba-media .r4ge-ba-shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.r4ge-ba-media .r4ge-ba-shell .r4ge-ba-frame {
  flex: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: none;
  min-height: 16rem;
  height: auto;
}

.r4ge-ba-video-shell {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0.45rem;
  border-radius: 1.35rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%),
    rgba(8,8,8,0.9);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 28px 70px rgba(0,0,0,0.5),
    0 0 50px rgba(255,255,255,0.04);
}

.r4ge-ba-video-bezel {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent 35%, transparent 65%, rgba(255,255,255,0.05));
  opacity: 0.55;
}

.r4ge-ba-video-frame {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 16rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1rem;
  background: #050505;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.35);
}

.r4ge-ba-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.r4ge-ba-video-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #0a0a0a;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.4);
  pointer-events: none;
}

.r4ge-ba-home-label {
  display: none;
}

@media (max-width: 899px) {
  .r4ge-ba-media .r4ge-ba-shell .r4ge-ba-frame,
  .r4ge-ba-video-frame {
    min-height: 14rem;
    aspect-ratio: 16 / 9;
  }
}


/* ===== Spoofer category banner ===== */
.r4ge-spoofer-banner {
  max-width: 56rem;
  margin: 0 auto 2rem;
}
.r4ge-spoofer-banner-shell {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: #000;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 24px 60px rgba(0,0,0,0.45),
    0 0 40px rgba(255,255,255,0.04);
}
.r4ge-spoofer-banner-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(42vh, 22rem);
  object-fit: cover;
  object-position: center left;
}
@media (max-width: 640px) {
  .r4ge-spoofer-banner-img {
    max-height: 36vh;
    object-position: left center;
  }
}


/* ===== Rust Public / Private tabs + Private showcase ===== */
.r4ge-rust-tabs {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 auto 1.5rem;
  max-width: 28rem;
  padding: 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
}

.r4ge-rust-tab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: all 0.25s ease;
}

.r4ge-rust-tab i {
  font-size: 0.85rem;
  opacity: 0.85;
}

.r4ge-rust-tab:hover {
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.04);
}

.r4ge-rust-tab.is-active {
  color: #0a0a0a;
  background: linear-gradient(145deg, #fff 0%, #d6d6d6 100%);
  border-color: rgba(255,255,255,0.35);
  box-shadow: 0 0 24px rgba(255,255,255,0.16);
}

.r4ge-rust-tab-badge {
  display: inline-flex;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: rgba(0,0,0,0.7);
  color: #fff;
}

.r4ge-rust-tab.is-active .r4ge-rust-tab-badge {
  background: #0a0a0a;
  color: #fff;
}

.r4ge-private {
  max-width: 56rem;
  margin: 0 auto;
}

.r4ge-private-hero {
  position: relative;
  text-align: center;
  padding: 1.5rem 1rem 1.25rem;
  margin-bottom: 1.1rem;
  overflow: hidden;
  border-radius: 1.35rem;
  border: 1px solid rgba(255,255,255,0.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.015) 100%),
    rgba(8,8,8,0.85);
}

.r4ge-private-glow {
  position: absolute;
  left: 50%;
  top: -20%;
  width: min(520px, 90vw);
  height: 280px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.r4ge-private-eyebrow {
  position: relative;
  display: inline-flex;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.r4ge-private-title {
  position: relative;
  margin: 0.85rem 0 0.55rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fafafa;
  text-shadow: 0 0 50px rgba(255,255,255,0.12);
}

.r4ge-private-sub {
  position: relative;
  margin: 0 auto;
  max-width: 34rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.48);
}

.r4ge-private-pills {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1rem;
}

.r4ge-private-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.72);
  font-size: 0.72rem;
  font-weight: 600;
}

.r4ge-private-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

@media (min-width: 800px) {
  .r4ge-private-gallery {
    grid-template-columns: 1fr 1.15fr;
  }
}

.r4ge-private-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 1.15rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: #050505;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.r4ge-private-shot img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 14rem;
  max-height: 22rem;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.16,1,0.3,1);
}

.r4ge-private-shot:hover img {
  transform: scale(1.04);
}

.r4ge-private-shot figcaption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: rgba(255,255,255,0.9);
}

.r4ge-private-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 700px) {
  .r4ge-private-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.r4ge-private-card {
  padding: 1.05rem 1.05rem 1.15rem;
  border-radius: 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.025);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.r4ge-private-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.16);
}

.r4ge-private-card-icon {
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  border-radius: 0.65rem;
  color: #0a0a0a;
  background: linear-gradient(145deg, #fff, #d0d0d0);
  box-shadow: 0 0 18px rgba(255,255,255,0.12);
}

.r4ge-private-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f5f5f5;
}

.r4ge-private-card p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.45);
}

.r4ge-private-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  padding: 1.15rem 1.25rem;
  border-radius: 1.2rem;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.015) 100%),
    rgba(10,10,10,0.85);
  box-shadow: 0 0 40px rgba(255,255,255,0.04);
}

@media (min-width: 720px) {
  .r4ge-private-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.r4ge-private-cta-copy h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
  font-weight: 750;
  color: #fafafa;
}

.r4ge-private-cta-copy p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.45);
}

.r4ge-private-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.25rem;
  border-radius: 0.85rem;
  font-size: 0.9rem;
  font-weight: 800;
  color: #0a0a0a !important;
  background: linear-gradient(145deg, #ffffff 0%, #d4d4d4 100%);
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 0 32px rgba(255,255,255,0.18);
  text-decoration: none !important;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.r4ge-private-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 40px rgba(255,255,255,0.28);
}

.r4ge-private-cta-btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.r4ge-private-cta-btn i {
  font-size: 1.1rem;
}


/* Private block under BA/video */
.r4ge-private-wrap {
  margin: 1.25rem auto 1.75rem;
  max-width: 56rem;
  padding: 0 0.25rem;
}

/* Lang switch � always clickable above header overlays */
.r4ge-header-wrap .r4ge-lang-switch,
.r4ge-header-wrap .r4ge-lang-btn {
  pointer-events: auto !important;
  position: relative;
  z-index: 70;
  cursor: pointer !important;
}
.r4ge-lang-btn {
  border: 0;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}
body.r4ge-custom-cursor .r4ge-lang-btn,
body.r4ge-custom-cursor .r4ge-lang-switch {
  cursor: pointer !important;
}


/* Products must never stay invisible from reveal */
.r4ge-products-grid .r4ge-pcard,
.r4ge-products-grid .r4ge-reveal,
.r4ge-products-block .r4ge-reveal {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  filter: none !important;
  animation: none !important;
}

.r4ge-products-block {
  margin: 1.5rem auto 2rem;
  max-width: 80rem;
}

.r4ge-products-block-head {
  text-align: center;
  margin: 0 0 1.25rem;
}

.r4ge-products-block-title {
  display: inline-flex;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.r4ge-private-shot {
  background-size: cover;
  background-position: center;
  background-color: #0a0a0a;
  min-height: 14rem;
}

.r4ge-private-shot img {
  opacity: 1;
}

.r4ge-private-shot img[src=""],
.r4ge-private-shot img:not([src]) {
  display: none;
}


/* CRITICAL: product cards must always be visible */
.r4ge-pcard,
a.r4ge-pcard,
.r4ge-products-grid .r4ge-pcard,
.r4ge-products-grid a.r4ge-pcard.r4ge-reveal,
.r4ge-products-grid .r4ge-reveal {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  filter: none !important;
  animation: none !important;
}


/* ===== LANG SWITCH CLICK FIX ===== */
.r4ge-header-wrap .r4ge-nav-shell,
.r4ge-header-wrap .r4ge-nav-main,
.r4ge-header-wrap .r4ge-lang-switch,
.r4ge-header-wrap .r4ge-lang-btn,
.r4ge-header-wrap a,
.r4ge-header-wrap button {
  pointer-events: auto !important;
  position: relative;
  z-index: 80;
}
.r4ge-lang-switch {
  pointer-events: auto !important;
  z-index: 90;
  position: relative;
  isolation: isolate;
}
.r4ge-lang-btn {
  pointer-events: auto !important;
  cursor: pointer !important;
  z-index: 91;
  position: relative;
  border: 0;
  background: transparent;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}
body.r4ge-custom-cursor .r4ge-lang-btn,
body.r4ge-custom-cursor .r4ge-lang-switch {
  cursor: pointer !important;
  pointer-events: auto !important;
}
.r4ge-cursor,
.r4ge-cursor-dot,
.r4ge-cursor-ring {
  pointer-events: none !important;
}


/* ===== LANG HIT-AREA + HEADER CLICK FIX ===== */
.r4ge-nav-actions {
  position: relative;
  z-index: 100;
  pointer-events: auto !important;
}
.r4ge-lang-switch {
  display: inline-flex !important;
  align-items: center;
  gap: 0.15rem;
  padding: 0.25rem !important;
  pointer-events: auto !important;
  position: relative;
  z-index: 101;
}
.r4ge-lang-btn {
  min-width: 2.4rem !important;
  min-height: 2.1rem !important;
  padding: 0.45rem 0.75rem !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  z-index: 102;
  position: relative;
  border: 0 !important;
  border-radius: 0.4rem !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  color: rgba(255,255,255,0.45) !important;
  background: transparent !important;
}
.r4ge-lang-btn.is-active {
  color: #fff !important;
  background: rgba(255,255,255,0.18) !important;
}
.r4ge-header-wrap,
.r4ge-header-wrap .r4ge-nav-shell,
.r4ge-header-wrap .r4ge-nav-main,
.r4ge-header-wrap .r4ge-lang-switch,
.r4ge-header-wrap .r4ge-lang-btn {
  pointer-events: auto !important;
}
.r4ge-header-wrap {
  pointer-events: none !important;
}
.r4ge-header-wrap .r4ge-nav-shell {
  pointer-events: auto !important;
}
body.r4ge-custom-cursor,
body.r4ge-custom-cursor * {
  cursor: auto !important;
}
#r4ge-cursor { display: none !important; }


/* ===== FINAL LANG FIX (links + huge hit area) ===== */
.r4ge-nav-links { overflow: hidden; }
.r4ge-nav-actions {
  position: relative !important;
  z-index: 10000 !important;
  pointer-events: auto !important;
  flex-shrink: 0 !important;
}
.r4ge-header-wrap { z-index: 9999 !important; }
.r4ge-header-wrap .r4ge-nav-shell,
.r4ge-header-wrap .r4ge-nav-main,
.r4ge-header-wrap .r4ge-nav-actions,
.r4ge-header-wrap .r4ge-lang-switch,
.r4ge-header-wrap .r4ge-lang-btn,
.r4ge-header-wrap a,
.r4ge-header-wrap button {
  pointer-events: auto !important;
}
.r4ge-lang-switch {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.2rem !important;
  padding: 0.2rem !important;
  border-radius: 0.55rem !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  background: rgba(0,0,0,0.45) !important;
  pointer-events: auto !important;
  z-index: 10001 !important;
}
a.r4ge-lang-btn,
.r4ge-lang-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 2.75rem !important;
  min-height: 2.35rem !important;
  padding: 0.5rem 0.85rem !important;
  border: 0 !important;
  border-radius: 0.45rem !important;
  text-decoration: none !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  color: rgba(255,255,255,0.5) !important;
  background: transparent !important;
  cursor: pointer !important;
  pointer-events: auto !important;
  position: relative !important;
  z-index: 10002 !important;
}
a.r4ge-lang-btn.is-active,
.r4ge-lang-btn.is-active {
  color: #fff !important;
  background: rgba(255,255,255,0.2) !important;
}
#r4ge-cursor { display: none !important; pointer-events: none !important; }
body.r4ge-custom-cursor, body.r4ge-custom-cursor * { cursor: auto !important; }


/* ===== FIX v3: long functionality lists ===== */
.r4ge-pdp-panel-inner--functionality,
.r4ge-pdp-panel-body,
.r4ge-pdp-tab-content {
  overflow: visible !important;
}

.r4ge-af-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 0.9rem !important;
  align-items: start !important;
  width: 100% !important;
}

@media (min-width: 720px) {
  .r4ge-af-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 1100px) {
  .r4ge-af-grid {
    grid-template-columns: repeat(3, minmax(260px, 1fr)) !important;
  }
}

.r4ge-af-col {
  min-width: 0 !important;
  height: auto !important;
  overflow: visible !important;
}

.r4ge-af-items {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.4rem !important;
  padding: 0.75rem !important;
}

.r4ge-af-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.5rem !important;
  padding: 0.55rem 0.7rem !important;
  font-size: 0.82rem !important;
  line-height: 1.4 !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  white-space: normal !important;
  hyphens: none !important;
}

.r4ge-af-item span {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
  white-space: normal !important;
  /* if still too long — scroll instead of mid-word chop */
  overflow-x: auto !important;
}

/* known editor class that can force break-all */
.r4ge-pdp-tab-content.editor .r4ge-af-item,
.r4ge-pdp-tab-content.editor .r4ge-af-item span,
.editor .r4ge-af-item,
.editor .r4ge-af-item span {
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

/* ===== FIX v4: clear spacing between feature rows ===== */
.r4ge-af-items { gap: 0.65rem !important; padding: 0.9rem !important; }
.r4ge-af-item {
  padding: 0.75rem 0.85rem !important;
  margin: 0 !important;
  line-height: 1.45 !important;
  align-items: center !important;
}
.r4ge-af-item span { line-height: 1.45 !important; }