/* ───────────────────────────────────────────────────────────────
   RCADYA SDK — (Software Development Kit)
   Drop-in staking & matchmaking popups for any RCADYA Game.
   Pixel-perfect replica of the original intergrated, now imported
   ─────────────────────────────────────────────────────────────── */

.rcsdK-overlay,
.rcsdK-overlay *,
.rcsdK-overlay *::before,
.rcsdK-overlay *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.rcsdK-resultOverlay,
.rcsdK-resultOverlay *,
.rcsdK-resultOverlay *::before,
.rcsdK-resultOverlay *::after {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

.rcsdK-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .55) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: clamp(12px, 3vw, 28px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.rcsdK-overlay.rcsdK-visible {
  display: flex;
}

.rcsdK-card {
  position: relative;
  width: min(520px, 94vw) !important;
  border-radius: 18px !important;
  padding: clamp(16px, 3.2vw, 22px) !important;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .65) !important;
  overflow: hidden;
  color: #e6f0ff;
  background:
    radial-gradient(140% 120% at 50% 0%, rgba(38, 73, 128, .75) 0%, rgba(10, 16, 28, .92) 55%),
    radial-gradient(120% 90% at 50% 30%, rgba(255, 255, 255, .06) 0%, rgba(255, 255, 255, 0) 60%) !important;
}

.rcsdK-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(120, 170, 255, .25), rgba(255, 255, 255, 0));
  opacity: .35;
}

/* ─── Header / logo ─────────────────────────────────────────────
   Replicates .rc-header + .rc-logo + .rc-divider from the original
   ─────────────────────────────────────────────────────────────── */
.rcsdK-header {
  padding-top: 0px;
  margin-top: -4px;
  position: relative;
}

.rcsdK-logo {
  display: block;
  margin: 0 auto;
  height: clamp(22px, 4.5vw, 34px);
  width: auto;
  opacity: .95;
  filter:
    drop-shadow(0 0 6px rgba(90, 160, 255, .18))
    drop-shadow(0 0 14px rgba(90, 160, 255, .12));
}

.rcsdK-divider {
  height: 1px;
  margin: 10px 0 14px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(150, 200, 255, .35), rgba(255, 255, 255, 0));
}

/* Apply the brighter logo glow. */
@media (min-width: 768px) {
  .rcsdK-card > .rcsdK-header {
    margin: -18px -18px 0 -18px;
    padding: 16px 18px 0px 18px;
  }

  .rcsdK-card:not(.rcsdK-matchfound) > .rcsdK-header {
    padding-top: 10px;
  }

  /* Match-found: Pull logo up so it sits centred in the top section */
  .rcsdK-card.rcsdK-matchfound > .rcsdK-header {
    padding-top: 6px;
  }

  .rcsdK-card > .rcsdK-header .rcsdK-logo {
    filter:
      drop-shadow(0 0 6px rgba(90, 160, 255, .2))
      drop-shadow(0 0 8px rgba(255, 255, 255, 0.4)) !important;
  }
}

/* Mobile: Scale the logo up and apply the same bright glow */
@media (max-width: 767px) {
  .rcsdK-card > .rcsdK-header .rcsdK-logo {
    height: clamp(32px, 7vw, 44px) !important;
    filter:
      drop-shadow(0 0 6px rgba(90, 160, 255, .2))
      drop-shadow(0 0 8px rgba(255, 255, 255, 0.4)) !important;
  }
}

.rcsdK-titleRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 2px;
}

.rcsdK-title {
  margin: 0;
  font-weight: 900;
  letter-spacing: .2px;
  font-size: clamp(18px, 4.2vw, 26px);
}

.rcsdK-sub {
  margin: 6px 0 clamp(12px, 3vw, 18px) !important;
  font-size: clamp(12px, 2.9vw, 15px) !important;
  color: rgba(255, 255, 255, .82) !important;
}

/* ─── Stakes section ────────────────────────────────────────────*/
.rcsdK-sectionLabel {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-weight: 800;
  font-size: clamp(13px, 3vw, 16px);
  margin-bottom: 12px;
  text-align: left;
}

/* Three-column grid of stake buttons — mirrors .rc-stakes polished */
.rcsdK-stakesGrid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 10px !important;
  margin-bottom: 8px !important;
}

.rcsdK-stakeBtn {
  padding: 12px 10px !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255, 255, 255, .14) !important;
  background: rgba(255, 255, 255, .06) !important;
  color: rgba(255, 255, 255, .92) !important;
  font-weight: 900 !important;
  font-size: clamp(12px, 2.9vw, 15px) !important;
  cursor: pointer;
  transition: transform .08s ease, filter .12s ease, box-shadow .12s ease, border-color .12s ease;
}

.rcsdK-stakeBtn:hover  { transform: translateY(-1px); }
.rcsdK-stakeBtn:active { transform: translateY(0px) scale(.99); }

/* Active / Selected Stake — mirrors .rc-stake.rc-active */
.rcsdK-stakeBtn.rcsdK-active {
  border-color: rgba(79, 209, 255, .9) !important;
  box-shadow: 0 0 0 2px rgba(79, 209, 255, .20) !important;
}

/* Potential-win below stake grid — mirrors .rc-winline */
.rcsdK-winLine {
  margin-top: 10px;
  font-size: clamp(12px, 2.9vw, 15px);
  opacity: .88;
  text-align: left;
}

/* Win amount — mirrors .rc-winval; green glow matches OG style */
.rcsdK-winVal {
  font-weight: 900;
  color: #4dffb5;
  text-shadow: 0 0 18px rgba(77, 255, 181, .18);
}

.rcsdK-searchBtn {
  width: 100%;
  margin-top: 18px;
  padding: clamp(14px, 3.6vw, 18px);
  border-radius: 14px;
  background: linear-gradient(180deg, #60b6ff 0%, #2b6cff 55%, #1e4ed8 100%);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-weight: 1000;
  letter-spacing: 1px;
  font-size: clamp(15px, 3.6vw, 20px);
  box-shadow:
    0 14px 36px rgba(37, 99, 235, .55),
    inset 0 1px 0 rgba(255, 255, 255, .20);
  cursor: pointer;
  transition: transform .08s ease, filter .12s ease, box-shadow .12s ease;
}

.rcsdK-searchBtn:hover {
  filter: brightness(1.06);
  box-shadow:
    0 18px 44px rgba(37, 99, 235, .62),
    inset 0 1px 0 rgba(255, 255, 255, .24);
}

.rcsdK-searchBtn:active { transform: translateY(1px) scale(.99); }

/* Desktop: Tighten search/cancel button height on larger screens */
@media (min-width: 768px) {
  .rcsdK-searchBtn {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
}

/* Cancel state — mirrors .rc-cta.cancel; swaps gradient to red */
.rcsdK-searchBtn.rcsdK-cancel {
  background: linear-gradient(180deg, #ff4d4d 0%, #d32f2f 55%, #b71c1c 100%) !important;
  border-color: rgba(255, 255, 255, .25) !important;
  box-shadow:
    0 14px 36px rgba(180, 0, 0, .5),
    inset 0 1px 0 rgba(255, 255, 255, .18) !important;
}

.rcsdK-searchBtn.rcsdK-cancel:hover {
  filter: brightness(1.08);
  box-shadow:
    0 18px 44px rgba(180, 0, 0, .6),
    inset 0 1px 0 rgba(255, 255, 255, .22) !important;
}

.rcsdK-searchBtn.rcsdK-cancel:active { transform: translateY(1px) scale(0.98); }

/* Disabled / insufficient-balance state — red tint, no hover effect */
.rcsdK-searchBtn.rcsdK-disabled {
  background: linear-gradient(180deg, #ff5c5c 0%, #c0392b 100%) !important;
  box-shadow: 0 10px 28px rgba(192, 57, 43, .45) !important;
  cursor: not-allowed;
  filter: none !important;
}

/* Close link beneath the button */
.rcsdK-closeLink {
  margin-top: 8px;
  background: transparent;
  border: 0;
  color: #9db0c3;
  cursor: pointer;
  text-decoration: underline;
  display: block;
  width: 100%;
  text-align: center;
}

/* ───────────────────────────────────────────────────────────────
   SEARCHING STATE ACTIVATED
   When .rcsdK-searching is applied to the card, the original hides:
     .rc-titleRow, .rc-sub, #rc-stakes-wrap, .rc-winline, #rc-close
   The Search button remains visible and morphs into Cancel button.
   The spinner circle animation is revealed to the mortals.
   ─────────────────────────────────────────────────────────────── */

.rcsdK-card.rcsdK-searching .rcsdK-titleRow,
.rcsdK-card.rcsdK-searching .rcsdK-sub,
.rcsdK-card.rcsdK-searching .rcsdK-stakes-section,
.rcsdK-card.rcsdK-searching .rcsdK-closeLink {
  display: none !important;
}

/* Show the spinner container while searching */
.rcsdK-card.rcsdK-searching .rcsdK-spinnerWrap {
  display: flex !important;
}

.rcsdK-spinnerWrap {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 0 20px;
  gap: 26px;
}

.rcsdK-spinner {
  width: 56px;
  height: 56px;
  border: 5px solid rgba(255, 255, 255, 0.15);
  border-top-color: #00d4ff;
  border-radius: 50%;
  animation: rcsdKSpin 0.9s linear infinite;
}

@keyframes rcsdKSpin { to { transform: rotate(360deg); } }

/* Status label beneath the spinner */
.rcsdK-spinnerLabel {
  font-size: 14px;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.rcsdK-card.rcsdK-matchfound .rcsdK-titleRow,
.rcsdK-card.rcsdK-matchfound .rcsdK-sub,
.rcsdK-card.rcsdK-matchfound .rcsdK-stakes-section,
.rcsdK-card.rcsdK-matchfound .rcsdK-spinnerWrap,
.rcsdK-card.rcsdK-matchfound .rcsdK-searchBtn,
.rcsdK-card.rcsdK-matchfound .rcsdK-closeLink {
  display: none !important;
}

.rcsdK-card.rcsdK-matchfound .rcsdK-matchFoundWrap {
  display: flex !important;
}

/* ─── Match found panel ─────────────────────────────────────────
   Full content area shown when an opponent is found.
   ─────────────────────────────────────────────────────────────── */
.rcsdK-matchFoundWrap {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 0 30px;
  gap: 16px;
  text-align: center;
  color: #e6f0ff;
}

/* "MATCH FOUND!" heading */
.rcsdK-mfTitle {
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 900;
  letter-spacing: 1px;
  margin: -20px 0 0;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

/* Player names + VS image row */
.rcsdK-mfPlayers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: clamp(15px, 3.5vw, 18px);
  font-weight: 700;
  width: 100%;
  padding: 0 10px;
  margin-top: 12px;
}

/* VS graphic */
.rcsdK-mfVs {
  width: clamp(45px, 14vw, 70px);
  height: auto;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

/* Player username labels */
.rcsdK-mfMyName,
.rcsdK-mfOppName {
  white-space: nowrap;
  text-align: center;
  font-weight: 700;
}

/* Countdown block container */
.rcsdK-mfCountdownWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* "Starting in" caption */
.rcsdK-mfStarting {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

/* Large countdown number */
.rcsdK-mfCount {
  font-size: clamp(60px, 14vw, 90px);
  font-weight: 900;
  line-height: 1;
  color: #fff;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

/* Helper text below countdown */
.rcsdK-mfHint {
  font-size: clamp(12px, 2.8vw, 14px);
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  max-width: 280px;
}

/* Very small screens: tighten VS image and stake grid */
@media (max-width: 360px) {
  .rcsdK-mfVs      { width: clamp(42px, 18vw, 65px); }
  .rcsdK-mfPlayers { gap: 8px; }
  .rcsdK-stakesGrid { gap: 8px !important; }
  .rcsdK-stakeBtn   { border-radius: 12px !important; padding: 11px 8px !important; }
}

/* ───────────────────────────────────────────────────────────────
   ROUND COUNTDOWN TIMER
   Fixed top-left badge shown during an active round.
  ─────────────────────────────────────────────────────────────── */

.rcsdK-countdownTimer {
  display: none;
  position: fixed;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.82);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  padding: 10px 18px;
  border-radius: 12px;
  z-index: 99999;
  min-width: 90px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
  transition: background 0.3s ease;
  pointer-events: none;
  user-select: none;
  font-family: 'Courier New', Courier, monospace;
}

/* Urgent State: Background flips to red when time is almost up */
.rcsdK-countdownTimer.rcsdK-urgent {
  background: rgba(180, 0, 0, 0.90) !important;
}

/* Mobile: Smaller badge, repositioned closer to the corner */
@media (max-width: 480px) {
  .rcsdK-countdownTimer {
    font-size: 18px !important;
    padding: 8px 14px !important;
    top: 10px !important;
    left: 10px !important;
    min-width: 72px !important;
  }
}

/* ───────────────────────────────────────────────────────────────
   MATCH RESULT MODAL
   Full-screen overlay shown at the end of a round.
  ─────────────────────────────────────────────────────────────── */

.rcsdK-resultOverlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9998;
  padding: clamp(12px, 3vw, 28px);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.rcsdK-resultOverlay.rcsdK-visible {
  display: flex;
}

/* Inner result card — mirrors the anonymous div inside #result-modal */
.rcsdK-resultCard {
  position: relative;
  background: radial-gradient(140% 120% at 50% 0%, rgba(38, 73, 128, .75) 0%, rgba(10, 16, 28, .95) 55%);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  padding: clamp(10px, 2vw, 16px) clamp(20px, 4vw, 40px) clamp(14px, 2vw, 16px);
  width: min(420px, 92vw);
  text-align: center;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .65);
  color: #e6f0ff;
}

/* Top-edge glow line (was an absolute div in the original HTML) */
.rcsdK-resultCard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(120,170,255,.35), rgba(255,255,255,0));
}

.rcsdK-resultLogo {
  display: block;
  margin: -4px auto 10px;
  height: clamp(28px, 3.5vw, 34px);
  width: auto;
  opacity: .9;
  filter: drop-shadow(0 0 6px rgba(90,160,255,.2)) drop-shadow(0 0 8px rgba(255,255,255,0.4));
}

/* Mobile: net +4px top offset (8px offset - 4px base negative = net positive from card top) */
@media (max-width: 767px) {
  .rcsdK-resultCard .rcsdK-resultLogo {
    margin-top: 4px !important;
  }
}

/* Divider below the logo — mirrors original: height 1px, margin 0 0 28px */
.rcsdK-resultDivider {
  height: 1px;
  margin: 0 0 28px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(150,200,255,.3), rgba(255,255,255,0));
}

/* Result heading (WIN / LOSS / DRAW etc.) — mirrors #modal-title */
.rcsdK-resultTitle {
  margin: 0 0 0;
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 900;
  letter-spacing: .5px;
  text-align: center;
  width: 100%;
}

/* "Against" opponent row.
   Hidden by default; shown via JS when opponent data is available. */
.rcsdK-againstRow {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 16px 0 4px;
  flex-wrap: wrap;
}

/* Dim label ("VS") */
.rcsdK-againstLabel {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.5px;
}

/* Add-friend pill button */
.rcsdK-addFriendBtn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(77, 255, 181, 0.12);
  border: 1px solid rgba(77, 255, 181, 0.35);
  color: #4dffb5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: background 0.15s ease;
  white-space: nowrap;
}

.rcsdK-addFriendBtn:hover { background: rgba(77, 255, 181, 0.22); }

/* Winner detail text block */
.rcsdK-winnerInfo {
  margin-top: 6px;
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
}

/* Winner choice icons row */
.rcsdK-winnerChoices {
  display: flex;
  justify-content: space-around;
  margin-bottom: 8px;
}

/* Loser detail text block */
.rcsdK-loserInfo {
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
}

/* Loser choice icons row */
.rcsdK-loserChoices {
  display: flex;
  justify-content: space-around;
  margin-bottom: 18px;
}

/* ─── Result modal buttons ──────────────────────────────────────
   Three possible actions after a round: Close, New Match, Rematch.
   ─────────────────────────────────────────────────────────────── */

/* Close / Dismiss button */
.rcsdK-resultCloseBtn {
  width: 100%;
  padding: clamp(12px, 3vw, 16px);
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  color: #e6f0ff;
  font-weight: 700;
  font-size: clamp(14px, 3.2vw, 17px);
  cursor: pointer;
  transition: background .15s ease, transform .1s ease;
  letter-spacing: .5px;
}

.rcsdK-resultCloseBtn:hover  { background: rgba(255, 255, 255, .14); }
.rcsdK-resultCloseBtn:active { transform: scale(.98); }

/* New Match button; hidden until round ends */
.rcsdK-newMatchBtn {
  width: 100%;
  margin-top: 12px;
  padding: clamp(12px, 3vw, 16px);
  border-radius: 12px;
  background: linear-gradient(180deg, #0099ff 0%, #0066cc 55%, #004fa3 100%);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-weight: 900;
  font-size: clamp(14px, 3.2vw, 17px);
  cursor: pointer;
  letter-spacing: .5px;
  box-shadow: 0 10px 28px rgba(0, 102, 204, .4);
  transition: filter .12s ease, transform .1s ease;
}

.rcsdK-newMatchBtn:hover  { filter: brightness(1.1); }
.rcsdK-newMatchBtn:active { transform: scale(.98); }

/* Rematch container */
.rcsdK-rematchArea {
  margin-top: 12px;
}

/* Rematch button; green gradient by default */
.rcsdK-rematchBtn {
  width: 100%;
  padding: clamp(12px, 3vw, 16px);
  border-radius: 12px;
  background: linear-gradient(180deg, #2fd8a0 0%, #13b37a 55%, #0d9165 100%);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #fff;
  font-weight: 900;
  font-size: clamp(14px, 3.2vw, 17px);
  cursor: pointer;
  letter-spacing: .5px;
  box-shadow: 0 10px 28px rgba(19, 179, 122, .4);
  transition: filter .12s ease, transform .1s ease;
}

.rcsdK-rematchBtn:hover  { filter: brightness(1.08); }
.rcsdK-rematchBtn:active { transform: scale(.98); }

/* Refused / Disconnected State: red gradient, non-interactive */
.rcsdK-rematchBtn.rcsdK-refused {
  background: linear-gradient(180deg, #ff5c5c 0%, #c0392b 100%);
  box-shadow: 0 10px 28px rgba(192, 57, 43, .45);
  cursor: not-allowed;
  filter: none;
}

/* "Waiting for opponent" label; hidden by default */
.rcsdK-rematchWait {
  display: none;
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
  margin-top: 8px;
}

/* Rematch accepted status; hidden by default */
.rcsdK-rematchStatus {
  display: none;
  color: #4dffb5;
  font-weight: 700;
  margin-top: 8px;
  font-size: 14px;
}

/* Dynamically injected rematch notice (e.g. "X wants a rematch!") */
.rcsdK-rematchNotice {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #e6f0ff;
  text-align: center;
}

/* Server offline heading color override */
.rcsdK-offline-title { color: #ffcc00 !important; }

/* ───────────────────────────────────────────────────────────────
   FRIEND MATCH BANNER
   Small floating banner shown while waiting for a friend match.
   ─────────────────────────────────────────────────────────────── */

.rcsdK-friendBanner {
  display: none;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 16px 20px;
  margin-bottom: 12px;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 14px;
  min-width: 260px;
}

.rcsdK-friendBanner.rcsdK-visible { display: flex; }

/* Spinner inside the friend banner — reuses the same keyframe as the main spinner */
.rcsdK-friendSpinner {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: #4dffb5;
  border-radius: 50%;
  animation: rcsdKSpin 0.75s linear infinite;
}

/* Host element must be relatively positioned and clip overflow */
.rcsdK-ripple-host { position: relative; overflow: hidden; }

.rcsdK-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: rcsdKRipple 0.55s linear forwards;
  background: rgba(255, 255, 255, 0.30);
  pointer-events: none;
}

@keyframes rcsdKRipple { to { transform: scale(4); opacity: 0; } }
