/* ============================================================
   VUON CA ROT - AI CHARACTER SHOWCASE
   Design tokens: pastel hong tron tria (ban dau tien)
   ============================================================ */

:root{
  --blush: #FBE7EC;
  --blush-deep: #F6D8E1;
  --rose: #F3B6C6;
  --rose-deep: #E893AC;
  --rose-darker: #D5758F;
  --cream: #FFFBF6;
  --surface: #ffffff;
  --mauve: #6B4552;
  --mauve-soft: #9C7580;
  --mauve-faint: #C9A6AF;
  --gold: #D8A657;
  --gold-soft: #EAD3A3;
  --white: #ffffff;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Quicksand', sans-serif;
  --font-hand: 'Mali', cursive;

  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --shadow-soft: 0 10px 30px -12px rgba(107,69,82,0.22);
  --shadow-card: 0 6px 18px -8px rgba(107,69,82,0.18);
}

[data-theme="dark"]{
  --blush: #3A2A30;
  --blush-deep: #2E2126;
  --rose: #C98B9E;
  --rose-deep: #DD8AA8;
  --rose-darker: #EBA9C0;
  --cream: #4A363D;
  --surface: #4A363D;
  --mauve: #F5E5EA;
  --mauve-soft: #DCC0C9;
  --mauve-faint: #A98A93;
  --gold: #E6BC7A;
  --gold-soft: #C6A15B;

  --shadow-soft: 0 10px 30px -12px rgba(0,0,0,0.45);
  --shadow-card: 0 6px 18px -8px rgba(0,0,0,0.35);
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }

/* Con tro chuot hinh ban chan tho */
body, a, button{
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28'%3E%3Cellipse cx='14' cy='18' rx='7' ry='6' fill='%23E893AC' stroke='white' stroke-width='1.5'/%3E%3Cellipse cx='7' cy='9' rx='3' ry='4' fill='%23E893AC' stroke='white' stroke-width='1.5'/%3E%3Cellipse cx='14' cy='6' rx='3' ry='4' fill='%23E893AC' stroke='white' stroke-width='1.5'/%3E%3Cellipse cx='21' cy='9' rx='3' ry='4' fill='%23E893AC' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E") 6 6, auto;
}

/* Thanh cuon mau hong */
::-webkit-scrollbar{ width:12px; height:12px; }
::-webkit-scrollbar-track{ background:var(--blush); }
::-webkit-scrollbar-thumb{ background:var(--rose-deep); border-radius:999px; border:3px solid var(--blush); }
::-webkit-scrollbar-thumb:hover{ background:var(--rose-darker); }
html{ scrollbar-color:var(--rose-deep) var(--blush); scrollbar-width:thin; }

/* Logo lac lu khi hover */
.brand-mark img{ transition:transform .2s ease; }
.brand:hover .brand-mark img{ animation:wiggle .6s ease; }
@keyframes wiggle{
  0%, 100%{ transform:rotate(0deg); }
  25%{ transform:rotate(-12deg) scale(1.05); }
  50%{ transform:rotate(0deg); }
  75%{ transform:rotate(12deg) scale(1.05); }
}

body{
  font-family:var(--font-body);
  background:var(--blush);
  color:var(--mauve);
  line-height:1.6;
  min-height:100vh;
  background-image:
    radial-gradient(circle at 8% 12%, rgba(243,182,198,0.35) 0%, transparent 40%),
    radial-gradient(circle at 92% 85%, rgba(216,166,87,0.16) 0%, transparent 45%);
  background-attachment:fixed;
  transition:background-color .35s ease, color .35s ease;
}

a{ color:inherit; text-decoration:none; }
ul{ list-style:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; }
input{ font-family:inherit; }

::selection{ background:var(--rose-deep); color:var(--white); }
a:focus-visible, button:focus-visible, input:focus-visible{
  outline:2px solid var(--rose-darker);
  outline-offset:2px;
  border-radius:4px;
}

.container{ width:100%; max-width:1180px; margin:0 auto; padding:0 24px; }

.grad-text{
  background:linear-gradient(90deg, var(--rose-deep), var(--gold));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

/* ---------------- Top navigation ---------------- */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(251,231,236,0.9);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(107,69,82,0.08);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 24px;
  max-width:1180px;
  margin:0 auto;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-display);
  font-style:italic;
  font-weight:700;
  font-size:22px;
  color:var(--rose-darker);
  flex-shrink:0;
}
.brand-mark{ width:42px; height:42px; flex-shrink:0; }
.brand-mark img{ width:100%; height:100%; object-fit:contain; }

.nav-scroll{
  overflow-x:auto;
  flex:1;
  scrollbar-width:none;
}
.nav-scroll::-webkit-scrollbar{ display:none; }
.nav-links{
  display:flex;
  align-items:flex-start;
  gap:22px;
  font-size:12.5px;
  font-weight:700;
  white-space:nowrap;
  padding:2px 2px;
}
.nav-links a{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:2px;
  color:var(--mauve-soft);
  transition:color .2s ease;
}
.nav-links a .nav-icon{ font-size:15px; line-height:1; color:var(--rose-darker); }
.nav-links a:hover{ color:var(--rose-darker); }

.nav-actions{ display:flex; align-items:center; gap:10px; flex-shrink:0; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px 22px;
  border-radius:999px;
  font-weight:700;
  font-size:14px;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn-primary{
  background:var(--rose-deep);
  color:var(--white);
  box-shadow:0 8px 20px -8px rgba(232,147,172,0.7);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 12px 24px -8px rgba(232,147,172,0.85); }
.btn-ghost{
  background:var(--surface);
  color:var(--rose-darker);
  border:1.5px solid var(--rose);
}
.btn-ghost:hover{ background:var(--blush-deep); }
.btn-gold{
  background:var(--gold-soft);
  color:#5C4A22;
}
.btn-gold:hover{ background:var(--gold); color:var(--white); }
.btn-sm{ padding:7px 16px; font-size:13px; }

.icon-btn{
  width:40px; height:40px;
  border-radius:50%;
  background:var(--surface);
  display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-card);
  color:var(--rose-darker);
  font-size:16px;
  flex-shrink:0;
}
.icon-btn:hover{ background:var(--blush-deep); }

.menu-toggle{
  display:none;
  width:38px; height:38px;
  border-radius:50%;
  background:var(--surface);
  align-items:center;
  justify-content:center;
  box-shadow:var(--shadow-card);
}

/* ---------------- Hero ---------------- */
.hero{ position:relative; padding:56px 0 20px; overflow:hidden; }
.hero-inner{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:48px;
  align-items:center;
}
.eyebrow{
  font-family:var(--font-hand);
  color:var(--rose-darker);
  font-size:15px;
  margin-bottom:10px;
}
.hero h1{
  font-family:var(--font-display);
  font-style:italic;
  font-weight:700;
  font-size:clamp(32px, 5vw, 52px);
  line-height:1.15;
  color:var(--mauve);
  margin-bottom:18px;
}
.hero p.lead{
  font-size:15.5px;
  color:var(--mauve-soft);
  max-width:480px;
  margin-bottom:28px;
}
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }

/* Rotating card stack */
.hero-art{ position:relative; height:380px; }
.hero-card{
  position:absolute;
  width:220px;
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
  border:6px solid var(--white);
  transition:top .8s cubic-bezier(0.4,0,0.2,1), left .8s cubic-bezier(0.4,0,0.2,1),
             transform .8s cubic-bezier(0.4,0,0.2,1), z-index 0s;
}
.cover{
  aspect-ratio:3/4;
  display:flex;
  align-items:flex-end;
  padding:14px;
  font-family:var(--font-display);
  font-style:italic;
  font-weight:700;
  color:var(--white);
  font-size:18px;
  text-shadow:0 2px 10px rgba(0,0,0,0.25);
  position:relative;
}
.hero-card.slot-mid{ top:0; left:10%; transform:rotate(-7deg); z-index:2; }
.hero-card.slot-front{ top:60px; left:44%; transform:rotate(5deg); z-index:3; }
.hero-card.slot-back{ top:170px; left:8%; transform:rotate(4deg); z-index:1; width:180px; }
.hero-card .cover-fade{ animation:cardFadeIn .5s ease; }
@keyframes cardFadeIn{
  0%{ opacity:0; }
  100%{ opacity:1; }
}
.new-badge{
  position:absolute;
  top:10px; left:10px;
  background:var(--rose-deep);
  color:var(--white);
  font-family:var(--font-hand);
  font-size:12px;
  padding:3px 12px;
  border-radius:999px;
  box-shadow:var(--shadow-card);
}

.p-a{ background:linear-gradient(160deg, #E893AC, #6B4552); }
.p-b{ background:linear-gradient(160deg, #D8A657, #E893AC); }
.p-c{ background:linear-gradient(160deg, #9C7580, #3E2A31); }
.p-d{ background:linear-gradient(160deg, #F3B6C6, #D8A657); }
.p-e{ background:linear-gradient(160deg, #6B4552, #9C7580); }
.p-f{ background:linear-gradient(160deg, #E893AC, #D8A657); }
.p-g{ background:linear-gradient(160deg, #D8A657, #F3B6C6); }
.p-h{ background:linear-gradient(160deg, #9C7580, #D8A657); }

/* ---------------- Marquee ticker ---------------- */
.marquee{
  background:var(--rose-deep);
  color:var(--white);
  padding:10px 0;
  overflow:hidden;
  white-space:nowrap;
}
.marquee-track{
  display:inline-block;
  padding-left:100%;
  animation:marquee-scroll 26s linear infinite;
  font-family:var(--font-hand);
  font-size:14.5px;
  letter-spacing:0.02em;
}
@keyframes marquee-scroll{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-100%); }
}

/* ---------------- Section heading ---------------- */
.section{ padding:44px 0; }
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  margin-bottom:26px;
  gap:16px;
  flex-wrap:wrap;
}
.section-head h2{
  font-family:var(--font-display);
  font-style:italic;
  font-size:clamp(24px, 3vw, 32px);
  color:var(--mauve);
}
.section-head .see-all{
  font-weight:700;
  font-size:14px;
  color:var(--rose-darker);
}

/* ---------------- Character grid & card ---------------- */
.char-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(200px, 1fr));
  gap:22px;
}
.char-card{
  background:var(--cream);
  border-radius:var(--radius-md);
  overflow:hidden;
  box-shadow:var(--shadow-card);
  transition:transform .22s ease, box-shadow .22s ease;
  display:flex;
  flex-direction:column;
}
.char-card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-soft); }
.char-cover{
  aspect-ratio:3/4;
  position:relative;
  display:flex;
  align-items:flex-end;
  padding:14px;
}
.char-cover .title-on-cover{
  font-family:var(--font-display);
  font-style:italic;
  font-weight:700;
  color:var(--white);
  font-size:17px;
  text-shadow:0 2px 10px rgba(0,0,0,0.3);
}
.char-body{
  padding:14px 16px 16px;
  display:flex;
  flex-direction:column;
  gap:8px;
  flex:1;
}
.char-quote{
  font-size:12.5px;
  font-style:italic;
  color:var(--mauve-soft);
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

/* ---------------- Footer ---------------- */
.site-footer{
  margin-top:60px;
  padding:40px 0 32px;
  border-top:1px solid rgba(107,69,82,0.1);
  background:var(--blush-deep);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:16px;
}
.footer-note{ font-size:13px; color:var(--mauve-soft); }
.footer-hand{ font-family:var(--font-hand); color:var(--rose-darker); }

/* ---------------- Floating action buttons (Discord / Donate) ---------------- */
.float-actions{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:60;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.float-circle{
  width:56px; height:56px;
  border-radius:50%;
  overflow:hidden;
  box-shadow:0 10px 26px -8px rgba(107,69,82,0.5);
  border:3px solid var(--white);
  transition:transform .2s ease, box-shadow .2s ease;
  display:block;
}
.float-circle img{ width:100%; height:100%; object-fit:cover; }
.float-circle:hover{ transform:translateY(-4px) scale(1.06); box-shadow:0 14px 30px -8px rgba(107,69,82,0.6); }

/* ---------------- Visit counter ---------------- */
.visit-counter{
  text-align:center;
  font-family:var(--font-hand);
  font-size:13.5px;
  color:var(--rose-darker);
  padding:6px 0 0;
}

/* ---------------- Comments ---------------- */
.comments-wrap{
  max-width:720px;
  margin:0 auto;
}
.comments-title{
  text-align:center;
  font-family:var(--font-display);
  font-style:italic;
  font-size:clamp(22px,3vw,28px);
  color:var(--mauve);
  margin-bottom:22px;
}
.comment-form{
  background:var(--cream);
  border-radius:var(--radius-md);
  padding:20px 22px;
  box-shadow:var(--shadow-card);
  margin-bottom:24px;
}
.comment-form-row{ display:flex; gap:10px; margin-bottom:10px; flex-wrap:wrap; }
.comment-form input[type=text]{
  padding:10px 14px;
  border-radius:12px;
  border:1.5px solid var(--rose);
  font-size:13.5px;
  outline:none;
  flex:1;
  min-width:160px;
}
.comment-form textarea{
  width:100%;
  padding:12px 14px;
  border-radius:12px;
  border:1.5px solid var(--rose);
  min-height:80px;
  resize:vertical;
  outline:none;
  font-size:14px;
  font-family:inherit;
  margin-bottom:10px;
}
.comment-form input:focus, .comment-form textarea:focus{ border-color:var(--rose-darker); }
.comment-hint{ font-size:11.5px; color:var(--mauve-faint); margin-top:4px; }

.comment-list{ display:flex; flex-direction:column; gap:12px; }
.comment-item{
  background:var(--cream);
  border-radius:var(--radius-sm);
  padding:14px 16px;
  box-shadow:var(--shadow-card);
}
.comment-item-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:4px;
}
.comment-name{ font-weight:700; font-size:13.5px; color:var(--rose-darker); }
.comment-date{ font-size:11px; color:var(--mauve-faint); }
.comment-body{ font-size:13.5px; color:var(--mauve); }
.comment-delete{
  font-size:11px;
  color:var(--mauve-faint);
  font-weight:700;
}
.comment-delete:hover{ color:var(--rose-darker); }
.comment-empty{ text-align:center; color:var(--mauve-faint); font-size:13px; padding:20px 0; }

/* ---------------- Search bar ---------------- */
.search-bar{
  display:flex;
  align-items:center;
  gap:10px;
  background:var(--surface);
  border-radius:999px;
  padding:10px 18px;
  box-shadow:var(--shadow-card);
  flex:1;
  max-width:340px;
}
.search-bar input{
  border:none; outline:none; flex:1; background:transparent;
  font-size:14px; color:var(--mauve);
}
.search-bar input::placeholder{ color:var(--mauve-faint); }

/* ---------------- Toolbar / filters (listing page) ---------------- */
.toolbar{ display:flex; align-items:center; gap:16px; flex-wrap:wrap; margin-bottom:30px; justify-content:space-between; }
.genre-row{ display:flex; gap:10px; flex-wrap:wrap; }
.genre-chip{
  padding:8px 18px; border-radius:999px; background:var(--surface); color:var(--mauve-soft);
  font-weight:700; font-size:13.5px; box-shadow:var(--shadow-card); transition:all .18s ease;
}
.genre-chip:hover, .genre-chip.active{ background:var(--rose-deep); color:var(--white); }

/* ---------------- Page banner ---------------- */
.page-banner{ padding:36px 0 8px; }
.breadcrumb{ font-size:12.5px; color:var(--mauve-faint); font-weight:600; margin-bottom:10px; }
.breadcrumb a:hover{ color:var(--rose-darker); }

/* ---------------- Character bio page ---------------- */
.bio-layout{ display:grid; grid-template-columns:280px 1fr; gap:44px; align-items:start; }
.bio-portrait{
  border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow-soft);
  border:6px solid var(--white); aspect-ratio:3/4;
}
.bio-name{ font-family:var(--font-display); font-style:italic; font-weight:700; font-size:clamp(28px,4vw,40px); color:var(--mauve); margin-bottom:4px; }
.bio-group{ font-size:13px; color:var(--mauve-faint); font-weight:600; text-transform:uppercase; letter-spacing:0.05em; margin-bottom:16px; }
.bio-quote{ font-family:var(--font-display); font-style:italic; font-size:18px; color:var(--mauve-soft); border-left:2px solid var(--gold); padding-left:16px; margin-bottom:22px; }
.bio-desc{ font-size:14.5px; color:var(--mauve); margin-bottom:26px; }
.bio-links{ display:flex; gap:12px; flex-wrap:wrap; }

/* ---------------- Responsive ---------------- */
@media (max-width: 900px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero-art{ height:280px; order:-1; }
  .bio-layout{ grid-template-columns:1fr; }
  .bio-portrait{ max-width:280px; margin:0 auto; }
}
@media (max-width: 720px){
  .brand span:last-child{ display:none; }
  .search-bar{ display:none; }
}
/* ---------------- Cong tac sang/toi (tho mo/nham mat) ---------------- */
.theme-switch{
  position:relative;
  width:58px;
  height:30px;
  border-radius:999px;
  background:var(--rose);
  box-shadow:inset 0 2px 6px rgba(107,69,82,0.25);
  flex-shrink:0;
  transition:background .3s ease;
}
[data-theme="dark"] .theme-switch{ background:var(--blush-deep); }
.theme-switch-knob{
  position:absolute;
  top:3px;
  left:3px;
  width:24px;
  height:24px;
  border-radius:50%;
  background:var(--surface);
  box-shadow:0 2px 6px rgba(0,0,0,0.25);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .3s cubic-bezier(0.4,0,0.2,1);
}
[data-theme="dark"] .theme-switch-knob{ transform:translateX(28px); }
.theme-switch-knob svg{ width:18px; height:18px; }

/* ---------------- Hieu ung gon nuoc khi cham/click ---------------- */
.ripple{
  position:fixed;
  border-radius:50%;
  pointer-events:none;
  z-index:9999;
  border:1.5px solid var(--rose-deep);
  background:rgba(232,147,172,0.18);
  transform:translate(-50%,-50%);
  animation:rippleOut .7s ease-out forwards;
}
@keyframes rippleOut{
  0%{ width:0; height:0; opacity:0.8; }
  100%{ width:70px; height:70px; opacity:0; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; }
}

/* ---------------- Trang cot truyen ---------------- */
.story-title-wrap{ text-align:center; margin-bottom:24px; }
.story-title-wrap .kicker{
  font-family:var(--font-hand);
  color:var(--rose-darker);
  font-size:14px;
  margin-bottom:6px;
}
.story-title{
  font-family:var(--font-display);
  font-style:italic;
  font-weight:700;
  font-size:clamp(30px, 5vw, 46px);
  color:var(--mauve);
}
.story-banner{
  width:100%;
  aspect-ratio:16/7;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  border:6px solid var(--surface);
  margin-bottom:30px;
}
.story-body{
  max-width:720px;
  margin:0 auto 30px;
  font-size:16px;
  color:var(--mauve);
  line-height:1.95;
}
.story-body p{ margin-bottom:1.2em; }
.story-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  color:var(--gold);
  font-size:13px;
  max-width:720px;
  margin:0 auto 26px;
}
.story-divider::before, .story-divider::after{
  content:'';
  height:1px;
  flex:1;
  background:linear-gradient(to right, transparent, var(--gold), transparent);
}
.story-links{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:36px;
}

.vote-wrap{
  text-align:center;
  margin-bottom:40px;
}
.vote-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 28px;
  border-radius:999px;
  background:var(--surface);
  box-shadow:var(--shadow-card);
  font-weight:700;
  font-size:15px;
  color:var(--rose-darker);
  transition:transform .18s ease, background .18s ease;
}
.vote-btn:hover{ transform:translateY(-2px); }
.vote-btn.voted{ background:var(--rose-deep); color:var(--white); }
.vote-btn .heart{ font-size:19px; }
.page-border{
  position:fixed;
  top:0;
  bottom:0;
  width:90px;
  background-image:url('assets/img/border-pattern.png');
  background-repeat:repeat;
  background-size:200px auto;
  opacity:0.5;
  pointer-events:none;
  z-index:1;
}
.page-border.left{ left:0; }
.page-border.right{ right:0; transform:scaleX(-1); }

@media (max-width: 1100px){
  .page-border{ display:none; }
}

/* ---------------- Intro: tho nhay xuong ho luc vao web ---------------- */
.intro-overlay{
  position:fixed;
  inset:0;
  z-index:9999;
  background:var(--blush);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  transition:opacity .6s ease;
}
.intro-overlay.hide{ opacity:0; pointer-events:none; }
.intro-skip{
  position:absolute;
  top:20px;
  right:20px;
  font-family:var(--font-hand);
  font-size:14px;
  color:var(--rose-darker);
  background:var(--surface);
  padding:8px 18px;
  border-radius:999px;
  box-shadow:var(--shadow-card);
}
.intro-scene{
  position:relative;
  width:220px;
  height:240px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  cursor:pointer;
}
.intro-hole{
  position:absolute;
  bottom:14px;
  left:50%;
  transform:translateX(-50%);
  width:14px;
  height:5px;
  border-radius:50%;
  background:var(--mauve);
  opacity:0.5;
}
.intro-hole.grow{
  animation:holeGrow .9s ease forwards;
}
.intro-bunny{
  width:150px;
  height:auto;
  object-fit:contain;
  position:relative;
  z-index:1;
  transition:transform .15s ease;
}
.intro-bunny.bounce{
  animation:bounceOnce .5s ease;
}
.intro-bunny.falling{
  animation:fallIntoHole 1s ease forwards;
}
.intro-caption{
  margin-top:20px;
  font-family:var(--font-display);
  font-style:italic;
  color:var(--mauve-soft);
  font-size:16px;
  min-height:22px;
}
.intro-hint{
  margin-top:8px;
  font-family:var(--font-hand);
  color:var(--rose-darker);
  font-size:13px;
  transition:opacity .3s ease;
}
.intro-hint.hide{ opacity:0; }

@keyframes bounceOnce{
  0%{ transform:translateY(0) scale(1); }
  35%{ transform:translateY(-42px) scale(1.06); }
  60%{ transform:translateY(0) scale(1); }
  80%{ transform:translateY(-10px) scale(1.02); }
  100%{ transform:translateY(0) scale(1); }
}
@keyframes fallIntoHole{
  0%{ transform:translateY(0) scale(1); opacity:1; }
  100%{ transform:translateY(26px) scale(0.08); opacity:0; }
}
@keyframes holeGrow{
  0%{ width:14px; height:5px; opacity:0.5; }
  100%{ width:150px; height:38px; opacity:1; }
}

body.intro-lock{ overflow:hidden; }
