/* =========================================================================
   FAIRY TALE KINGDOM — game.css
   Every rule is scoped under .ftk- so this file can't leak into, or be
   leaked into by, the shared site stylesheet (/css/styles.css).
   No image assets — all 11 symbols are emoji/CSS glyphs.
   ========================================================================= */

:root {
  --ftk-bg-deep: #241a38;
  --ftk-bg-mid: #33244d;
  --ftk-bg-storm: #452f61;
  --ftk-panel: #2c2044;
  --ftk-panel-2: #372a52;
  --ftk-gold: #f3c969;
  --ftk-gold-bright: #ffe4a3;
  --ftk-pink: #f6a8cc;
  --ftk-pink-bright: #ffc9e2;
  --ftk-lavender: #c9aeee;
  --ftk-ink: #fbf4ff;
  --ftk-ink-dim: #d9c8ea;
  --ftk-ink-faint: #a893c0;
  --ftk-win-green: #6ee7b7;
  --ftk-danger: #ff8fa3;
  --ftk-line-glow: #ffd9ec;
  --ftk-border: rgba(243, 201, 105, 0.28);
  --ftk-shadow: rgba(15, 8, 26, 0.55);

  --ftk-radius-sm: 8px;
  --ftk-radius-md: 14px;
  --ftk-radius-lg: 22px;

  --ftk-safe-top: env(safe-area-inset-top, 0px);
  --ftk-safe-bottom: env(safe-area-inset-bottom, 0px);
  --ftk-safe-left: env(safe-area-inset-left, 0px);
  --ftk-safe-right: env(safe-area-inset-right, 0px);

  --ftk-font: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
}

/* Hide the shared site chrome while a hand is actually in progress. */
body:has(.ftk-root.is-playing) .ftk-site-header,
body:has(.ftk-root.is-playing) #footer {
  display: none;
}

.ftk-root {
  font-family: var(--ftk-font);
  color: var(--ftk-ink);
  background:
    radial-gradient(ellipse at 50% -10%, rgba(246, 168, 204, 0.16), transparent 55%),
    linear-gradient(180deg, var(--ftk-bg-deep) 0%, var(--ftk-bg-mid) 55%, var(--ftk-bg-storm) 100%);
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  overflow-x: hidden;
  padding-left: var(--ftk-safe-left);
  padding-right: var(--ftk-safe-right);
  box-sizing: border-box;
}

.ftk-root * {
  box-sizing: border-box;
}

.ftk-screen {
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: calc(1.25rem + var(--ftk-safe-top)) 1rem calc(1.25rem + var(--ftk-safe-bottom));
}

.ftk-screen[hidden] {
  display: none !important;
}

/* -------------------------------------------------------------------------
   Ambient sparkle twinkle — pure CSS, no per-frame JS.
   ------------------------------------------------------------------------- */
.ftk-sparkle-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 55% 35% at 20% 0%, rgba(255, 228, 163, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 35% at 85% 8%, rgba(246, 168, 204, 0.2), transparent 60%);
  opacity: 0.35;
  animation: ftk-twinkle 6s infinite ease-in-out;
}

@keyframes ftk-twinkle {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.55; }
}

@media (prefers-reduced-motion: reduce) {
  .ftk-sparkle-bg { animation: none; opacity: 0.3; }
}

/* -------------------------------------------------------------------------
   Buttons
   ------------------------------------------------------------------------- */
.ftk-btn {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--ftk-radius-md);
  border: 1px solid var(--ftk-border);
  padding: 0.85rem 1.25rem;
  cursor: pointer;
  background: var(--ftk-panel-2);
  color: var(--ftk-ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.ftk-btn:hover { filter: brightness(1.1); }
.ftk-btn:active { transform: scale(0.97); }

.ftk-btn--primary {
  background: linear-gradient(180deg, var(--ftk-gold-bright), var(--ftk-gold));
  color: #2c1e08;
  border-color: transparent;
  box-shadow: 0 6px 22px rgba(243, 201, 105, 0.35);
}

.ftk-btn--ghost {
  background: transparent;
  border-color: var(--ftk-border);
}

.ftk-btn--disabled,
.ftk-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  filter: grayscale(0.4);
}
.ftk-btn:disabled:active { transform: none; }

.ftk-btn--icon {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-size: 1.1rem;
  line-height: 1;
}

/* -------------------------------------------------------------------------
   Menu screen
   ------------------------------------------------------------------------- */
.ftk-screen--menu { justify-content: center; }

.ftk-menu-card {
  width: 100%;
  max-width: 460px;
  background: linear-gradient(180deg, var(--ftk-panel), var(--ftk-panel-2));
  border: 1px solid var(--ftk-border);
  border-radius: var(--ftk-radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 20px 60px var(--ftk-shadow);
}

.ftk-menu-glyphs {
  font-size: 3rem;
  margin-bottom: 0.25rem;
  filter: drop-shadow(0 0 18px rgba(243, 201, 105, 0.55));
}

.ftk-title {
  font-size: clamp(1.8rem, 8vw, 2.6rem);
  margin: 0;
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, var(--ftk-gold-bright), var(--ftk-pink-bright) 60%, var(--ftk-gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 30px rgba(243, 201, 105, 0.2);
}

.ftk-tagline {
  color: var(--ftk-ink-dim);
  margin: 0.6rem 0 1.4rem;
  font-size: 0.98rem;
}

.ftk-menu-jackpot {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.4rem;
  background: rgba(243, 201, 105, 0.08);
  border: 1px solid var(--ftk-border);
  border-radius: var(--ftk-radius-md);
  padding: 0.7rem 1rem;
  margin-bottom: 1.5rem;
}

.ftk-menu-jackpot-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ftk-ink-faint);
}

.ftk-menu-jackpot-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ftk-gold-bright);
  font-variant-numeric: tabular-nums;
}

.ftk-menu-jackpot-unit {
  font-size: 0.78rem;
  color: var(--ftk-ink-faint);
}

.ftk-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.ftk-fineprint {
  margin-top: 1.4rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--ftk-ink-faint);
}

/* -------------------------------------------------------------------------
   Help / paytable screen
   ------------------------------------------------------------------------- */
.ftk-screen--help { align-items: stretch; padding-left: 0; padding-right: 0; }

.ftk-help-panel {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  background: var(--ftk-panel);
  border: 1px solid var(--ftk-border);
  border-radius: var(--ftk-radius-lg);
  overflow: hidden;
}

.ftk-help-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--ftk-border);
  position: sticky;
  top: 0;
  background: var(--ftk-panel);
  z-index: 2;
}

.ftk-help-header h2 { margin: 0; font-size: 1.2rem; }

.ftk-help-body { padding: 1.25rem; }

.ftk-help-note {
  color: var(--ftk-ink-dim);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-top: 0;
}

.ftk-paytable-wrap {
  overflow-x: auto;
  border-radius: var(--ftk-radius-md);
  border: 1px solid var(--ftk-border);
  margin: 1rem 0 1.5rem;
}

.ftk-paytable {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 0.88rem;
}

.ftk-paytable th, .ftk-paytable td {
  padding: 0.55rem 0.7rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}

.ftk-paytable th {
  color: var(--ftk-ink-faint);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.ftk-paytable td:first-child, .ftk-paytable th:first-child {
  text-align: left;
  position: sticky;
  left: 0;
  background: var(--ftk-panel);
}

.ftk-paytable-glyph { font-size: 1.3rem; margin-right: 0.4rem; }
.ftk-paytable-name { color: var(--ftk-ink); font-weight: 600; }
.ftk-paytable-sub { display: block; color: var(--ftk-ink-faint); font-size: 0.72rem; font-weight: 400; }

.ftk-help-rules h3 {
  font-size: 0.98rem;
  margin: 1.1rem 0 0.35rem;
  color: var(--ftk-gold-bright);
}
.ftk-help-rules p {
  margin: 0 0 0.6rem;
  color: var(--ftk-ink-dim);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* -------------------------------------------------------------------------
   Play screen
   ------------------------------------------------------------------------- */
.ftk-screen--play {
  position: relative;
  padding-top: calc(0.6rem + var(--ftk-safe-top));
  gap: 0.6rem;
}

.ftk-play-topbar {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  display: grid;
  grid-template-columns: auto 1fr 1fr auto;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.ftk-chip {
  background: var(--ftk-panel-2);
  border: 1px solid var(--ftk-border);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
  min-width: 0;
}

.ftk-chip-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ftk-ink-faint);
}

.ftk-chip-value {
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: var(--ftk-gold-bright);
  font-size: 0.95rem;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.ftk-chip--jackpot .ftk-chip-value { color: var(--ftk-pink-bright); }

.ftk-status-strip {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.78rem;
  color: var(--ftk-ink-faint);
  margin-bottom: 0.4rem;
}

.ftk-status-item strong { color: var(--ftk-ink); }

#freeSpinsIndicator strong, #bonusIndicator strong { color: var(--ftk-gold-bright); }

.ftk-reel-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  background: linear-gradient(180deg, var(--ftk-panel), var(--ftk-panel-2));
  border: 1px solid var(--ftk-border);
  border-radius: var(--ftk-radius-lg);
  padding: 0.6rem;
  box-shadow: 0 16px 50px var(--ftk-shadow), inset 0 0 40px rgba(246, 168, 204, 0.06);
  /* Content-sized on purpose — no flex-grow here. Inside .ftk-screen's
     min-height:100vh column, a stretching card would fill all leftover
     viewport height and center the (correctly, tightly sized) reel grid
     inside it, reading as a mostly empty card. */
}

.ftk-reels {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.35rem;
  width: 100%;
  aspect-ratio: 5 / 3;
  max-height: 52vh;
}

.ftk-reel {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(69, 47, 97, 0.9), rgba(36, 26, 56, 0.95));
  border-radius: var(--ftk-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ftk-reel--thud { animation: ftk-thud 0.18s ease-out; }
@keyframes ftk-thud {
  0% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

.ftk-strip {
  display: flex;
  flex-direction: column;
  will-change: transform;
}

.ftk-cell {
  height: 0;
  flex: 0 0 auto;
  /* aspect-ratio keeps each cell exactly 1/3 of the 5:3 reel frame (square,
     matching one column's width) — using padding-top:100% here (of the
     cell's own width) would give the same result; either is correct as
     long as the percentage is against the cell's WIDTH, not the strip's
     height. aspect-ratio is used instead because it cannot be gotten
     backwards. */
  aspect-ratio: 1 / 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ftk-cell .ftk-glyph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.4rem, 6.4vw, 2.6rem);
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.5));
}

.ftk-cell--wild .ftk-glyph { filter: drop-shadow(0 0 10px rgba(243, 201, 105, 0.8)); }

/* The King's Crown (id 10) reads as visibly bigger and more gilded than the
   plain Fairy Dust wild, even though both lean on a sparkle/gold motif. */
.ftk-cell--top .ftk-glyph {
  font-size: clamp(1.6rem, 7.4vw, 3rem);
  filter: drop-shadow(0 0 16px rgba(255, 228, 163, 1)) drop-shadow(0 0 6px #fff) drop-shadow(0 0 2px #fff);
}

.ftk-cell--scatter .ftk-glyph { filter: drop-shadow(0 0 8px rgba(246, 168, 204, 0.85)); }

.ftk-cell--win::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 6px;
  border: 2px solid var(--ftk-line-glow);
  box-shadow: 0 0 14px var(--ftk-line-glow), inset 0 0 10px rgba(255, 217, 236, 0.4);
  pointer-events: none;
}

.ftk-cell--win-pulse::after { animation: ftk-win-pulse 0.9s ease-in-out infinite; }
@keyframes ftk-win-pulse {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}

.ftk-win-banner {
  position: absolute;
  left: 50%;
  top: 8%;
  transform: translateX(-50%);
  background: rgba(36, 26, 56, 0.9);
  border: 1px solid var(--ftk-gold);
  color: var(--ftk-gold-bright);
  font-weight: 800;
  font-size: clamp(1rem, 4vw, 1.5rem);
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 0 26px rgba(243, 201, 105, 0.5);
  z-index: 3;
  animation: ftk-banner-pop 0.35s ease-out;
  pointer-events: none;
}

@keyframes ftk-banner-pop {
  0% { opacity: 0; transform: translateX(-50%) translateY(-8px) scale(0.9); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}

/* -------------------------------------------------------------------------
   Controls
   ------------------------------------------------------------------------- */
.ftk-controls {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.5rem 0.6rem;
  margin-top: 0.6rem;
  align-items: end;
}

.ftk-control-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.ftk-control-group--total { grid-column: 1 / 3; flex-direction: row; align-items: baseline; gap: 0.5rem; }

.ftk-control-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ftk-ink-faint);
}

.ftk-select {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  background: var(--ftk-panel-2);
  color: var(--ftk-ink);
  border: 1px solid var(--ftk-border);
  border-radius: var(--ftk-radius-sm);
  padding: 0.5rem 0.6rem;
}

.ftk-total-bet {
  font-weight: 800;
  color: var(--ftk-gold-bright);
  font-variant-numeric: tabular-nums;
}

.ftk-btn--spin {
  grid-column: 3;
  grid-row: 1 / 3;
  min-width: 108px;
  min-height: 64px;
  border-radius: var(--ftk-radius-lg);
  background: linear-gradient(180deg, var(--ftk-gold-bright), var(--ftk-gold));
  color: #2c1e08;
  border: none;
  box-shadow: 0 8px 26px rgba(243, 201, 105, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1rem;
}

.ftk-spin-label { font-size: 1rem; letter-spacing: 0.06em; }
.ftk-spin-sparkle { font-size: 1.3rem; }

.ftk-btn--spin.is-spinning .ftk-spin-sparkle { animation: ftk-sparkle-spin 0.6s linear infinite; }
@keyframes ftk-sparkle-spin {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.25) rotate(20deg); }
}

@media (min-width: 720px) {
  .ftk-controls { grid-template-columns: 1fr 1fr 1fr auto; }
  .ftk-control-group--total { grid-column: 3; flex-direction: column; align-items: flex-start; }
  .ftk-btn--spin { grid-column: 4; }
}

/* -------------------------------------------------------------------------
   Bonus pick overlay
   ------------------------------------------------------------------------- */
.ftk-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem calc(1rem + var(--ftk-safe-right)) calc(1rem + var(--ftk-safe-bottom)) calc(1rem + var(--ftk-safe-left));
  background: rgba(20, 12, 32, 0.82);
  backdrop-filter: blur(2px);
}

/* Explicit [hidden] guard: without this, the unconditional
   "display: flex" above would beat the browser's default [hidden]{display:
   none} and the overlay would stay visible AND CLICKABLE, intercepting
   every click on the page under it. */
.ftk-overlay[hidden] {
  display: none;
}

.ftk-bonus-panel {
  width: 100%;
  max-width: 460px;
  background: linear-gradient(180deg, var(--ftk-panel), var(--ftk-bg-storm));
  border: 1px solid var(--ftk-border);
  border-radius: var(--ftk-radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 20px 60px var(--ftk-shadow);
}

.ftk-bonus-title { margin: 0 0 0.2rem; color: var(--ftk-gold-bright); }
.ftk-bonus-sub { margin: 0 0 1rem; color: var(--ftk-ink-dim); font-size: 0.9rem; }

/* -------------------------------------------------------------------------
   Pause / in-game menu overlay — reuses .ftk-overlay + .ftk-bonus-panel
   ------------------------------------------------------------------------- */
.ftk-pause-panel { max-width: 360px; }
.ftk-pause-actions { display: flex; flex-direction: column; gap: 0.65rem; margin-top: 1rem; }

.ftk-bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.ftk-bonus-tile {
  aspect-ratio: 1;
  border-radius: var(--ftk-radius-md);
  border: 1px solid var(--ftk-border);
  background: radial-gradient(circle at 50% 30%, #4a3670, #241a3f);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ftk-ink);
  transition: transform 0.12s ease, filter 0.12s ease;
}

.ftk-bonus-tile:hover:not(.is-revealed) { transform: translateY(-2px); filter: brightness(1.15); }
.ftk-bonus-tile:active:not(.is-revealed) { transform: scale(0.96); }

.ftk-bonus-tile.is-revealed {
  cursor: default;
  background: radial-gradient(circle at 50% 30%, #4a3a10, #241a08);
  border-color: var(--ftk-gold);
  flex-direction: column;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ftk-gold-bright);
  animation: ftk-tile-reveal 0.35s ease-out;
}

.ftk-bonus-tile.is-dim { opacity: 0.35; cursor: default; }

@keyframes ftk-tile-reveal {
  0% { transform: scale(0.7) rotateY(90deg); }
  100% { transform: scale(1) rotateY(0); }
}

.ftk-bonus-total { color: var(--ftk-ink-dim); font-size: 0.95rem; }
.ftk-bonus-total strong { color: var(--ftk-gold-bright); }

/* -------------------------------------------------------------------------
   Jackpot overlay
   ------------------------------------------------------------------------- */
.ftk-overlay--jackpot { background: rgba(12, 6, 20, 0.92); }

.ftk-jackpot-flash {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(255, 228, 163, 0.9), transparent 60%);
  animation: ftk-jackpot-flash 1.6s ease-in-out infinite;
}

@keyframes ftk-jackpot-flash {
  0%, 100% { opacity: 0; }
  4% { opacity: 1; }
  8% { opacity: 0.15; }
  12% { opacity: 0.85; }
  16% { opacity: 0; }
  55% { opacity: 0; }
  58% { opacity: 0.6; }
  61% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .ftk-jackpot-flash { animation: none; opacity: 0.15; }
}

.ftk-jackpot-panel {
  position: relative;
  text-align: center;
  z-index: 1;
}

.ftk-jackpot-glyph {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 0 30px rgba(255, 228, 163, 0.9));
}

.ftk-jackpot-title {
  font-size: clamp(1.7rem, 7.6vw, 2.9rem);
  margin: 0;
  letter-spacing: 0.05em;
  background: linear-gradient(180deg, #fff, var(--ftk-gold-bright) 55%, var(--ftk-pink-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ftk-jackpot-sub { color: var(--ftk-ink-dim); margin: 0.4rem 0; }

.ftk-jackpot-amount {
  font-size: clamp(1.6rem, 7vw, 2.6rem);
  font-weight: 800;
  color: var(--ftk-gold-bright);
  margin: 0.6rem 0 1.4rem;
  font-variant-numeric: tabular-nums;
}

/* -------------------------------------------------------------------------
   Loading screen
   ------------------------------------------------------------------------- */
.ftk-screen--loading { justify-content: center; align-items: center; }
.ftk-loading-glyph { font-size: 3rem; animation: ftk-loading-pulse 1s ease-in-out infinite; }
.ftk-loading-text { color: var(--ftk-ink-dim); margin-top: 0.5rem; }
@keyframes ftk-loading-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.08); }
}


/* Shown while the reels turn waiting on the server's outcome (SMO mode only). Softened so
   the swap between symbols reads as motion rather than a flicker. */
.ftk-cell--blur, .ftk-cell--blur .ftk-glyph {
  filter: blur(2.5px);
  opacity: 0.72;
}

@media (prefers-reduced-motion: reduce) {
  .ftk-cell--blur, .ftk-cell--blur .ftk-glyph { filter: none; opacity: 0.8; }
}
