/* scrollvault.css — 봉인된 두루마리 v2 */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  --sv-gold:  #d4aa50;
  --sv-gold2: #f0d882;
  --sv-bg:    #080612;
  --sv-card-bg: linear-gradient(155deg, #110a28 0%, #0b0820 55%, #100d26 100%);
  --sv-text:     #ddd4bc;
  --sv-text-dim: rgba(220, 200, 160, 0.45);
  --sv-border:   rgba(212, 170, 80, 0.25);
}

/* ── 기본 ──────────────────────────────────────────────── */
body { background: var(--sv-bg) !important; }

#sv-app {
  font-family: 'Crimson Text', Georgia, serif;
  background: transparent;
  min-height: 100vh;
  color: var(--sv-text);
  position: relative;
  font-size: 17px;
}
.sv-cin { font-family: 'Cinzel', 'Times New Roman', serif; }

/* ── 별 배경 ──────────────────────────────────────────── */
.sv-stars {
  position: fixed; inset: 0;
  pointer-events: none; overflow: hidden; z-index: 0;
  background: var(--sv-bg);
}
.sv-star {
  position: absolute; border-radius: 50%; background: #fff;
  animation: sv-twinkle var(--d, 3s) ease-in-out infinite;
}

/* ── 레이아웃 ─────────────────────────────────────────── */
.sv-home-wrap,
.sv-card-wrap {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 28px 20px;
}

.sv-card {
  background: var(--sv-card-bg);
  border: 1px solid var(--sv-border);
  border-radius: 18px;
  padding: 34px 30px;
  width: 100%; max-width: 460px;
  position: relative; overflow: hidden;
  box-shadow: 0 0 60px rgba(100, 60, 180, 0.15);
}
.sv-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(90, 40, 180, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

/* ── 홈 ───────────────────────────────────────────────── */
.sv-home-auth {
  position: relative; z-index: 1;
  display: flex; justify-content: flex-end;
  gap: 10px; align-items: center;
  width: 100%; max-width: 460px;
  margin-bottom: 28px;
}
.sv-orb-wrap {
  display: flex; justify-content: center;
  margin-bottom: 36px;
}
.sv-seal-orb {
  width: 116px; height: 116px; border-radius: 50%;
  border: 1.5px solid rgba(212, 170, 80, 0.35);
  position: relative;
  animation: sv-seal-pulse 3s ease-in-out infinite;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at 38% 28%, #240d48, #080612);
}
.sv-ring {
  position: absolute; inset: -14px; border-radius: 50%;
  border: 1px solid rgba(212, 170, 80, 0.2);
  animation: sv-spin 18s linear infinite;
}
.sv-ring2 {
  position: absolute; inset: -26px; border-radius: 50%;
  border: 1px dashed rgba(212, 170, 80, 0.1);
  animation: sv-spin 32s linear infinite reverse;
}
.sv-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--sv-gold); position: absolute;
  animation: sv-orbit 4s linear infinite;
  box-shadow: 0 0 6px var(--sv-gold);
}
.sv-dot2 { animation-delay: 2s; animation-duration: 5.6s; }

.sv-home-title { text-align: center; margin-bottom: 30px; }
.sv-badge-tag {
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 0.3em;
  color: rgba(212, 170, 80, 0.65);
  display: block; margin-bottom: 10px;
}
.sv-main-title {
  font-family: 'Cinzel', serif;
  font-size: 38px; font-weight: 700;
  color: #f0e8d0; letter-spacing: 0.03em; line-height: 1.15;
  text-shadow: 0 0 40px rgba(212, 170, 80, 0.2);
}
.sv-sub-title {
  font-size: 16px; color: rgba(220, 200, 160, 0.5);
  margin-top: 12px; line-height: 2;
}
.sv-member-badge {
  margin-top: 8px; font-size: 12px;
  color: rgba(212, 170, 80, 0.55);
  font-family: 'Cinzel', serif; letter-spacing: 0.06em;
}
.sv-home-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; width: 100%; max-width: 460px; margin-top: 24px;
}
.sv-home-btn {
  background: linear-gradient(160deg, #130a2a, #0b0820);
  border: 1px solid rgba(212, 170, 80, 0.2);
  border-radius: 14px; padding: 30px 14px;
  cursor: pointer; color: var(--sv-text);
  display: flex; flex-direction: column;
  align-items: center; gap: 11px;
  transition: all 0.28s; width: 100%;
}
.sv-home-btn:hover {
  border-color: rgba(212, 170, 80, 0.55);
  box-shadow: 0 0 24px rgba(212, 170, 80, 0.12);
  transform: translateY(-2px);
}
.sv-home-sym {
  font-family: 'Cinzel', serif;
  font-size: 22px; color: rgba(212, 170, 80, 0.8);
}
.sv-home-btn-title {
  font-family: 'Cinzel', serif;
  font-size: 13px; font-weight: 600;
  color: #e8ddc8; white-space: pre-line;
  text-align: center; line-height: 1.7; letter-spacing: 0.05em;
}
.sv-home-btn-sub { font-size: 11px; color: rgba(200, 191, 168, 0.3); }
.sv-footer-note {
  margin-top: 36px; text-align: center;
  font-size: 11px; color: rgba(200, 191, 168, 0.18); line-height: 2.2;
}

/* ── 네비 ─────────────────────────────────────────────── */
.sv-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(212, 170, 80, 0.12);
}
.sv-nav-right { display: flex; gap: 8px; align-items: center; }
.sv-username-badge {
  font-family: 'Cinzel', serif;
  font-size: 11px; color: rgba(212, 170, 80, 0.5);
  letter-spacing: 0.08em;
}

/* ── 버튼 ─────────────────────────────────────────────── */
.sv-btn {
  font-family: 'Cinzel', serif;
  font-size: 13px; letter-spacing: 0.1em;
  background: linear-gradient(135deg, #22094a, #340f70);
  border: 1px solid rgba(212, 170, 80, 0.45);
  color: var(--sv-gold2); border-radius: 9px;
  padding: 14px; width: 100%; cursor: pointer;
  transition: all 0.25s; display: block; margin-top: 10px;
}
.sv-btn:hover {
  background: linear-gradient(135deg, #2e1260, #4518a0);
  box-shadow: 0 0 22px rgba(212, 170, 80, 0.2);
}
.sv-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.sv-btn-red {
  background: linear-gradient(135deg, #420c0c, #671818) !important;
  border-color: rgba(220, 60, 60, 0.5) !important;
  color: #ffaaaa !important;
}
.sv-btn-red:hover {
  background: linear-gradient(135deg, #581010, #891e1e) !important;
  box-shadow: 0 0 22px rgba(200, 50, 50, 0.2) !important;
}
.sv-ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(220, 200, 160, 0.38);
  border-radius: 9px; padding: 12px; width: 100%;
  font-size: 14px; cursor: pointer; margin-top: 9px;
  transition: all 0.2s; display: block;
  font-family: 'Crimson Text', serif;
}
.sv-ghost:hover { color: rgba(220, 200, 160, 0.65); border-color: rgba(255,255,255,0.16); }
.sv-gsm {
  background: transparent; border: none;
  color: rgba(212, 170, 80, 0.5);
  font-family: 'Cinzel', serif;
  font-size: 11px; letter-spacing: 0.08em;
  cursor: pointer; padding: 3px 7px; transition: color 0.2s;
}
.sv-gsm:hover { color: rgba(212, 170, 80, 0.9); }

/* ── 폼 요소 ──────────────────────────────────────────── */
.sv-lbl {
  font-family: 'Cinzel', serif;
  font-size: 10px; letter-spacing: 0.2em;
  color: rgba(212, 170, 80, 0.55);
  display: block; margin-bottom: 7px; margin-top: 16px;
}
.sv-lbl-sub { opacity: 0.45; }
.sv-ta {
  width: 100%; background: rgba(0,0,0,0.45);
  border: 1px solid rgba(212,170,80,0.15);
  border-radius: 9px; color: var(--sv-text);
  padding: 14px; font-family: 'Crimson Text', serif;
  font-size: 16px; line-height: 1.8;
  min-height: 130px; resize: vertical; outline: none;
  transition: border-color 0.2s; display: block;
}
.sv-ta:focus { border-color: rgba(212,170,80,0.45); }
.sv-ta::placeholder { color: rgba(200,180,140,0.28); }
.sv-inp {
  width: 100%; background: rgba(0,0,0,0.45);
  border: 1px solid rgba(212,170,80,0.15);
  border-radius: 9px; color: var(--sv-text);
  padding: 12px 14px; font-family: 'Crimson Text', serif;
  font-size: 15px; letter-spacing: 0.02em;
  outline: none; transition: border-color 0.2s;
  margin-bottom: 0; display: block;
}
.sv-inp:focus { border-color: rgba(212,170,80,0.45); }
.sv-inp::placeholder { color: rgba(200,180,140,0.28); }
.sv-inp-key {
  font-family: 'Cinzel', serif;
  font-size: 18px; letter-spacing: 0.18em;
  text-align: center; text-transform: uppercase;
}
.sv-char-count {
  font-size: 11px; color: rgba(200,180,140,0.28);
  text-align: right; margin-top: 5px; margin-bottom: 5px;
}

/* ── 소멸 시한 ────────────────────────────────────────── */
.sv-exp-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 7px; margin-bottom: 18px;
}
.sv-exp-btn {
  background: transparent;
  border: 1px solid rgba(212,170,80,0.2);
  color: #b89a60; border-radius: 8px;
  padding: 10px 4px; font-family: 'Cinzel', serif;
  font-size: 10px; cursor: pointer;
  transition: all 0.2s; letter-spacing: 0.03em;
  text-align: center; line-height: 1.6;
}
.sv-exp-btn:hover, .sv-exp-btn.on {
  border-color: var(--sv-gold); color: var(--sv-gold2);
}
.sv-exp-btn.on {
  background: rgba(212,170,80,0.12);
  box-shadow: 0 0 12px rgba(212,170,80,0.15);
}
.sv-exp-sub { display: block; font-size: 9px; opacity: 0.5; font-family: 'Crimson Text', serif; margin-top: 3px; }

/* ── 안내 텍스트 ───────────────────────────────────────── */
.sv-seal-note {
  font-size: 13px; color: var(--sv-text-dim);
  margin: 12px 0 16px; line-height: 2; font-style: italic;
}
.sv-err {
  color: #ff8888; font-size: 13px;
  background: rgba(239,68,68,0.07);
  border: 1px solid rgba(239,68,68,0.22);
  border-radius: 7px; padding: 10px 14px;
  margin-bottom: 10px; font-style: italic;
}
.sv-screen-title {
  font-family: 'Cinzel', serif;
  font-size: 18px; font-weight: 600;
  color: #f0e8d0; margin-bottom: 20px; letter-spacing: 0.06em;
}

/* ── 봉인 완료 ────────────────────────────────────────── */
.sv-key-label {
  font-size: 10px; color: rgba(200,180,140,0.4);
  margin-bottom: 8px; font-family: 'Cinzel', serif;
  letter-spacing: 0.2em; text-align: center;
}
.sv-key-disp {
  font-family: 'Cinzel', serif;
  font-size: 24px; letter-spacing: 0.2em; color: var(--sv-gold2);
  text-align: center;
  text-shadow: 0 0 30px rgba(212,170,80,0.6), 0 0 60px rgba(212,170,80,0.2);
  padding: 18px 12px; border: 1px solid rgba(212,170,80,0.25);
  border-radius: 11px; background: rgba(0,0,0,0.5); cursor: pointer;
  margin-bottom: 9px; transition: box-shadow 0.2s;
}
.sv-key-disp:hover { box-shadow: 0 0 20px rgba(212,170,80,0.25); }
.sv-copy-hint { font-size: 11px; color: rgba(212,170,80,0.38); margin-top: 7px; font-family: 'Crimson Text', serif; }
.sv-exp-note { font-size: 13px; color: var(--sv-text-dim); margin-bottom: 5px; font-style: italic; text-align: center; }
.sv-warn-box {
  background: rgba(212,170,80,0.04);
  border: 1px solid rgba(212,170,80,0.12);
  border-radius: 9px; padding: 13px 16px;
  font-size: 13px; color: rgba(220,200,160,0.45);
  line-height: 2; margin: 16px 0; text-align: left; font-style: italic;
}
.sv-warn-box strong { color: rgba(255,120,120,0.7); }

/* ── 열람 화면 ────────────────────────────────────────── */
.sv-scroll-paper {
  background: linear-gradient(180deg, #faf4e5, #ede8d0);
  border-radius: 7px; padding: 20px 22px;
  color: #1e1608; font-family: 'Crimson Text', serif;
  font-size: 16px; line-height: 1.9;
  margin-bottom: 18px; white-space: pre-wrap; word-break: break-word;
  box-shadow: inset 0 0 20px rgba(140,100,45,0.15);
  position: relative;
}
.sv-scroll-edge {
  position: absolute; left: 0; right: 0; height: 7px;
  background: rgba(140,100,45,0.13);
}
.sv-scroll-top { top: 0; border-radius: 7px 7px 0 0; }
.sv-scroll-bot { bottom: 0; border-radius: 0 0 7px 7px; }
.sv-scroll-text { position: relative; z-index: 1; }
.sv-view-note {
  font-size: 13px; color: var(--sv-text-dim);
  text-align: center; margin-bottom: 15px;
  line-height: 2; font-style: italic;
}
.sv-view-warn { color: rgba(255,100,100,0.5); }

/* ── 소각 확인 오버레이 ─────────────────────────────────── */
.sv-confirm-overlay {
  position: absolute; inset: 0;
  background: rgba(4,2,12,0.97); border-radius: 18px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 30px; text-align: center; z-index: 10;
}
.sv-confirm-icon { font-size: 48px; margin-bottom: 14px; }
.sv-confirm-title {
  font-family: 'Cinzel', serif;
  font-size: 17px; font-weight: 700;
  color: #f0e8d0; margin-bottom: 12px; letter-spacing: 0.08em;
}
.sv-confirm-body {
  font-size: 14px; color: rgba(220,200,160,0.5);
  line-height: 2.1; margin-bottom: 28px; font-style: italic;
}
.sv-confirm-body strong { color: #ff8888; }

/* ── 소각 애니메이션 ──────────────────────────────────── */
.sv-burn-bg { background: #060310 !important; min-height: 420px; }
.sv-burn-glow {
  position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
  background: radial-gradient(ellipse at 50% 100%, rgba(190,60,15,0.42) 0%, transparent 70%);
  pointer-events: none;
}
.sv-burn-stage {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -60%);
  width: 168px; height: 205px;
}
.sv-burn-paper {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #faf4e5, #ede8d0);
  border-radius: 6px; padding: 10px 12px;
  font-size: 9px; font-family: monospace;
  color: #555; overflow: hidden; line-height: 1.6;
}
.sv-burn-flames { position: absolute; bottom: 0; left: -8%; width: 116%; }
.sv-flame {
  position: absolute; bottom: 0; left: 0; right: 0;
  border-radius: 50% 50% 0 0; transform-origin: bottom;
  animation: sv-flame-rise 4.5s ease-in forwards, sv-flicker 0.22s ease-in-out infinite;
}
.sv-flame1 { background: linear-gradient(to top, #991b1b, #c2410c, #f59e0b, #fef9c3); }
.sv-flame2 { background: linear-gradient(to top, #7f1d1d, #ea580c, #fbbf24); opacity: 0.7; animation-delay: 0.13s; }
.sv-smoke {
  position: absolute; top: -12px;
  width: 26px; height: 32px; border-radius: 50%;
  background: rgba(120,85,130,0.2);
  animation: sv-smoke-rise ease-out infinite;
}
.sv-burning-label {
  position: absolute; bottom: 36px; left: 0; right: 0; text-align: center;
  font-family: 'Cinzel', serif; font-size: 12px;
  letter-spacing: 0.2em; color: rgba(210,100,40,0.7);
}

/* ── 재 화면 ──────────────────────────────────────────── */
.sv-ash-bg { background: #06040e !important; min-height: 380px; }
.sv-ash-svg { display: block; margin: 24px auto 18px; opacity: 0.3; }
.sv-ash-note {
  font-size: 14px; color: rgba(200,180,140,0.32);
  line-height: 2.2; margin-bottom: 30px;
  font-style: italic; text-align: center;
}

/* ── 인증 ─────────────────────────────────────────────── */
.sv-auth-sub {
  font-size: 14px; color: var(--sv-text-dim);
  margin-bottom: 20px; font-style: italic; line-height: 1.9;
}
.sv-auth-switch {
  text-align: center; margin-top: 14px;
  font-size: 13px; color: rgba(200,180,140,0.3); font-style: italic;
}
.sv-register-note {
  font-size: 11px; color: rgba(200,180,140,0.22);
  margin-bottom: 13px; font-style: italic; line-height: 1.8;
}

/* ── 내 목록 ──────────────────────────────────────────── */
.sv-list-sub { font-size: 13px; color: var(--sv-text-dim); margin-bottom: 18px; font-style: italic; }
.sv-list-row {
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(212,170,80,0.12);
  border-radius: 11px; padding: 14px 16px;
  cursor: pointer; transition: all 0.2s;
  margin-bottom: 9px; display: flex;
  justify-content: space-between; align-items: center; gap: 10px;
}
.sv-list-row:hover { border-color: rgba(212,170,80,0.32); background: rgba(0,0,0,0.4); }
.sv-list-dead { opacity: 0.32; cursor: default; }
.sv-list-key { font-family: 'Cinzel', serif; font-size: 10px; color: rgba(212,170,80,0.38); letter-spacing: 0.1em; margin-bottom: 4px; }
.sv-list-preview { font-size: 14px; color: var(--sv-text); font-style: italic; line-height: 1.7; }
.sv-list-right { text-align: right; flex-shrink: 0; }
.sv-list-tl { font-size: 11px; color: rgba(212,170,80,0.42); font-family: 'Cinzel', serif; letter-spacing: 0.03em; white-space: nowrap; }
.sv-list-dead-label { color: rgba(255,100,100,0.55) !important; }
.sv-list-hint { font-size: 10px; color: rgba(200,180,140,0.22); margin-top: 3px; }
.sv-list-empty { text-align: center; padding: 30px 0; font-size: 14px; color: var(--sv-text-dim); font-style: italic; line-height: 2.2; }
.sv-list-empty-sym { font-size: 28px; margin-bottom: 12px; opacity: 0.22; }
.sv-loading { text-align: center; padding: 28px 0; color: var(--sv-text-dim); font-style: italic; font-size: 14px; }

/* ── 제한 초과 경고 ───────────────────────────────────── */
.sv-dramatic { text-align: center; padding: 8px 0 6px; }
.sv-limit-sym { font-size: 26px; margin-bottom: 16px; opacity: 0.6; }
.sv-limit-title { font-family: 'Cinzel', serif; font-size: 15px; font-weight: 600; color: #f0e8d0; margin-bottom: 16px; letter-spacing: 0.06em; }
.sv-limit-body { font-size: 15px; color: rgba(220,200,160,0.65); line-height: 2.3; margin-bottom: 22px; font-style: italic; text-align: left; padding: 0 6px; }
.sv-limit-body strong { color: rgba(220,200,160,0.9); }
.sv-limit-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }

/* ── 룬 장식 ──────────────────────────────────────────── */
.sv-rune-row { text-align: center; letter-spacing: 0.44em; font-size: 14px; margin: 14px 0; opacity: 0.35; width: 100%; max-width: 460px; }
.sv-rune { animation: sv-rune-glow 2.8s ease-in-out infinite; }

/* ── 코너 장식 ────────────────────────────────────────── */
.sv-corner { position: absolute; font-size: 18px; opacity: 0.16; color: var(--sv-gold); pointer-events: none; }
.sv-corner-tl { top: 11px; left: 13px; }
.sv-corner-tr { top: 11px; right: 13px; }
.sv-corner-bl { bottom: 11px; left: 13px; }
.sv-corner-br { bottom: 11px; right: 13px; }

/* ── 모바일 ───────────────────────────────────────────── */
@media (max-width: 480px) {
  .sv-main-title { font-size: 30px; }
  .sv-card { padding: 26px 20px; }
  .sv-key-disp { font-size: 19px; letter-spacing: 0.14em; }
  .sv-exp-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-home-btn { padding: 22px 10px; }
}

/* ── 애니메이션 ───────────────────────────────────────── */
@keyframes sv-twinkle { 0%,100% { opacity: var(--a); } 50% { opacity: calc(var(--a) * 0.1); } }
@keyframes sv-float { 0%,100% { transform: translateY(0) rotate(0deg); } 40% { transform: translateY(-8px) rotate(0.8deg); } 70% { transform: translateY(-4px) rotate(-0.5deg); } }
@keyframes sv-seal-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(212,170,80,0.15), inset 0 0 30px rgba(50,20,100,0.4); } 50% { box-shadow: 0 0 40px 8px rgba(212,170,80,0.1), inset 0 0 50px rgba(70,30,140,0.5); } }
@keyframes sv-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes sv-orbit { from { transform: rotate(0deg) translateX(44px) rotate(0deg); } to { transform: rotate(360deg) translateX(44px) rotate(-360deg); } }
@keyframes sv-fadein { from { opacity: 0; transform: translateY(14px) scale(0.97); } to { opacity: 1; transform: none; } }
@keyframes sv-rune-glow { 0%,100% { color: rgba(212,170,80,0.5); text-shadow: 0 0 8px rgba(212,170,80,0.2); } 50% { color: rgba(212,170,80,0.9); text-shadow: 0 0 24px rgba(212,170,80,0.55); } }
@keyframes sv-shake { 0%,100% { transform: translateX(0); } 20% { transform: translateX(-7px); } 40% { transform: translateX(6px); } 60% { transform: translateX(-5px); } 80% { transform: translateX(4px); } }
@keyframes sv-unroll { from { clip-path: inset(0 0 100% 0); opacity: 0; } to { clip-path: inset(0 0 0% 0); opacity: 1; } }
@keyframes sv-burn-fade { 0% { filter: none; opacity: 1; } 30% { filter: sepia(1) saturate(3) brightness(0.55); opacity: 0.9; } 70% { filter: sepia(1) brightness(0.18); opacity: 0.45; } 100% { filter: sepia(1) brightness(0.03); opacity: 0; } }
@keyframes sv-flame-rise { 0% { height: 0; opacity: 0; } 8% { opacity: 1; } 100% { height: 150px; opacity: 0.95; } }
@keyframes sv-flicker { 0%,100% { transform: scaleX(1) scaleY(1); } 20% { transform: scaleX(0.87) scaleY(1.1); } 50% { transform: scaleX(1.08) scaleY(0.91); } 80% { transform: scaleX(0.95) scaleY(1.07); } }
@keyframes sv-smoke-rise { 0% { opacity: 0.35; transform: translateY(0) scaleX(1); } 100% { opacity: 0; transform: translateY(-90px) scaleX(2.4); } }
@keyframes sv-ash-in { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }

.sv-float  { animation: sv-float 5s ease-in-out infinite; }
.sv-fadein { animation: sv-fadein 0.5s cubic-bezier(0.22,1,0.36,1) both; }
.sv-unroll { animation: sv-unroll 0.85s cubic-bezier(0.22,1,0.36,1) both; }
.sv-burnout { animation: sv-burn-fade 4.5s ease-in forwards; }
.sv-ashin  { animation: sv-ash-in 0.9s ease both; }
.sv-shake  { animation: sv-shake 0.42s ease; }