:root {
  --bg: #fff5f8; /* Soft pinkish white */
  --bg-2: #ffffff;
  --ink: #3d3d3d;
  --ink-soft: #7d7d7d;
  --primary: #ff8fb1; /* Bubbly Pink */
  --secondary: #7bc9ff; /* Sky Blue */
  --accent: #ffd93d; /* Sunshine Yellow */
  --rose: #ffafcc;
  --berry: #a2d2ff;
  --gold: #ffc300;
  --line: #ffe5ec;
  --card: rgba(255, 255, 255, 0.85);
  --shadow: 0 15px 30px -10px rgba(255, 143, 177, 0.2);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Fredoka', 'Gothic A1', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.atmos { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.atmos .bloom { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.7; }
.bloom.a { width: 70vw; height: 70vw; background: radial-gradient(circle, #ffd6e7, #ffb3c6); top: -20vw; right: -15vw; }
.bloom.b { width: 55vw; height: 55vw; background: radial-gradient(circle, #c8e6ff, #a2d2ff); bottom: -15vw; left: -12vw; }
.bloom.c { width: 40vw; height: 40vw; background: radial-gradient(circle, #fff9c4, #ffd93d 80%); top: 30%; left: 40%; opacity: 0.45; }

.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: 0.3;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.4'/></svg>");
  mix-blend-mode: soft-light;
}

.wrap { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; padding: 0 24px; }

header { padding: 44px 0 24px; text-align: center; }
.nav { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.brand {
  font-size: 38px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
}
.brand b { color: var(--secondary); }
.tag { font-size: 14px; font-weight: 500; color: var(--ink-soft); letter-spacing: 0.05em; }

.hero { padding: 70px 0 80px; text-align: center; position: relative; }
.hero-content { position: relative; z-index: 2; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  background: var(--line);
  padding: 7px 18px;
  border-radius: 99px;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 4.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.025em;
}
.hero h1 em {
  background: linear-gradient(135deg, var(--primary) 10%, var(--secondary) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: normal;
}
.h1-pre { display: none; }

.lede { margin-top: 24px; font-size: 18px; color: var(--ink-soft); line-height: 1.85; white-space: nowrap; }
.hero-cta { margin-top: 44px; display: flex; gap: 16px; justify-content: center; }

.btn {
  cursor: pointer; border: none; font-family: inherit; font-weight: 700; font-size: 18px; padding: 18px 36px; border-radius: 99px;
  transition: 0.3s cubic-bezier(0.3, 1.5, 0.5, 1); display: inline-flex; align-items: center; gap: 10px;
}
.btn:active { transform: scale(0.95); }
.btn-solid { background: var(--primary); color: #fff; box-shadow: 0 10px 20px -5px rgba(255, 143, 177, 0.5); }
.btn-solid:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 15px 30px -5px rgba(255, 143, 177, 0.6); }
.btn-ghost { background: #fff; color: var(--secondary); border: 3px solid var(--line); }
.btn-ghost:hover { border-color: var(--secondary); transform: translateY(-3px); }

.hero-preview { display: flex; justify-content: center; margin-top: 40px; }
.prev-card {
  background: var(--card); border: 4px solid #fff; border-radius: 40px; padding: 40px;
  box-shadow: var(--shadow); width: 100%; max-width: 400px; position: relative;
}
.prev-face { width: 90px; height: 90px; border-radius: 30px; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 40px; margin: 0 auto 20px; color: #fff; transform: rotate(-5deg); }
.prev-muse-name { font-size: 2.5rem; font-weight: 700; color: var(--primary); }
.prev-muse-grp { font-size: 16px; font-weight: 600; color: var(--secondary); margin-bottom: 20px; }
.prev-pct { font-size: 3.5rem; font-weight: 800; color: var(--accent); line-height: 1; }
.prev-bar { height: 12px; background: var(--line); border-radius: 10px; overflow: hidden; margin: 20px 0; }
.prev-bar i { display: block; height: 100%; width: 95%; background: linear-gradient(90deg, var(--primary), var(--secondary)); }

section.block { padding: 90px 0; }
.secnum {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  display: inline-block;
  background: var(--line);
  padding: 5px 14px;
  border-radius: 99px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.sectitle {
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
.secdesc {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 48px;
  max-width: 52ch;
  line-height: 1.8;
}

.about-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.faq-list { max-width: 800px; margin: 0 auto; }

.studio-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.stage {
  position: relative; aspect-ratio: 1/1; background: #fff; border-radius: 40px; overflow: hidden;
  box-shadow: var(--shadow); border: 6px solid #fff;
}
.stage video, .stage canvas, .stage img { width: 100%; height: 100%; object-fit: cover; }
#liveVideo { transform: scaleX(-1); }

.action-zone { background: #fff; border-radius: 35px; padding: 32px; box-shadow: var(--shadow); border: 2px solid var(--line); }
.pickrow { display: flex; gap: 12px; margin-bottom: 24px; justify-content: center; }
.chip {
  cursor: pointer; padding: 12px 24px; border-radius: 20px; border: 3px solid var(--line); background: #fff;
  font-size: 16px; font-weight: 700; transition: 0.3s; color: var(--ink-soft);
}
.chip[aria-pressed="true"] { background: var(--secondary); color: #fff; border-color: var(--secondary); }
.chip:hover { border-color: var(--secondary); }

#langSelect { color: var(--ink); }
#langSelect option { color: var(--ink); background: #fff; }

.scan { position: absolute; inset: 0; display: none; z-index: 10; pointer-events: none; }
.scan.on { display: block; }
.scan .bar {
  position: absolute; width: 100%; height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(123, 201, 255, 0.4), transparent);
  animation: scanning 1.5s ease-in-out infinite;
}
@keyframes scanning { 0% { top: -100px; } 100% { top: 100%; } }

.result-card {
  display: flex; flex-direction: column; background: #fff; border-radius: 45px; overflow: hidden; box-shadow: var(--shadow); border: 8px solid #fff;
}

/* ── 결과 왼쪽 컬럼 (사진 + 캐릭터 정체) ── */
.result-left {
  display: flex;
  flex-direction: column;
}
.result-photo { position: relative; aspect-ratio: 1/1; overflow: hidden; }

/* ── 캐릭터 이름/스튜디오 영역 (사진 아래) ── */
.result-identity {
  padding: 28px 28px 32px;
  text-align: center;
  background: var(--bg);
  border-top: 2px solid var(--line);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.char-image-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 5; opacity: 0; transition: opacity 1s ease-in-out; }
.completed .char-image-overlay { opacity: 1; }

.char-card {
  width: 85%; height: 85%; background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 30px; border: 8px solid #fff; box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; color: #fff; padding: 20px;
  animation: cardBounce 1s cubic-bezier(0.3, 1.5, 0.5, 1);
}
@keyframes cardBounce { from { transform: scale(0.8) rotate(-5deg); opacity: 0; } to { transform: scale(1) rotate(0deg); opacity: 1; } }

.char-studio { font-size: 14px; font-weight: 700; background: rgba(255,255,255,0.2); padding: 4px 12px; border-radius: 10px; margin-bottom: 10px; }
.char-name-big { font-size: 2.5rem; font-weight: 800; line-height: 1.1; margin-bottom: 15px; }
.char-icon { font-size: 60px; }

.magic-overlay {
  position: absolute; inset: 0; background: linear-gradient(45deg, transparent, rgba(255,255,255,0.8), transparent);
  z-index: 10; pointer-events: none; opacity: 0; transform: translateX(-100%);
}
.transforming .magic-overlay {
  animation: magicSweep 2.5s ease-in-out infinite; opacity: 1;
}
@keyframes magicSweep { 0% { transform: translateX(-100%) skewX(-15deg); } 100% { transform: translateX(100%) skewX(-15deg); } }

.result-body { padding: 40px; text-align: center; }

.matchwith { font-size: 14px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 0.06em; }
.starname { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; margin: 8px 0; color: var(--ink); line-height: 1.05; }
.stargroup { font-size: 16px; font-weight: 600; color: var(--secondary); letter-spacing: 0.04em; }

.trait-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
.trait { background: var(--bg); padding: 12px; border-radius: 15px; font-size: 13px; font-weight: 500; border: 2px solid var(--line); }
.trait b { display: block; color: var(--primary); font-size: 15px; margin-top: 4px; }

.runner { background: var(--line); padding: 8px 16px; border-radius: 99px; font-size: 13px; font-weight: 600; color: var(--ink); }
.runner em { font-style: normal; color: var(--secondary); }

.tut-list { display: grid; gap: 20px; }
.tut-row {
  display: flex; align-items: center; gap: 20px; background: #fff; padding: 25px; border-radius: 30px;
  border: 4px solid var(--line); text-decoration: none; color: inherit; transition: 0.3s cubic-bezier(0.3, 1.5, 0.5, 1);
}
.tut-row:hover { transform: scale(1.03) translateY(-5px); border-color: var(--secondary); box-shadow: var(--shadow); }
.tut-icon { font-size: 32px; }

/* QR Modal Styles */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(255, 143, 177, 0.4);
  backdrop-filter: blur(8px); display: none; align-items: center; justify-content: center; z-index: 1000;
  padding: 24px;
}
.modal-backdrop.open { display: flex; animation: fadeIn 0.3s ease-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.qr-modal-box {
  background: #fff; border-radius: 40px; padding: 40px; width: 100%; max-width: 400px;
  text-align: center; position: relative; box-shadow: 0 30px 60px -12px rgba(255, 143, 177, 0.4);
  border: 4px solid #fff; transform: translateY(0); animation: slideUp 0.4s cubic-bezier(0.3, 1.5, 0.5, 1);
}
@keyframes slideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.qr-modal-box::before {
  content: ''; display: none; width: 40px; height: 5px; background: var(--line); border-radius: 10px;
  position: absolute; top: 15px; left: 50%; transform: translateX(-50%);
}

.modal-close {
  position: absolute; top: 20px; right: 20px; background: var(--bg); border: none;
  width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center; transition: 0.2s;
}

@media (max-width: 799px) {
  .modal-backdrop { align-items: flex-end; padding: 0; }
  .qr-modal-box {
    max-width: 100%; border-radius: 40px 40px 0 0; padding: 50px 24px 40px;
    animation: slideUpMobile 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 85vh; overflow-y: auto;
  }
  .qr-modal-box::before { display: block; }
  @keyframes slideUpMobile { from { transform: translateY(100%); } to { transform: translateY(0); } }
  
  .modal-close { top: 15px; right: 15px; width: 32px; height: 32px; font-size: 14px; }
}
.modal-close:hover { background: var(--line); transform: rotate(90deg); }

.qr-code-wrap {
  background: #fff; padding: 20px; border-radius: 30px; border: 3px solid var(--line);
  margin: 30px auto; width: fit-content;
}
.qr-code-wrap img { width: 200px; height: 200px; display: block; }
.qr-url { font-size: 13px; color: var(--ink-soft); word-break: break-all; margin-top: 10px; font-weight: 500; }

/* ── Share Card ─────────────────────────────── */
.share-card {
  margin-top: 28px;
  background: #fff;
  border-radius: 32px;
  padding: 28px 24px 22px;
  box-shadow: var(--shadow);
  border: 2px solid var(--line);
  text-align: center;
}
.share-label {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}
.share-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.share-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 13px 6px;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  transition: 0.2s cubic-bezier(0.3, 1.5, 0.5, 1);
  line-height: 1.2;
}
.share-btn:active { transform: scale(0.91); }
.share-btn:hover  { transform: translateY(-3px) scale(1.04); opacity: 0.9; }
.si { font-size: 20px; line-height: 1; display: block; font-style: normal; }

.s-copy  { background: var(--primary); }
.s-kakao { background: #FEE500; color: #3B1717; }
.s-x     { background: #000; }
.s-fb    { background: #1877F2; }
.s-insta { background: linear-gradient(145deg, #833AB4 0%, #FD1D1D 55%, #FCAF45 100%); }
.s-wa    { background: #25D366; }
.s-tg    { background: #0088CC; }
.s-more  { background: var(--secondary); }

.share-toast {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  min-height: 20px;
  transition: opacity 0.35s;
  opacity: 0;
}

footer { padding: 60px 0; text-align: center; font-size: 15px; color: var(--ink-soft); font-weight: 500; }

@media (min-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr 1fr; }
  .studio-grid { grid-template-columns: 1fr 1fr; align-items: start; }
  .result-card { flex-direction: row; align-items: stretch; }
  .result-left { width: 42%; flex-shrink: 0; display: flex; flex-direction: column; }
  .result-photo { flex: 1; aspect-ratio: auto; min-height: 280px; }
  .result-photo canvas { width: 100%; height: 100%; object-fit: cover; display: block; }
  .result-body { flex: 1; text-align: left; padding: 48px; }
}

/* ── Hero character preview cards ── */
.hcard-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 52px;
  padding-bottom: 8px;
}
.hcard {
  background: #fff;
  border-radius: 26px;
  padding: 20px 14px;
  text-align: center;
  border: 2.5px solid var(--line);
  box-shadow: 0 10px 36px -10px rgba(255, 143, 177, 0.22);
  flex: 1;
  max-width: 150px;
  transform: rotate(var(--rot, 0deg));
  transition: 0.4s cubic-bezier(0.3, 1.5, 0.5, 1);
  position: relative;
  opacity: 0;
  animation: hcardIn 0.5s ease-out forwards;
  animation-delay: var(--delay, 0s);
}
.hcard:hover {
  transform: translateY(-10px) rotate(0deg) scale(1.07);
  border-color: var(--rose);
  box-shadow: 0 22px 52px -12px rgba(255, 143, 177, 0.38);
  z-index: 10;
}
@keyframes hcardIn {
  from { opacity: 0; transform: translateY(24px) rotate(var(--rot, 0deg)); }
  to   { opacity: 1; transform: translateY(0)    rotate(var(--rot, 0deg)); }
}
.hcard-ico {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 12px;
}
.hcard-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 2px;
  white-space: nowrap;
}
.hcard-studio {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}
.hcard-pct {
  display: inline-block;
  font-size: 20px;
  font-weight: 900;
  color: var(--primary);
  background: var(--line);
  border-radius: 99px;
  padding: 3px 12px;
  line-height: 1.4;
}
.hcard-pct sup {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-soft);
  vertical-align: super;
}

/* ── Big CTA button ── */
.btn-solid { font-size: 20px; padding: 20px 48px; }

.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 799px) {
  .hide-mobile { display: none !important; }

  /* ── Header / Nav ── */
  header { padding: 14px 0 6px; }
  .nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 0;
  }
  .brand { font-size: 21px; letter-spacing: -0.01em; }
  .nav-links { display: none !important; }
  #qrBtn { display: none !important; }

  /* 언어 선택기 — 작고 컴팩트하게 */
  #langSelect {
    padding: 5px 8px !important;
    font-size: 12px !important;
    border-radius: 10px !important;
    border-width: 2px !important;
    font-weight: 600 !important;
    line-height: 1.2 !important;
    height: auto !important;
  }

  /* ── Hero ── */
  .hero { padding: 32px 0 28px; }
  .hero-floats { display: none; }
  .eyebrow {
    font-size: 11px;
    padding: 5px 14px;
    margin-bottom: 18px;
    letter-spacing: 0.05em;
  }
  .hero h1 {
    font-size: clamp(2.2rem, 9vw, 2.9rem);
    line-height: 1.12;
    letter-spacing: -0.02em;
  }
  .hero-cta {
    margin-top: 28px;
    flex-direction: column;
    align-items: stretch;
    padding: 0 4px;
    gap: 10px;
  }
  .hero-cta a { display: block; }
  .hero-cta .btn {
    width: 100% !important;
    justify-content: center;
    font-size: 17px !important;
    padding: 16px 20px !important;
    letter-spacing: 0.01em;
  }
  /* ── 히어로 카드 ── */
  .hcard-row { gap: 8px; margin-top: 28px; }
  .hcard { padding: 14px 8px; border-radius: 18px; max-width: 100%; border-width: 2px; }
  .hcard-ico { width: 48px; height: 48px; font-size: 22px; border-radius: 14px; margin-bottom: 8px; }
  .hcard-name { font-size: 13px; }
  .hcard-studio { font-size: 9px; margin-bottom: 7px; }
  .hcard-pct { font-size: 17px; padding: 2px 9px; }

  /* ── Section headers ── */
  section.block { padding: 36px 0; }
  .secnum {
    font-size: 10px;
    margin-bottom: 10px;
    padding: 4px 12px;
    letter-spacing: 0.08em;
  }
  .sectitle {
    font-size: clamp(1.9rem, 7vw, 2.4rem);
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.1;
    letter-spacing: -0.02em;
  }
  .secdesc {
    font-size: 14px;
    text-align: center;
    margin-bottom: 22px;
    line-height: 1.7;
    max-width: none;
  }

  /* ── Action zone ── */
  .action-zone { padding: 16px 12px; border-radius: 20px; }

  /* ── Pickrow 칩 (자동/여성/남성) ── */
  .pickrow { gap: 6px; margin-bottom: 14px; }
  .chip { padding: 7px 11px !important; font-size: 12px !important; border-radius: 12px !important; border-width: 2px !important; }

  /* ── 일반 버튼 기본값 ── */
  .btn { font-size: 14px !important; padding: 12px 18px !important; }

  /* ── 카메라 / 업로드 — 줄 안에서 균등 분할 ── */
  .studio-btn-row { gap: 8px !important; margin-bottom: 14px !important; }
  #camBtn, #uploadBtn, #shotBtn {
    flex: 1;
    justify-content: center;
    font-size: 12px !important;
    padding: 11px 4px !important;
  }

  /* ── Stage ── */
  .stage { border-radius: 24px; border: 4px solid #fff; }
  #placeholder {
    padding: 32px 14px !important;
    font-size: 14px !important;
    line-height: 1.5;
  }

  /* ── 분석 버튼 / 상태 ── */
  #analyzeBtn {
    font-size: 15px !important;
    padding: 14px 18px !important;
    margin-top: 14px !important;
    letter-spacing: 0.02em;
  }
  #status { font-size: 14px !important; margin-top: 12px !important; }

  /* ── 결과 카드 ── */
  .result-card { border-radius: 28px; border-width: 5px; }
  .result-identity { padding: 20px 16px 24px; }
  .result-body { padding: 20px 16px; text-align: center; }
  .matchwith { font-size: 13px; margin-bottom: 4px; }
  .starname {
    font-size: clamp(2rem, 9.5vw, 2.8rem);
    margin: 6px 0;
    line-height: 1;
  }
  .stargroup { font-size: 13px; letter-spacing: 0.03em; }
  #rVibe { font-size: 13px !important; margin-bottom: 16px !important; line-height: 1.5; }
  .trait-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .trait { padding: 8px 7px; font-size: 11px; border-radius: 11px; }
  .trait b { font-size: 12px; }
  .runner { font-size: 11px; padding: 5px 10px; }

  /* ── 튜토리얼 ── */
  .tut-row { padding: 14px 12px; gap: 11px; border-radius: 18px; }
  .tut-icon { font-size: 22px; }
  #restartBtn { font-size: 14px; padding: 13px 28px; }

  /* ── 공유 카드 ── */
  .share-card { margin-top: 18px; padding: 18px 12px 16px; border-radius: 20px; }
  .share-label { font-size: 13px; margin-bottom: 12px; }
  .share-grid { gap: 6px; }
  .share-btn { padding: 10px 3px; font-size: 10px; border-radius: 12px; gap: 4px; }
  .si { font-size: 16px; }
  .share-toast { font-size: 12px; margin-top: 10px; }

  /* ── 푸터 링크 — 한 줄 유지 ── */
  footer { padding: 24px 0; }
  footer .wrap > div { padding: 22px 16px !important; border-radius: 22px !important; }
  .footer-links {
    gap: 10px !important;
    row-gap: 6px !important;
    font-size: 11px !important;
    flex-wrap: wrap !important;
    margin-bottom: 12px !important;
  }
  footer .brand { font-size: 20px !important; margin-bottom: 10px !important; }
  footer p { font-size: 11px !important; line-height: 1.6; }
}
