/**
 * Naam Jap Counter Online - Premium Design System v4.0
 * rnjcSoulDesignSystem.css
 * Version: 4.0.0 - Final Refinement
 */

/* =============================================
   GOOGLE FONTS
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600&family=Inter:wght@400;500;600&display=swap');

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  /* 8px Spacing System */
  --rnjc_space_1: 0.5rem;    /* 8px */
  --rnjc_space_2: 1rem;      /* 16px */
  --rnjc_space_3: 1.5rem;    /* 24px */
  --rnjc_space_4: 2rem;      /* 32px */
  --rnjc_space_5: 3rem;      /* 48px */
  --rnjc_space_6: 4rem;      /* 64px */
  
  /* Colors - Richer Gold */
  --rnjc_color_deepPurple: #1a092b;
  --rnjc_color_mysticPurple: #2b0f45;
  --rnjc_color_divineGold: #e4bc5f;
  --rnjc_color_richGold: #d4af37;
  --rnjc_color_softGold: #f4e4bc;
  --rnjc_color_pureWhite: #ffffff;
  --rnjc_color_gentleGray: #e8e0f0;
  --rnjc_color_divineGlow: rgba(228, 188, 95, 0.2);
  
  /* Glass Colors */
  --rnjc_glass_bg: rgba(255, 255, 255, 0.06);
  --rnjc_glass_bg_hover: rgba(255, 255, 255, 0.1);
  --rnjc_glass_border: rgba(228, 188, 95, 0.35);
  --rnjc_glass_border_hover: rgba(228, 188, 95, 0.55);
  
  /* Gradients */
  --rnjc_gradient_spiritualBg: linear-gradient(135deg, var(--rnjc_color_deepPurple) 0%, var(--rnjc_color_mysticPurple) 50%, #3d1a5c 100%);
  --rnjc_gradient_divineAura: radial-gradient(ellipse at center, var(--rnjc_color_divineGlow) 0%, transparent 70%);
  --rnjc_gradient_goldenShine: linear-gradient(135deg, #e4bc5f 0%, #f0d78c 50%, #e4bc5f 100%);
  --rnjc_gradient_goldText: linear-gradient(135deg, #f4e4bc 0%, #e4bc5f 50%, #d4af37 100%);
  --rnjc_gradient_headerDivider: linear-gradient(90deg, transparent 0%, rgba(228, 188, 95, 0.4) 50%, transparent 100%);
  
  /* Typography */
  --rnjc_font_headings: 'Cinzel', Georgia, serif;
  --rnjc_font_body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --rnjc_font_devanagari: 'Noto Sans Devanagari', sans-serif;
  
  /* Border Radius */
  --rnjc_radius_soft: 16px;
  --rnjc_radius_round: 50%;
  --rnjc_radius_pill: 999px;
  
  /* Shadows */
  --rnjc_shadow_glow: 0 0 25px rgba(228, 188, 95, 0.25);
  --rnjc_shadow_bead: 0 0 18px rgba(228, 188, 95, 0.3);
  --rnjc_shadow_card: 0 8px 32px rgba(0, 0, 0, 0.25);
  
  /* Transitions */
  --rnjc_transition_fast: 0.15s ease;
  --rnjc_transition_smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--rnjc_font_body);
  font-weight: 400;
  background: var(--rnjc_gradient_spiritualBg);
  color: var(--rnjc_color_gentleGray);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Remove all default focus outlines globally */
button,
button:focus,
button:focus-visible,
button:active,
a,
a:focus,
a:focus-visible,
a:active {
  outline: none;
  box-shadow: none;
}

/* =============================================
   HEADER
   ============================================= */
.rnjc_header {
  min-height: 48px;
  padding: 8px var(--rnjc_space_2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

@media (min-width: 768px) {
  .rnjc_header {
    min-height: 56px;
    padding: 8px var(--rnjc_space_3);
  }
}

.rnjc_header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: var(--rnjc_gradient_headerDivider);
  opacity: 0.7;
}

.rnjc_header__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--rnjc_color_softGold);
  z-index: 100;
  flex-shrink: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  position: absolute;
  left: 16px;
}

.rnjc_header__hamburger:focus,
.rnjc_header__hamburger:focus-visible,
.rnjc_header__hamburger:active {
  outline: none;
  box-shadow: none;
}

@media (min-width: 768px) {
  .rnjc_header__hamburger {
    display: none;
  }
}

.rnjc_header__hamburger svg {
  width: 24px;
  height: 24px;
}

.rnjc_header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  text-decoration: none;
  overflow: hidden;
  max-width: calc(100% - 100px);
}

.rnjc_header__logo img {
  max-height: 44px;
  height: auto;
  width: auto;
  max-width: 80%;
  display: block;
  object-fit: contain;
}

@media (max-width: 480px) {
  .rnjc_header__logo img {
    max-height: 38px;
  }
}

@media (min-width: 768px) {
  .rnjc_header__logo {
    max-width: none;
  }
  
  .rnjc_header__logo img {
    max-height: 64px;
    max-width: 100%;
  }
}

/* =============================================
   NAVIGATION - Mobile Hamburger, Desktop Pills
   ============================================= */
.rnjc_nav {
  display: none;
}

@media (min-width: 768px) {
  .rnjc_nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 8px var(--rnjc_space_3);
    flex-wrap: wrap;
  }
}

.rnjc_nav__link {
  font-family: var(--rnjc_font_body);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(244, 228, 188, 0.85);
  text-decoration: none;
  padding: 10px 22px;
  border-radius: var(--rnjc_radius_pill);
  background: var(--rnjc_glass_bg);
  border: 1px solid var(--rnjc_glass_border);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  letter-spacing: 0.02em;
  will-change: transform;
}

.rnjc_nav__link:hover {
  background: var(--rnjc_glass_bg_hover);
  border-color: var(--rnjc_glass_border_hover);
  color: var(--rnjc_color_softGold);
  transform: translateY(-2px);
}

.rnjc_nav__link--active {
  background: var(--rnjc_gradient_goldenShine);
  color: var(--rnjc_color_deepPurple);
  font-weight: 600;
}

/* Mobile Hamburger Drawer Navigation */
.rnjc_navDrawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: rgba(26, 9, 43, 0.98);
  z-index: 1000;
  transform: translateX(-100%) translateZ(0);
  transition: transform 0.2s ease-out;
  padding: var(--rnjc_space_4) var(--rnjc_space_3);
  will-change: transform;
}

.rnjc_navDrawer.rnjc_state_open {
  transform: translateX(0) translateZ(0);
}

.rnjc_navDrawer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  color: var(--rnjc_color_softGold);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.rnjc_navDrawer__close:focus,
.rnjc_navDrawer__close:focus-visible,
.rnjc_navDrawer__close:active {
  outline: none;
  box-shadow: none;
}

.rnjc_navDrawer__title {
  font-family: var(--rnjc_font_headings);
  font-size: 1.1rem;
  color: var(--rnjc_color_divineGold);
  margin-bottom: var(--rnjc_space_3);
  padding-bottom: var(--rnjc_space_2);
  border-bottom: 1px solid rgba(228, 188, 95, 0.2);
}

.rnjc_navDrawer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.rnjc_navDrawer__item {
  margin-bottom: var(--rnjc_space_2);
}

.rnjc_navDrawer__link {
  display: block;
  font-family: var(--rnjc_font_body);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(244, 228, 188, 0.9);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: var(--rnjc_radius_soft);
  background: var(--rnjc_glass_bg);
  border: none;
  transition: opacity 0.2s ease-out;
  outline: none;
}

.rnjc_navDrawer__link:focus,
.rnjc_navDrawer__link:focus-visible,
.rnjc_navDrawer__link:active {
  outline: none;
  box-shadow: none;
}

.rnjc_navDrawer__link:hover,
.rnjc_navDrawer__link.rnjc_state_active {
  background: var(--rnjc_gradient_goldenShine);
  color: var(--rnjc_color_deepPurple);
}

.rnjc_navDrawer__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out, visibility 0.3s;
}

.rnjc_navDrawer__backdrop.rnjc_state_visible {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .rnjc_navDrawer,
  .rnjc_navDrawer__backdrop {
    display: none;
  }
}

/* =============================================
   JAAP INTERFACE
   ============================================= */
.rnjc_jaapInterface {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--rnjc_space_1) var(--rnjc_space_2) var(--rnjc_space_2);
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .rnjc_jaapInterface {
    padding: var(--rnjc_space_2) var(--rnjc_space_3) var(--rnjc_space_3);
  }
}

.rnjc_jaapInterface__mantraDisplay {
  text-align: center;
  margin-bottom: var(--rnjc_space_1);
}

.rnjc_jaapInterface__mantraName {
  font-family: var(--rnjc_font_headings);
  font-size: clamp(1.6rem, 5vw, 2.25rem);
  font-weight: 600;
  color: var(--rnjc_color_divineGold);
  margin-bottom: var(--rnjc_space_1);
  letter-spacing: 0.04em;
  text-shadow: 0 0 30px rgba(228, 188, 95, 0.25);
}

.rnjc_jaapInterface__mantraDevanagari {
  font-family: var(--rnjc_font_devanagari);
  font-size: clamp(1.3rem, 3.5vw, 1.75rem);
  color: var(--rnjc_color_softGold);
  opacity: 0.9;
  letter-spacing: 0.06em;
}

/* =============================================
   MAIN COUNTER DISPLAY - POLISHED
   ============================================= */
.rnjc_counterDisplay {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 320px;
  margin-bottom: var(--rnjc_space_1);
}

@media (min-width: 768px) {
  .rnjc_counterDisplay {
    margin-bottom: var(--rnjc_space_2);
  }
}

.rnjc_counterDisplay__main {
  text-align: center;
  width: 100%;
  padding: var(--rnjc_space_2) var(--rnjc_space_3);
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid var(--rnjc_glass_border);
  border-radius: var(--rnjc_radius_soft);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
}

@media (min-width: 768px) {
  .rnjc_counterDisplay__main {
    padding: var(--rnjc_space_3) var(--rnjc_space_3);
  }
}

.rnjc_counterDisplay__label {
  font-family: var(--rnjc_font_headings);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--rnjc_color_softGold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--rnjc_space_1);
  opacity: 0.9;
}

.rnjc_counterDisplay__current {
  font-family: var(--rnjc_font_headings);
  font-size: clamp(3.5rem, 10vw, 5rem);
  font-weight: 600;
  background: var(--rnjc_gradient_goldText);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: 0.02em;
  filter: drop-shadow(0 0 25px rgba(228, 188, 95, 0.35));
  position: relative;
}

.rnjc_counterDisplay__target {
  font-size: 0.8rem;
  color: rgba(244, 228, 188, 0.55);
  margin-top: var(--rnjc_space_1);
  letter-spacing: 0.05em;
}

.rnjc_counterDisplay__divider {
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rnjc_color_divineGold) 20%, var(--rnjc_color_divineGold) 80%, transparent);
  margin: var(--rnjc_space_2) auto;
  opacity: 0.5;
  position: relative;
}

.rnjc_counterDisplay__divider::after {
  content: '✦';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.6rem;
  color: var(--rnjc_color_divineGold);
  opacity: 0.6;
  background: var(--rnjc_color_deepPurple);
  padding: 0 8px;
}

.rnjc_counterDisplay__malas {
  text-align: center;
  padding-top: var(--rnjc_space_1);
  border-top: 1px solid rgba(228, 188, 95, 0.1);
  margin-top: var(--rnjc_space_1);
}

.rnjc_counterDisplay__malasLabel {
  font-size: 0.65rem;
  color: rgba(244, 228, 188, 0.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.rnjc_counterDisplay__malasValue {
  font-family: var(--rnjc_font_headings);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--rnjc_color_divineGold);
  text-shadow: 0 0 15px rgba(228, 188, 95, 0.25);
}

/* =============================================
   TOOL STATS - MALA CARDS
   ============================================= */
.rnjc_toolStats {
  display: flex;
  justify-content: center;
  gap: var(--rnjc_space_2);
  margin-top: var(--rnjc_space_2);
  width: 100%;
}

.rnjc_toolStats__card {
  flex: 1;
  max-width: 140px;
  text-align: center;
  padding: var(--rnjc_space_2);
  background: var(--rnjc_glass_bg);
  border: 1px solid var(--rnjc_glass_border);
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.rnjc_toolStats__value {
  font-family: var(--rnjc_font_headings);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--rnjc_color_divineGold);
  line-height: 1;
}

.rnjc_toolStats__label {
  font-size: 0.65rem;
  color: rgba(244, 228, 188, 0.6);
  margin-top: 4px;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

/* =============================================
   BEAD CONTAINER
   ============================================= */
.rnjc_beadContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--rnjc_space_2);
  margin-top: var(--rnjc_space_1);
}

@media (min-width: 768px) {
  .rnjc_beadContainer {
    gap: var(--rnjc_space_3);
    margin-top: var(--rnjc_space_2);
  }
}

.rnjc_beadContainer__beadWrapper {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
}

/* Ensure overlays don't block clicks */
.rnjc_beadContainer__aura,
.rnjc_divinePulse,
.rnjc_goldenAura {
  pointer-events: none;
}

@media (min-width: 768px) {
  .rnjc_beadContainer__beadWrapper {
    width: 155px;
    height: 155px;
  }
}

.rnjc_beadContainer__bead {
  width: 68px;
  height: 68px;
  border-radius: var(--rnjc_radius_round);
  object-fit: contain;
  filter: drop-shadow(var(--rnjc_shadow_bead));
  animation: rnjc_breathe 10s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .rnjc_beadContainer__bead {
    width: 82px;
    height: 82px;
  }
}

@keyframes rnjc_breathe {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 12px rgba(228, 188, 95, 0.25));
  }
  50% {
    transform: scale(1.02);
    filter: drop-shadow(0 0 18px rgba(228, 188, 95, 0.4));
  }
}

/* Optimized Bead Pop Animation on Tap */
.rnjc_beadContainer__bead.rnjc_state_pop {
  animation: rnjc_beadPop 220ms ease-out;
  will-change: transform;
}

@keyframes rnjc_beadPop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.rnjc_beadContainer__aura {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: var(--rnjc_radius_round);
  background: var(--rnjc_gradient_divineAura);
  animation: rnjc_auraPulse 8s ease-in-out infinite;
  z-index: 1;
}

@media (min-width: 768px) {
  .rnjc_beadContainer__aura {
    width: 86px;
    height: 86px;
  }
}

@keyframes rnjc_auraPulse {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.7;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.rnjc_goldenAura {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(228, 188, 95, 0.1) 60deg,
    rgba(228, 188, 95, 0.2) 120deg,
    rgba(228, 188, 95, 0.1) 180deg,
    transparent 240deg,
    rgba(228, 188, 95, 0.1) 300deg,
    transparent 360deg
  );
  animation: rnjc_auraRotate 12s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@media (min-width: 768px) {
  .rnjc_goldenAura {
    width: 140px;
    height: 140px;
  }
}

@keyframes rnjc_auraRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* =============================================
   DIVINE RADIANCE PULSE - TAP EFFECT
   ============================================= */
.rnjc_divinePulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
}

@media (min-width: 768px) {
  .rnjc_divinePulse {
    width: 86px;
    height: 86px;
  }
}

/* 1) Soft Golden Energy Pulse - Expanding Halo */
.rnjc_divinePulse__halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  border: 1px solid rgba(228, 188, 95, 0.3);
  background: radial-gradient(circle, rgba(228, 188, 95, 0.15) 0%, transparent 70%);
  opacity: 0;
  will-change: transform, opacity;
}

.rnjc_divinePulse.rnjc_state_active .rnjc_divinePulse__halo {
  animation: rnjc_pulseHalo 850ms cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes rnjc_pulseHalo {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  15% {
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }
}

/* 2) Subtle Light Sweep - Rotating Gradient Arc */
.rnjc_divinePulse__sweep {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(228, 188, 95, 0) 60deg,
    rgba(228, 188, 95, 0.3) 90deg,
    rgba(228, 188, 95, 0) 120deg,
    transparent 360deg
  );
  opacity: 0;
  will-change: transform, opacity;
}

.rnjc_divinePulse.rnjc_state_active .rnjc_divinePulse__sweep {
  animation: rnjc_lightSweep 800ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes rnjc_lightSweep {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
    opacity: 0;
  }
}

/* 3) Micro Orbit Glow - Tiny Gold Dots */
.rnjc_divinePulse__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  opacity: 0;
  will-change: transform, opacity;
}

.rnjc_divinePulse__orbitDot {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(228, 188, 95, 0.9);
  box-shadow: 0 0 4px rgba(228, 188, 95, 0.6);
}

.rnjc_divinePulse__orbitDot:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.rnjc_divinePulse__orbitDot:nth-child(2) { top: 50%; right: 0; transform: translateY(-50%); }
.rnjc_divinePulse__orbitDot:nth-child(3) { bottom: 0; left: 50%; transform: translateX(-50%); }
.rnjc_divinePulse__orbitDot:nth-child(4) { top: 50%; left: 0; transform: translateY(-50%); }

.rnjc_divinePulse.rnjc_state_active .rnjc_divinePulse__orbit {
  animation: rnjc_microOrbit 700ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes rnjc_microOrbit {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
  }
  30% {
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0;
  }
}

/* =============================================
   BEAD TOGGLE - PERFORMANCE OPTIMIZED
   ============================================= */
.rnjc_beadContainer__toggleWrapper {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--rnjc_radius_pill);
  border: none;
  backdrop-filter: blur(12px);
  position: relative;
}

.rnjc_beadContainer__toggleOption {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--rnjc_radius_pill);
  font-family: var(--rnjc_font_body);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--rnjc_color_softGold);
  cursor: pointer;
  border: none;
  background: transparent;
  position: relative;
  z-index: 1;
  outline: none;
}

@media (min-width: 768px) {
  .rnjc_beadContainer__toggleOption {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

.rnjc_beadContainer__toggleOption:hover {
  color: #ffffff;
}

.rnjc_beadContainer__toggleOption:focus-visible {
  color: #ffffff;
}

.rnjc_beadContainer__toggleOption.rnjc_state_active {
  color: #1a092b;
  font-weight: 600;
}

/* Sliding indicator background - GPU optimized */
.rnjc_beadContainer__toggleWrapper::before {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: var(--rnjc_gradient_goldenShine);
  border-radius: var(--rnjc_radius_pill);
  transition: transform 0.2s ease-out;
  z-index: 0;
  will-change: transform;
  transform: translateX(0) translateZ(0);
}

.rnjc_beadContainer__toggleWrapper.rnjc_state_rudraksh::before {
  transform: translateX(calc(100% + 4px)) translateZ(0);
}

/* Bead icons in toggle */
.rnjc_beadContainer__toggleIcon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.2s ease-out;
  will-change: transform;
}

.rnjc_beadContainer__toggleIcon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.rnjc_beadContainer__toggleOption:hover .rnjc_beadContainer__toggleIcon {
  transform: scale(1.1);
}

/* =============================================
   PROGRESS BAR - Below Main Count
   ============================================= */
.rnjc_progressBar {
  width: 100%;
  max-width: 280px;
  height: 3px;
  background: rgba(228, 188, 95, 0.15);
  border-radius: 2px;
  margin: var(--rnjc_space_2) 0;
  overflow: hidden;
  position: relative;
}

.rnjc_progressBar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--rnjc_color_richGold), var(--rnjc_color_divineGold));
  border-radius: 2px;
  will-change: transform;
  transform: translateZ(0);
}

/* =============================================
   COUNTER HEADER - Toggle Buttons
   ============================================= */
.rnjc_counterDisplay__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--rnjc_space_2);
  gap: 8px;
}

.rnjc_counterDisplay__headerLeft {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rnjc_headerToggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--rnjc_glass_bg);
  border: none;
  border-radius: var(--rnjc_radius_round);
  cursor: pointer;
  transition: opacity 0.2s ease-out;
  color: rgba(244, 228, 188, 0.5);
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  will-change: opacity;
}

.rnjc_headerToggle:focus,
.rnjc_headerToggle:focus-visible,
.rnjc_headerToggle:active {
  outline: none;
  box-shadow: none;
}

.rnjc_headerToggle:hover {
  background: var(--rnjc_glass_bg_hover);
  color: rgba(244, 228, 188, 0.8);
}

.rnjc_headerToggle.rnjc_state_active {
  background: rgba(228, 188, 95, 0.15);
  color: var(--rnjc_color_divineGold);
  opacity: 1;
}

.rnjc_headerToggle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rnjc_resetButton {
  font-family: var(--rnjc_font_body);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(244, 228, 188, 0.7);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s ease-out;
  padding: 4px 8px;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  outline: none;
}

.rnjc_resetButton:hover {
  color: rgba(220, 100, 100, 1);
  opacity: 1;
}

.rnjc_resetButton:active {
  opacity: 0.7;
}

.rnjc_resetButton__icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.rnjc_resetButton__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =============================================
   VIEW STATISTICS BUTTON - REDESIGNED
   ============================================= */
.rnjc_viewStatsButton {
  font-family: var(--rnjc_font_body);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.04) 100%);
  border: 1px solid var(--rnjc_glass_border);
  border-radius: var(--rnjc_radius_pill);
  backdrop-filter: blur(12px);
  cursor: pointer;
  transition: all var(--rnjc_transition_smooth);
  margin-top: var(--rnjc_space_1);
}

.rnjc_viewStatsButton:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.08) 100%);
  border-color: var(--rnjc_glass_border_hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(228, 188, 95, 0.2);
}

.rnjc_viewStatsButton__icon {
  width: 18px;
  height: 18px;
  color: var(--rnjc_color_divineGold);
  flex-shrink: 0;
}

.rnjc_viewStatsButton__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rnjc_viewStatsButton__text {
  font-size: 0.85rem;
  font-weight: 500;
  background: var(--rnjc_gradient_goldText);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.02em;
}

/* =============================================
   FLOATING MANTRA - SIDEWAYS WAVE ANIMATION
   ============================================= */
.rnjc_floatingMantra {
  position: fixed;
  font-family: var(--rnjc_font_headings);
  font-size: clamp(0.75rem, 2vw, 1rem);
  font-weight: 500;
  color: var(--rnjc_color_divineGold);
  text-shadow: 0 0 12px rgba(228, 188, 95, 0.5);
  pointer-events: none;
  z-index: 1000;
  animation: rnjc_floatWave 1.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  white-space: nowrap;
  opacity: 1;
  letter-spacing: 0.03em;
  will-change: transform, opacity;
}

@keyframes rnjc_floatWave {
  0% {
    opacity: 0;
    transform: translateX(40px) translateY(0) scale(0.8);
  }
  10% {
    opacity: 1;
    transform: translateX(20px) translateY(-5px) scale(1);
  }
  40% {
    opacity: 1;
    transform: translateX(-10px) translateY(8px) scale(1);
  }
  70% {
    opacity: 0.6;
    transform: translateX(-30px) translateY(-3px) scale(0.95);
  }
  100% {
    opacity: 0;
    transform: translateX(-50px) translateY(5px) scale(0.85);
  }
}

/* =============================================
   STATISTICS DRAWER
   ============================================= */
.rnjc_statsDrawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--rnjc_transition_smooth);
}

.rnjc_statsDrawer.rnjc_state_open {
  opacity: 1;
  visibility: visible;
}

.rnjc_statsDrawer__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 9, 43, 0.7);
  backdrop-filter: blur(4px);
}

.rnjc_statsDrawer__panel {
  position: relative;
  width: 100%;
  max-width: 480px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid var(--rnjc_glass_border);
  border-radius: var(--rnjc_radius_soft) var(--rnjc_radius_soft) 0 0;
  padding: var(--rnjc_space_3);
  transform: translateY(100%);
  transition: transform var(--rnjc_transition_smooth);
}

.rnjc_statsDrawer.rnjc_state_open .rnjc_statsDrawer__panel {
  transform: translateY(0);
}

.rnjc_statsDrawer__handle {
  width: 40px;
  height: 4px;
  background: rgba(228, 188, 95, 0.3);
  border-radius: 2px;
  margin: 0 auto var(--rnjc_space_3);
}

.rnjc_statsDrawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--rnjc_space_3);
}

.rnjc_statsDrawer__title {
  font-family: var(--rnjc_font_headings);
  font-size: 1.25rem;
  color: var(--rnjc_color_softGold);
  font-weight: 600;
}

.rnjc_statsDrawer__close {
  background: none;
  border: none;
  color: var(--rnjc_color_softGold);
  font-size: 1.75rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--rnjc_transition_fast);
  line-height: 1;
  padding: 0;
}

.rnjc_statsDrawer__close:hover {
  opacity: 1;
}

/* =============================================
   STATISTICS PANEL
   ============================================= */
.rnjc_statsPanel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.rnjc_statsPanel__card {
  background: var(--rnjc_glass_bg);
  border: 1px solid var(--rnjc_glass_border);
  border-radius: 12px;
  padding: var(--rnjc_space_2);
  text-align: center;
  transition: all var(--rnjc_transition_smooth);
}

.rnjc_statsPanel__card:hover {
  background: var(--rnjc_glass_bg_hover);
  border-color: var(--rnjc_glass_border_hover);
  transform: translateY(-2px);
}

.rnjc_statsPanel__value {
  font-family: var(--rnjc_font_headings);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--rnjc_color_divineGold);
  line-height: 1.2;
}

.rnjc_statsPanel__label {
  font-size: 0.65rem;
  color: rgba(244, 228, 188, 0.6);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.rnjc_statsPanel__progress {
  width: 100%;
  height: 2px;
  background: rgba(228, 188, 95, 0.1);
  border-radius: 1px;
  margin-top: 8px;
  overflow: hidden;
}

.rnjc_statsPanel__progressBar {
  height: 100%;
  background: linear-gradient(90deg, rgba(228, 188, 95, 0.5), var(--rnjc_color_divineGold));
  border-radius: 1px;
  will-change: transform;
  transform: translateZ(0);
}

.rnjc_statsPanel__challenge {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(228, 188, 95, 0.12) 0%, rgba(228, 188, 95, 0.04) 100%);
  text-align: center;
}

.rnjc_statsPanel__challengeTitle {
  font-size: 0.85rem;
  color: var(--rnjc_color_divineGold);
  font-weight: 600;
  margin-bottom: 8px;
}

.rnjc_statsPanel__challengeProgress {
  font-size: 1.1rem;
  color: var(--rnjc_color_softGold);
  font-weight: 600;
  margin-bottom: 4px;
}

.rnjc_statsPanel__challengeRemaining {
  font-size: 0.75rem;
  color: rgba(244, 228, 188, 0.65);
  margin-bottom: 8px;
}

.rnjc_statsPanel__challengeStatus {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 8px;
}

/* =============================================
   CELEBRATION OVERLAY
   ============================================= */
.rnjc_celebrationOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 9, 43, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  padding: var(--rnjc_space_3);
}

.rnjc_celebrationOverlay.rnjc_state_open {
  opacity: 1;
  visibility: visible;
}

.rnjc_celebrationOverlay__content {
  text-align: center;
  padding: var(--rnjc_space_4);
  max-width: 400px;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.03) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid var(--rnjc_glass_border);
  border-radius: var(--rnjc_radius_soft);
}

.rnjc_celebrationOverlay__icon {
  font-size: 3rem;
  margin-bottom: var(--rnjc_space_2);
  animation: rnjc_bounce 1.5s ease infinite;
}

@keyframes rnjc_bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.rnjc_celebrationOverlay__title {
  font-family: var(--rnjc_font_headings);
  font-size: 1.5rem;
  color: var(--rnjc_color_divineGold);
  margin-bottom: var(--rnjc_space_1);
}

.rnjc_celebrationOverlay__subtitle {
  font-size: 1.1rem;
  color: var(--rnjc_color_softGold);
  margin-bottom: var(--rnjc_space_2);
}

.rnjc_celebrationOverlay__devanagari {
  font-family: var(--rnjc_font_devanagari);
  font-size: 1rem;
  color: var(--rnjc_color_softGold);
  opacity: 0.85;
  margin-bottom: var(--rnjc_space_3);
  line-height: 1.6;
}

.rnjc_celebrationOverlay__actions {
  display: flex;
  flex-direction: column;
  gap: var(--rnjc_space_2);
}

@media (min-width: 480px) {
  .rnjc_celebrationOverlay__actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* Share Card Styles */
.rnjc_shareCard {
  padding: var(--rnjc_space_3);
  background: linear-gradient(135deg, #1f0d30 0%, #2b1545 100%);
  border-radius: 12px;
  margin-bottom: var(--rnjc_space_3);
  text-align: center;
  border: 1px solid rgba(228, 188, 95, 0.25);
}

.rnjc_shareCard__image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid rgba(228, 188, 95, 0.4);
  object-fit: cover;
  margin-bottom: var(--rnjc_space_2);
}

.rnjc_shareCard__title {
  font-family: var(--rnjc_font_headings);
  font-size: 1.4rem;
  color: var(--rnjc_color_divineGold);
  margin-bottom: var(--rnjc_space_2);
}

.rnjc_shareCard__input {
  width: 85%;
  padding: 10px 14px;
  background: rgba(43, 21, 69, 0.8);
  border: 1px solid rgba(228, 188, 95, 0.35);
  border-radius: 8px;
  color: var(--rnjc_color_softGold);
  font-size: 0.95rem;
  text-align: center;
  margin-bottom: var(--rnjc_space_2);
  font-family: var(--rnjc_font_body);
}

.rnjc_shareCard__input::placeholder {
  color: rgba(244, 228, 188, 0.5);
}

.rnjc_shareCard__input:focus {
  outline: none;
  border-color: rgba(228, 188, 95, 0.6);
}

.rnjc_shareCard__message {
  font-size: 1rem;
  color: var(--rnjc_color_softGold);
  margin-bottom: var(--rnjc_space_2);
  line-height: 1.5;
}

.rnjc_shareCard__quote {
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(244, 228, 188, 0.85);
  margin-bottom: var(--rnjc_space_2);
  line-height: 1.7;
  padding: 0 var(--rnjc_space_2);
}

.rnjc_shareCard__quoteAuthor {
  display: block;
  font-style: normal;
  color: var(--rnjc_color_divineGold);
  margin-top: 6px;
  font-weight: 500;
}

.rnjc_shareCard__cta {
  font-size: 0.8rem;
  color: rgba(244, 228, 188, 0.7);
  margin-bottom: 0;
}

/* =============================================
   BUTTONS
   ============================================= */
.rnjc_button {
  font-family: var(--rnjc_font_body);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: var(--rnjc_radius_pill);
  border: none;
  cursor: pointer;
  transition: all var(--rnjc_transition_smooth);
}

.rnjc_button--primary {
  background: var(--rnjc_gradient_goldenShine);
  color: var(--rnjc_color_deepPurple);
  font-weight: 600;
}

.rnjc_button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(228, 188, 95, 0.35);
}

.rnjc_button--secondary {
  background: var(--rnjc_glass_bg);
  color: var(--rnjc_color_softGold);
  border: 1px solid var(--rnjc_glass_border);
}

.rnjc_button--secondary:hover {
  background: var(--rnjc_glass_bg_hover);
  border-color: var(--rnjc_glass_border_hover);
}

.rnjc_button--whatsapp {
  background: #25D366;
  color: white;
}

.rnjc_button--whatsapp:hover {
  background: #22c55e;
  transform: translateY(-2px);
}

/* =============================================
   CONTENT SECTIONS
   ============================================= */
.rnjc_contentSection {
  padding: var(--rnjc_space_5) 0;
  border-top: 1px solid rgba(228, 188, 95, 0.1);
}

@media (min-width: 768px) {
  .rnjc_contentSection {
    padding: var(--rnjc_space_6) 0;
  }
}

.rnjc_contentSection__heading {
  text-align: center;
  margin-bottom: var(--rnjc_space_4);
}

.rnjc_contentSection__heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rnjc_color_divineGold), transparent);
  margin: var(--rnjc_space_2) auto 0;
  opacity: 0.5;
}

.rnjc_contentSection__body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--rnjc_space_3);
}

@media (min-width: 768px) {
  .rnjc_contentSection__body {
    padding: 0 var(--rnjc_space_4);
  }
}

.rnjc_contentSection__card {
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid var(--rnjc_glass_border);
  border-radius: var(--rnjc_radius_soft);
  padding: var(--rnjc_space_3);
  margin-bottom: var(--rnjc_space_3);
  transition: all var(--rnjc_transition_smooth);
}

@media (min-width: 768px) {
  .rnjc_contentSection__card {
    padding: var(--rnjc_space_4);
  }
}

.rnjc_contentSection__card:hover {
  border-color: var(--rnjc_glass_border_hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.rnjc_contentSection__cardTitle {
  font-family: var(--rnjc_font_headings);
  font-size: 1.15rem;
  color: var(--rnjc_color_softGold);
  margin-bottom: var(--rnjc_space_2);
  font-weight: 600;
  position: relative;
  padding-bottom: var(--rnjc_space_1);
}

.rnjc_contentSection__cardTitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--rnjc_color_divineGold);
  opacity: 0.5;
}

.rnjc_contentSection__card p {
  color: rgba(232, 224, 240, 0.9);
  line-height: 1.75;
  font-size: 0.95rem;
}

.rnjc_contentSection__list {
  list-style: none;
  padding: 0;
}

.rnjc_contentSection__listItem {
  padding: 8px 0;
  padding-left: var(--rnjc_space_3);
  position: relative;
  line-height: 1.7;
  font-size: 0.92rem;
  color: rgba(232, 224, 240, 0.85);
}

.rnjc_contentSection__listItem::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--rnjc_color_divineGold);
  font-size: 0.75rem;
  top: 0.6rem;
  opacity: 0.9;
}

.rnjc_contentSection__listItem strong {
  color: var(--rnjc_color_softGold);
  font-weight: 600;
}

/* =============================================
   CONTENT SECTION WITH IMAGE - PREMANAND
   ============================================= */
.rnjc_contentSection__withImage {
  display: flex;
  flex-direction: column;
  gap: var(--rnjc_space_3);
  margin-bottom: var(--rnjc_space_4);
}

@media (min-width: 768px) {
  .rnjc_contentSection__withImage {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--rnjc_space_4);
  }
}

.rnjc_contentSection__imageWrapper {
  flex: 0 0 auto;
  text-align: center;
  margin: var(--rnjc_space_3) 0;
}

@media (min-width: 768px) {
  .rnjc_contentSection__imageWrapper {
    flex: 0 0 400px;
    margin: var(--rnjc_space_2) 0;
  }
}

.rnjc_contentSection__image {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 16px;
  border: 1px solid rgba(228, 188, 95, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 40px rgba(228, 188, 95, 0.15);
  transition: transform 0.2s ease-out;
  will-change: transform;
}

@media (min-width: 768px) {
  .rnjc_contentSection__image {
    max-width: 400px;
  }
}

.rnjc_contentSection__image:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 50px rgba(228, 188, 95, 0.25);
}

.rnjc_contentSection__quote {
  margin-top: var(--rnjc_space_2);
  padding: var(--rnjc_space_2);
  background: linear-gradient(135deg, rgba(228, 188, 95, 0.08) 0%, rgba(228, 188, 95, 0.02) 100%);
  border-left: 1px solid rgba(228, 188, 95, 0.4);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(244, 228, 188, 0.85);
  line-height: 1.7;
}

.rnjc_contentSection__quoteAuthor {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--rnjc_color_divineGold);
  font-style: normal;
  font-weight: 500;
}

.rnjc_contentSection__textContent {
  flex: 1;
}

/* =============================================
   FAQ SECTION - SMOOTH ANIMATION
   ============================================= */
.rnjc_faqSection {
  max-width: 800px;
  margin: 0 auto;
}

.rnjc_faqSection__item {
  background: var(--rnjc_glass_bg);
  border: 1px solid var(--rnjc_glass_border);
  border-radius: 12px;
  margin-bottom: var(--rnjc_space_2);
  overflow: hidden;
  transition: all var(--rnjc_transition_smooth);
}

.rnjc_faqSection__question {
  width: 100%;
  padding: var(--rnjc_space_3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: inherit;
  transition: background var(--rnjc_transition_fast);
}

.rnjc_faqSection__question:hover {
  background: rgba(228, 188, 95, 0.05);
}

.rnjc_faqSection__questionText {
  font-family: var(--rnjc_font_body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--rnjc_color_softGold);
  padding-right: var(--rnjc_space_2);
  flex: 1;
  line-height: 1.5;
}

.rnjc_faqSection__icon {
  color: var(--rnjc_color_divineGold);
  font-size: 0.75rem;
  transition: transform 0.35s ease-in-out;
  flex-shrink: 0;
  opacity: 0.8;
}

.rnjc_faqSection__item.rnjc_state_open .rnjc_faqSection__icon {
  transform: rotate(180deg);
}

/* Smooth FAQ animation with max-height + opacity */
.rnjc_faqSection__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease-in-out, opacity 0.25s ease-in-out;
  will-change: max-height, opacity;
}

.rnjc_faqSection__answer-inner {
  padding: 0 var(--rnjc_space_3);
}

.rnjc_faqSection__item.rnjc_state_open .rnjc_faqSection__answer {
  max-height: 400px;
  opacity: 1;
}

.rnjc_faqSection__item.rnjc_state_open .rnjc_faqSection__answer-inner {
  padding: 0 var(--rnjc_space_3) var(--rnjc_space_3);
}

.rnjc_faqSection__answer p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(232, 224, 240, 0.85);
  line-height: 1.7;
}

/* =============================================
   FOOTER
   ============================================= */
.rnjc_footer {
  padding: var(--rnjc_space_4) var(--rnjc_space_3);
  text-align: center;
  border-top: 1px solid rgba(228, 188, 95, 0.15);
  margin-top: var(--rnjc_space_4);
  background: rgba(26, 9, 43, 0.5);
}

.rnjc_footer__logo {
  margin-bottom: var(--rnjc_space_2);
}

.rnjc_footer__logo img {
  height: 36px;
  width: auto;
  opacity: 0.9;
}

.rnjc_footer__nav {
  display: flex;
  justify-content: center;
  gap: var(--rnjc_space_2);
  flex-wrap: wrap;
  margin-bottom: var(--rnjc_space_2);
}

.rnjc_footer__divider {
  width: 60px;
  height: 1px;
  background: rgba(228, 188, 95, 0.25);
  margin: var(--rnjc_space_2) auto;
}

.rnjc_footer__pages {
  display: flex;
  justify-content: center;
  gap: var(--rnjc_space_2);
  flex-wrap: wrap;
  margin-bottom: var(--rnjc_space_3);
}

.rnjc_footer__link {
  font-size: 0.8rem;
  color: rgba(244, 228, 188, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.rnjc_footer__link:hover {
  color: var(--rnjc_color_divineGold);
}

.rnjc_footer__social {
  margin-bottom: var(--rnjc_space_3);
}

.rnjc_footer__socialLabel {
  display: block;
  font-size: 0.75rem;
  color: rgba(244, 228, 188, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--rnjc_space_1);
}

.rnjc_footer__socialIcons {
  display: flex;
  justify-content: center;
  gap: var(--rnjc_space_2);
}

.rnjc_footer__socialLink {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: rgba(244, 228, 188, 0.6);
  transition: all 0.2s ease;
}

.rnjc_footer__socialLink:hover {
  background: rgba(228, 188, 95, 0.15);
  color: var(--rnjc_color_divineGold);
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(228, 188, 95, 0.3);
}

.rnjc_footer__copyright {
  font-size: 0.75rem;
  color: rgba(244, 228, 188, 0.4);
}

.rnjc_footer__text {
  font-size: 0.8rem;
  color: rgba(244, 228, 188, 0.55);
}

.rnjc_footer__heart {
  color: var(--rnjc_color_divineGold);
}

/* =============================================
   ARIA
   ============================================= */
.rnjc_ariaLiveRegion {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--rnjc_color_divineGold);
  outline-offset: 2px;
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============================================
   PRINT
   ============================================= */
@media print {
  .rnjc_nav,
  .rnjc_statsDrawer,
  .rnjc_celebrationOverlay,
  .rnjc_beadContainer {
    display: none !important;
  }
}
