.wsikho-wrap{
  --ig1:#f58529; --ig2:#dd2a7b; --ig3:#8134af; --ig4:#515bd4;
  --accent:#7b61ff; --accent2:#22d3ee;
  min-height:100vh;
  display:flex; align-items:center; justify-content:center;
  padding:24px 16px;
  position:relative; overflow:hidden;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  background:linear-gradient(135deg,#0f0c29,#302b63,#24243e);
  background-size:300% 300%;
  animation:wsikhoBgShift 14s ease infinite;
}
@keyframes wsikhoBgShift{
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}
.wsikho-wrap::before, .wsikho-wrap::after{
  content:""; position:absolute; border-radius:50%; filter:blur(60px); opacity:.35; z-index:0;
}
.wsikho-wrap::before{
  width:320px; height:320px; background:var(--ig2); top:-80px; left:-80px;
  animation:wsikhoFloat1 10s ease-in-out infinite;
}
.wsikho-wrap::after{
  width:280px; height:280px; background:var(--accent2); bottom:-60px; right:-60px;
  animation:wsikhoFloat2 12s ease-in-out infinite;
}
@keyframes wsikhoFloat1{0%,100%{transform:translate(0,0)}50%{transform:translate(30px,40px)}}
@keyframes wsikhoFloat2{0%,100%{transform:translate(0,0)}50%{transform:translate(-30px,-30px)}}

.wsikho-step{ display:none; width:100%; position:relative; z-index:1; }
.wsikho-step.is-active{ display:flex; justify-content:center; animation:wsikhoFadeUp .5s ease; }
@keyframes wsikhoFadeUp{ from{opacity:0; transform:translateY(16px)} to{opacity:1; transform:translateY(0)} }

.wsikho-card{
  width:100%; max-width:420px;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.18);
  border-radius:28px;
  padding:36px 28px;
  text-align:center;
  color:#fff;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}
.wsikho-card-wide{ max-width:460px; }
.wsikho-badge{
  display:inline-block; padding:6px 16px; border-radius:999px; font-size:12px; font-weight:700;
  letter-spacing:.5px; text-transform:uppercase;
  background:linear-gradient(90deg,var(--ig1),var(--ig2),var(--ig3),var(--ig4));
  margin-bottom:14px;
}
.wsikho-card h2{ margin:0 0 8px; font-size:24px; font-weight:800; }
.wsikho-sub{ margin:0 0 20px; font-size:14px; line-height:1.5; color:rgba(255,255,255,.8); }
.wsikho-hint{ font-size:12px; color:rgba(255,255,255,.55); margin-top:14px; }

.wsikho-qr-box{
  background:#fff; border-radius:18px; padding:16px; width:180px; height:180px;
  margin:0 auto 18px; display:flex; align-items:center; justify-content:center;
}
.wsikho-qr-box img, .wsikho-qr-box canvas{ width:100%; height:100%; }

.wsikho-btn{
  border:none; cursor:pointer; border-radius:16px; padding:15px 24px;
  font-size:16px; font-weight:700; width:100%;
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  transition:transform .15s ease, box-shadow .15s ease; color:#fff;
}
.wsikho-btn:active{ transform:scale(.97); }
.wsikho-btn-primary{
  background:linear-gradient(90deg,var(--accent),var(--accent2));
  box-shadow:0 10px 30px rgba(123,97,255,.45);
}
.wsikho-btn-instagram{
  background:linear-gradient(90deg,var(--ig1),var(--ig2),var(--ig3),var(--ig4));
  box-shadow:0 10px 30px rgba(221,42,123,.45);
}
.wsikho-btn-ghost{
  background:rgba(255,255,255,.1); border:1px solid rgba(255,255,255,.25);
}
.wsikho-btn-outline{
  background:transparent; border:2px solid var(--accent2); color:var(--accent2); margin-top:16px;
}
.wsikho-btn-icon{ font-size:18px; line-height:1; }
.wsikho-btn:disabled{ opacity:.5; cursor:not-allowed; }

.wsikho-cam-box{
  position:relative; width:100%; aspect-ratio:3/4; max-height:420px;
  border-radius:20px; overflow:hidden; background:#000; margin-bottom:18px;
}
.wsikho-cam-box video{ width:100%; height:100%; object-fit:cover; transform:scaleX(-1); }
.wsikho-cam-ring{
  position:absolute; inset:0; border-radius:20px;
  box-shadow:inset 0 0 0 3px rgba(255,255,255,.5);
  pointer-events:none;
}
.wsikho-cam-actions{ display:flex; justify-content:center; margin-bottom:10px; }
.wsikho-btn-circle{
  width:74px; height:74px; border-radius:50%; padding:0; position:relative;
}
.wsikho-btn-circle span{
  position:absolute; inset:6px; border-radius:50%; background:#fff;
}
.wsikho-cam-status{ font-size:13px; color:rgba(255,255,255,.7); }

.wsikho-preview-box{
  width:100%; aspect-ratio:3/4; max-height:420px; border-radius:20px; overflow:hidden;
  margin-bottom:20px; background:#000;
}
.wsikho-preview-box img{ width:100%; height:100%; object-fit:cover; }
.wsikho-review-actions{ display:flex; gap:10px; }
.wsikho-review-actions .wsikho-btn{ flex:1; }
.wsikho-hashtag-preview{
  margin-top:16px; font-weight:700; color:var(--ig2);
  background:rgba(255,255,255,.1); border-radius:999px; padding:8px 16px; display:inline-block;
}

.wsikho-spinner{
  width:52px; height:52px; margin:0 auto 20px;
  border:4px solid rgba(255,255,255,.2); border-top-color:var(--accent2);
  border-radius:50%; animation:wsikhoSpin 1s linear infinite;
}
@keyframes wsikhoSpin{ to{ transform:rotate(360deg); } }

.wsikho-card-celebrate{ position:relative; overflow:hidden; }
.wsikho-check{
  width:64px; height:64px; border-radius:50%; margin:0 auto 14px;
  background:linear-gradient(135deg,#22c55e,#16a34a);
  display:flex; align-items:center; justify-content:center; font-size:30px; font-weight:900;
  animation:wsikhoPop .5s ease;
}
@keyframes wsikhoPop{ 0%{ transform:scale(0);} 70%{ transform:scale(1.15);} 100%{ transform:scale(1);} }
.wsikho-coupon-box{
  margin-top:18px; display:flex; align-items:center; justify-content:space-between; gap:10px;
  background:rgba(255,255,255,.12); border:2px dashed rgba(255,255,255,.4);
  border-radius:16px; padding:14px 18px;
}
.wsikho-coupon-code{ font-size:20px; font-weight:800; letter-spacing:2px; }
.wsikho-btn-copy{
  border:none; cursor:pointer; padding:8px 14px; border-radius:10px; font-weight:700;
  background:var(--accent2); color:#0f0c29;
}
.wsikho-confetti{ position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.wsikho-confetti span{
  position:absolute; top:-10px; width:8px; height:14px; opacity:.9;
  animation:wsikhoFall linear forwards;
}
@keyframes wsikhoFall{ to{ transform:translateY(420px) rotate(360deg); opacity:0; } }

@media (max-width:480px){
  .wsikho-card{ padding:28px 20px; border-radius:22px; }
}
