/* ═════════════════════════════════════════════════════════════════════
   home.css — Homepage-specific styles (Editorial Hero, Story Modal,
   Experience Stats, Destination Cards, Photo Bento Grid)
   ═════════════════════════════════════════════════════════════════════ */

/* ── Editorial Hero ───────────────────────────────────────────── */
.eh-section {
  position: relative;
  padding: 20px 0 64px;
  margin: 0 24px 48px;
  border-radius: 28px;
  background: #FAFAFA;
  border: 1px solid rgba(0,0,0,0.04);
}
.hero-plane-deco {
  position: absolute;
  inset: 0;
  background: url('../images/site/landing-plane-img.png') no-repeat;
  background-size: 520px auto;
  background-position: right -20px top -30px;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.eh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.eh-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eh-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(217,70,239,0.08), rgba(6,182,212,0.08));
  border: 1px solid rgba(217,70,239,0.2);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #D946EF;
  width: fit-content;
}

.eh-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #0F172A;
  margin: 0;
}
.eh-grad {
  background: linear-gradient(135deg, #D946EF, #06B6D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.eh-sub {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
  max-width: 480px;
  margin: 0;
}

.eh-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@keyframes hero-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(217,70,239,0.3); }
  50%      { box-shadow: 0 4px 32px rgba(217,70,239,0.55), 0 0 0 4px rgba(217,70,239,0.08); }
}

.eh-cta .hero-btn.btn--primary {
  background: linear-gradient(135deg, #D946EF, #c026d3, #06B6D4);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(217,70,239,0.3);
  animation: hero-pulse 3s ease-in-out infinite;
}
.eh-cta .hero-btn.btn--primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 40px rgba(217,70,239,0.55);
  animation: none;
}
.eh-cta .hero-btn.btn--outline {
  border: 2px solid rgba(217,70,239,0.35);
  color: #D946EF;
  background: transparent;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.eh-cta .hero-btn.btn--outline:hover {
  background: linear-gradient(135deg, #D946EF, #06B6D4);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(217,70,239,0.3), 0 0 0 3px rgba(217,70,239,0.15);
  transform: translateY(-2px) scale(1.02);
}

.eh-stats {
  display: flex;
  gap: 24px;
  padding-top: 6px;
}
.eh-stat {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.eh-stat-num {
  font-size: 1.2rem;
  font-weight: 900;
  color: #0F172A;
  line-height: 1.2;
}
.eh-stat-lbl {
  font-size: 0.68rem;
  font-weight: 500;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.eh-side {
  columns: 2;
  column-gap: 12px;
}
.eh-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
  break-inside: avoid;
  margin-bottom: 12px;
}
.eh-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.eh-card:focus-visible {
  outline: 2px solid #D946EF;
  outline-offset: 4px;
}
.eh-card--a {
  min-height: 220px;
}
.eh-card--b {
  min-height: 180px;
}
.eh-card--c {
  min-height: 140px;
}
.eh-card--d {
  min-height: 200px;
}
.eh-card--e {
  min-height: 150px;
}

.eh-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}
.eh-card:hover .eh-card-bg {
  transform: scale(1.06);
}

.eh-card-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.9;
  transition: opacity 0.35s ease;
}
.eh-card:hover .eh-card-overlay {
  opacity: 0.3;
}

.eh-card-body {
  position: relative;
  z-index: 2;
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.eh-card-tag {
  font-size: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  width: fit-content;
}
.eh-card-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.eh-card--a .eh-card-title {
  font-size: 1.2rem;
}
.eh-card-meta {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 768px) {
  .eh-section { padding: 16px 16px 40px; margin: 0 0 32px; border-radius: 0; }
  .eh-grid { grid-template-columns: 1fr; gap: 28px; }
  .eh-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .eh-sub { font-size: 0.9rem; }
  .eh-stats { gap: 16px; }
  .eh-side { columns: 1; }
  .eh-card--a { min-height: 160px; }
  .eh-card--b { min-height: 130px; }
  .eh-card--c { min-height: 110px; }
  .eh-card--d { min-height: 140px; }
  .eh-card--e { min-height: 120px; }
}
@media (prefers-reduced-motion: reduce) {
  .eh-section * { animation: none !important; transition: none !important; }
}

/* ── Discover Section — Himalayan mountain background ─────────── */
#top-picks-playground {
  position: relative;
}
#top-picks-playground::before {
  content: '';
  position: absolute;
  top: -10px;
  right: 20px;
  width: 200px;
  height: 120px;
  background: url('../images/site/sunglasses.png') no-repeat center;
  background-size: contain;
  opacity: 0.35;
  transform: rotate(-6deg);
  pointer-events: none;
  z-index: 0;
}
#top-picks-playground::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 360px;
  background:
    linear-gradient(to top, rgba(217,70,239,0.1) 0%, transparent 70%),
    linear-gradient(to top, rgba(250,250,250,0.2) 0%, transparent 15%),
    url('../images/site/himalaya.png') no-repeat center bottom;
  background-size: cover, cover, auto 90%;
  background-position: center bottom;
  pointer-events: none;
  z-index: -1;
}

/* ── All Experiences — trek decoration ───────────────────────── */
#experiences {
  position: relative;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}
#experiences::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 280px;
  height: 200px;
  background: url('../images/site/trek.png') no-repeat center;
  background-size: contain;
  opacity: 0.55;
  transform: rotate(2deg);
  pointer-events: none;
  z-index: 0;
}

/* ── Story Modal ──────────────────────────────────────────────── */
.story-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.story-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(10, 15, 30, 0.72);
  backdrop-filter: blur(8px);
}
.story-modal__panel {
  position: relative;
  width: 100%; max-width: 720px;
  max-height: 92vh;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,0.3);
  animation: storyPanelIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}
@keyframes storyPanelIn {
  from { opacity: 0; transform: scale(0.92) translateY(24px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}
.story-modal__close {
  position: absolute; top: 14px; right: 14px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.9); backdrop-filter: blur(4px);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: #333; box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: background 0.2s, transform 0.2s;
}
.story-modal__close:hover { background: #fff; transform: scale(1.1); }
.story-modal__gallery {
  width: 100%; height: 280px;
  position: relative; overflow: hidden; flex-shrink: 0;
  background: #1a1a2e;
}
.story-modal__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 0.6s ease;
}
.story-modal__slide.active { opacity: 1; }
.story-modal__gallery--empty { height: 0; }
.story-modal__dots {
  display: flex; justify-content: center; gap: 6px;
  padding: 8px 0 4px; background: #fff; flex-shrink: 0;
}
.story-modal__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(0,0,0,0.2); border: none; cursor: pointer;
  transition: background 0.3s, transform 0.3s; padding: 0;
}
.story-modal__dot.active { background: var(--korkoo-orange, #f58220); transform: scale(1.3); }
.story-modal__body {
  padding: 1.5rem 1.75rem 2rem;
  overflow-y: auto; flex: 1;
}
.story-modal__author {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(157,138,116,0.2);
}
.story-modal__avatar-wrap {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: 50%;
  overflow: hidden; border: 3px solid rgba(245,130,32,0.35);
  background: #f1f5f9;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700; color: #1a73e8;
}
.story-modal__avatar-wrap img { width: 100%; height: 100%; object-fit: cover; }
.story-modal__name { font-size: 1.15rem; font-weight: 800; color: #1e293b; margin-bottom: 3px; }
.story-modal__from {
  font-size: 0.78rem; color: var(--korkoo-orange, #f58220); font-weight: 600;
  display: flex; align-items: center; gap: 4px;
}
.story-modal__dest { font-size: 0.8rem; color: #64748b; margin-top: 2px; font-weight: 600; }
.story-modal__stars {
  margin-left: auto; font-size: 1.2rem; color: var(--korkoo-orange, #f58220); letter-spacing: 3px; flex-shrink: 0;
}
.story-modal__text {
  font-size: 1.05rem; line-height: 1.75; color: #334155;
  font-style: italic;
}
@media (max-width: 600px) {
  .story-modal__panel { border-radius: 16px; }
  .story-modal__gallery { height: 200px; }
  .story-modal__body { padding: 1rem 1.1rem 1.5rem; }
}

/* ── Experience Stats ──────────────────────────────────────── */
.experiences-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 3rem 0 2rem;
  flex-wrap: wrap;
}
.exp-stat {
  text-align: center;
}
.exp-stat__value {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
}
.exp-stat__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
@media (max-width: 480px) {
  .experiences-stats { gap: 2rem; }
  .exp-stat__value { font-size: 1.6rem; }
}

/* ── Destination Gradient Cards ────────────────────────────── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.dest-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 28px 16px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.05), box-shadow 0.4s ease;
  min-height: 150px;
}
.dest-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.dest-card__icon {
  font-size: 1.8rem;
  line-height: 1;
}
.dest-card__name {
  font-size: 1rem;
  font-weight: 900;
  color: #0f172a;
  text-align: center;
  line-height: 1.2;
  margin: 0;
}
.dest-card__count {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-card { padding: 24px 12px; min-height: 120px; }
  .dest-card__name { font-size: 0.9rem; }
}
@media (max-width: 480px) {
  .dest-grid { grid-template-columns: 1fr; }
}

/* ── Playground — Photo Bento Grid ─────────────────────────── */
.pb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.pb {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  border-radius: 18px;
  text-decoration: none;
  overflow: hidden;
  min-height: 100px;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  border: 0;
  will-change: transform;
  justify-content: flex-end;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.pb:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 48px rgba(0,0,0,0.13);
}
.pb:focus-visible {
  outline: 3px solid var(--accent, #f58633);
  outline-offset: 3px;
}

.pb-hero {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 260px;
}
.pb-tall {
  grid-row: span 2;
  min-height: 180px;
}

.pb-bg {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}
.pb:hover .pb-bg {
  transform: scale(1.08);
}

.pb-caption {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  width: 100%;
  transition: padding 0.3s ease;
}
.pb:hover .pb-caption {
  padding-bottom: 18px;
}

.pb-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.15;
  margin: 0;
  color: #0f172a;
  text-shadow: 0 1px 0 rgba(255,255,255,0.2);
  transition: transform 0.3s ease;
}
.pb:hover .pb-name {
  transform: translateX(3px);
}
.pb-hero .pb-name {
  font-size: 1.35rem;
}

.pb-count {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0f172a;
  flex-shrink: 0;
  padding: 3px 12px;
  border-radius: 20px;
  background: rgba(0,0,0,0.08);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.3s ease, transform 0.3s ease;
}
.pb:hover .pb-count {
  background: rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.pb::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 2px solid transparent;
  z-index: 3;
  pointer-events: none;
  transition: border-color 0.4s ease;
}
.pb:hover::after {
  border-color: var(--accent, #f58633);
}

@media (max-width: 768px) {
  .pb-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pb-hero { grid-column: span 2; grid-row: span 1; min-height: 180px; }
  .pb-hero .pb-name { font-size: 1.1rem; }
  .pb-tall { grid-row: span 1; min-height: 140px; }
  .pb { min-height: 90px; }
  .pb-name { font-size: 0.88rem; }
  .pb-caption { padding: 10px 14px; }
  .pb-count { font-size: 0.55rem; padding: 2px 10px; }
}
@media (max-width: 480px) {
  .pb-grid { grid-template-columns: 1fr; }
  .pb-hero { grid-column: 1; min-height: 160px; }
  .pb { min-height: 80px; }
}

/* ── Explore By Experience (Categories V2) ─────────────────── */
.categories__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 2rem;
}
.category-card--v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 160px;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1), box-shadow 0.3s ease;
}
.category-card--v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.cat-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.category-card--v2:hover .cat-bg {
  transform: scale(1.1);
}
.cat-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.category-card--v2:hover .cat-overlay {
  opacity: 0.95;
}
.cat-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cat-icon {
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}
.category-card--v2:hover .cat-icon {
  transform: scale(1.15) translateY(-2px);
}
.category-card--v2 .cat-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
  letter-spacing: 0.02em;
}

@media (max-width: 992px) {
  .categories__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .categories__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .category-card--v2 { height: 130px; }
  .category-card--v2 .cat-name { font-size: 0.9rem; }
  .cat-icon { width: 28px; height: 28px; }
}

/* ── Trust & Safety (Trust Engine V2) ─────────────────── */
.trust-logo--v2 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--korkoo-charcoal, #1e293b);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.trust-logo--v2 svg {
  color: #06B6D4;
}

.trust-engine__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem;
}
.trust-card--v2 {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}
.trust-card--v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.trust-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.trust-card--v2:hover .trust-icon-ring {
  transform: scale(1.1) rotate(5deg);
}
.trust-card--v2 .trust-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--korkoo-charcoal, #1e293b);
}
.trust-card--v2 .trust-card__text {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
}
.trust-card--v2.is-active {
  border-color: #D946EF;
  box-shadow: 0 15px 35px rgba(217, 70, 239, 0.15);
}
.trust-card--v2.is-active::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(135deg, #D946EF, #06B6D4);
}

@media (max-width: 992px) {
  .trust-engine__grid { grid-template-columns: 1fr; }
}

/* ── Host Modal UI Refinements ─────────────────── */
.h-otp-group {
  display: flex;
  gap: 8px;
  width: 100%;
}
.h-otp-group input {
  flex: 1;
}
.btn--otp, .btn--otp-verify {
  padding: 0 16px;
  font-size: 0.85rem;
  height: auto;
  min-width: 100px;
  transition: all 0.2s ease;
}
.btn--otp-verify {
  background: var(--korkoo-secondary, #38BDF8);
  color: #fff;
  border: none;
}
.btn--otp-verify:hover {
  background: #0ea5e9;
}
.h-otp-row {
  display: none;
  animation: fadeInDown 0.3s ease;
}
.h-otp-input {
  letter-spacing: 4px;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.h-feedback-text {
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 6px;
  display: block;
}
.h-captcha-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px dashed var(--korkoo-accent, #fb923c);
  margin-top: 12px;
}
.h-captcha-text {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--korkoo-charcoal, #1e293b);
}
.h-captcha-input {
  width: 70px;
  height: 36px;
  text-align: center;
  border-radius: 8px;
  border: 1.5px solid #cbd5e1;
  font-weight: 800;
  color: var(--korkoo-charcoal);
}
.h-form-feedback {
  display: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
  animation: fadeIn 0.3s ease;
}
.h-btn-submit {
  width: 100%;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
