/* VALOKOÇUM — Wow effects: glow, confetti, escrow, skeletons */

@keyframes wow-shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes wow-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes wow-pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(255,70,85,.25), 0 0 40px rgba(240,178,50,.1); }
  50% { box-shadow: 0 0 32px rgba(255,70,85,.45), 0 0 60px rgba(240,178,50,.22); }
}
@keyframes wow-rank-shine {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(240,178,50,.35)); }
  50% { filter: drop-shadow(0 0 12px rgba(255,70,85,.55)) drop-shadow(0 0 6px rgba(240,178,50,.5)); }
}
@keyframes wow-confetti-fall {
  0% { transform: translateY(-10vh) rotate(0deg); opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}
@keyframes wow-timeline-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(62,224,208,.4); }
  50% { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(62,224,208,0); }
}
@keyframes wow-success-pop {
  0% { transform: scale(.85); opacity: 0; }
  60% { transform: scale(1.03); }
  100% { transform: scale(1); opacity: 1; }
}

.wow-rank-glow {
  animation: wow-rank-shine 3s ease-in-out infinite;
}

.wow-confetti-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99999;
  overflow: hidden;
}
.wow-confetti-piece {
  position: absolute;
  top: -12px;
  width: 8px;
  height: 14px;
  border-radius: 2px;
  opacity: .9;
  animation: wow-confetti-fall linear forwards;
}

/* Escrow timeline */
.escrow-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 20px 0 24px;
  padding: 18px 16px;
  border-radius: 18px;
  border: 1px solid rgba(62,224,208,.2);
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(62,224,208,.08), transparent 55%),
    rgba(12,16,24,.65);
  overflow-x: auto;
}
.escrow-timeline-step {
  flex: 1;
  min-width: 72px;
  text-align: center;
  position: relative;
}
.escrow-timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(50% + 20px);
  width: calc(100% - 40px);
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,.15), rgba(62,224,208,.35));
}
.escrow-timeline-step.is-done:not(:last-child)::after {
  background: linear-gradient(90deg, rgba(62,224,208,.5), rgba(76,175,80,.45));
}
.escrow-timeline-dot {
  width: 36px;
  height: 36px;
  margin: 0 auto 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(255,255,255,.12);
  position: relative;
  z-index: 1;
  transition: all .35s ease;
}
.escrow-timeline-step.is-active .escrow-timeline-dot {
  border-color: rgba(62,224,208,.65);
  background: rgba(62,224,208,.15);
  animation: wow-timeline-pulse 2s ease-in-out infinite;
}
.escrow-timeline-step.is-done .escrow-timeline-dot {
  border-color: rgba(76,175,80,.6);
  background: rgba(76,175,80,.18);
}
.escrow-timeline-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white-dim);
  line-height: 1.3;
}
.escrow-timeline-step.is-active .escrow-timeline-label,
.escrow-timeline-step.is-done .escrow-timeline-label {
  color: var(--white);
}

/* Skeleton loaders */
.coach-card-skeleton {
  border-radius: var(--radius-lg, 16px);
  border: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
  background: rgba(22,28,40,.5);
}
.coach-card-skeleton-img {
  height: 116px;
  background: linear-gradient(90deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.1) 50%, rgba(255,255,255,.04) 100%);
  background-size: 200% 100%;
  animation: wow-shimmer 1.4s ease-in-out infinite;
}
.coach-card-skeleton-body { padding: 14px; }
.coach-card-skeleton-line {
  height: 12px;
  border-radius: 6px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.1) 50%, rgba(255,255,255,.04) 100%);
  background-size: 200% 100%;
  animation: wow-shimmer 1.4s ease-in-out infinite;
}
.coach-card-skeleton-line.w60 { width: 60%; }
.coach-card-skeleton-line.w40 { width: 40%; }

/* Upsell banners */
.wow-upsell-banner {
  position: relative;
  margin: 18px 0;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(240,178,50,.35);
  background:
    radial-gradient(ellipse 100% 80% at 100% 0%, rgba(240,178,50,.14), transparent 50%),
    linear-gradient(135deg, rgba(26,20,32,.95), rgba(14,16,24,.92));
  box-shadow: 0 12px 36px rgba(0,0,0,.35);
  overflow: hidden;
  animation: wow-success-pop .5s ease both;
}
.wow-upsell-banner-glow {
  position: absolute;
  inset: -40% auto auto -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(255,70,85,.12), transparent 65%);
  pointer-events: none;
}
.wow-upsell-title {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 6px;
  color: var(--white);
}
.wow-upsell-sub {
  font-size: 13px;
  color: rgba(236,232,225,.75);
  margin: 0 0 14px;
  line-height: 1.5;
}
.wow-upsell-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Deposit success overlay */
.deposit-success-card {
  text-align: center;
  padding: 12px 8px 8px;
  animation: wow-success-pop .55s cubic-bezier(.2,.8,.2,1) both;
}
.deposit-success-icon {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 12px;
  animation: wow-float 2.2s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(240,178,50,.4));
}
.deposit-success-amount {
  font-family: var(--font-title);
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #f0b232);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 8px 0;
}

/* Match wizard */
.match-wizard-steps { display: flex; gap: 8px; margin-bottom: 18px; }
.match-wizard-step-dot {
  flex: 1;
  height: 4px;
  border-radius: 99px;
  background: rgba(255,255,255,.1);
  transition: background .3s;
}
.match-wizard-step-dot.is-on { background: linear-gradient(90deg, var(--red), var(--gold)); }
.match-wizard-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.match-wizard-pill {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all .2s;
}
.match-wizard-pill:hover { border-color: rgba(255,70,85,.4); }
.match-wizard-pill.is-on {
  border-color: rgba(240,178,50,.55);
  background: rgba(240,178,50,.12);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(240,178,50,.15);
}
.match-wizard-result {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.match-wizard-coach {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.2);
  cursor: pointer;
  transition: transform .15s, border-color .15s;
}
.match-wizard-coach:hover {
  transform: translateY(-2px);
  border-color: rgba(255,70,85,.35);
}

/* Verified review badge */
.review-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #3ee0d0;
  background: rgba(62,224,208,.12);
  border: 1px solid rgba(62,224,208,.35);
  border-radius: 99px;
  padding: 2px 8px;
  margin-left: 6px;
  vertical-align: middle;
}

/* Mobile FAB */
.wow-mobile-fab {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 88px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 22px;
  background: linear-gradient(135deg, #ff4655, #c42d3a);
  color: #fff;
  box-shadow: 0 8px 28px rgba(255,70,85,.45), 0 0 0 1px rgba(255,255,255,.12) inset;
  animation: wow-pulse-glow 3s ease-in-out infinite;
  transition: transform .2s;
}
.wow-mobile-fab:active { transform: scale(.94); }
@media (max-width: 768px) {
  .wow-mobile-fab { display: flex; align-items: center; justify-content: center; }
}

/* Coach card hover glow */
.coach-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
}
.coach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.4), 0 0 24px rgba(255,70,85,.12) !important;
}

/* Wallet balance card glow */
.wallet-balance-card {
  animation: wow-pulse-glow 4s ease-in-out infinite;
}

/* SEO landing */
.seo-landing-hero {
  padding: 60px 24px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.seo-landing-hero h1 {
  font-family: var(--font-title);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff 30%, #f0b232 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
