/* =========================================================
   奇了个奇 - 完整版样式
   结构：基础重置 / 通用按钮 / 首页 / 关卡选择 / 游戏界面 /
        卡牌 / 卡槽与安全区 / 道具按钮 / 弹窗 / 动画
   ========================================================= */

/* ---------- 基础重置 ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  height: 100%;
  overscroll-behavior: none;
}

body {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 34px),
    linear-gradient(180deg, #b8ef7a 0%, #79cf44 58%, #55b32f 100%);
  overflow: hidden;
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

#app {
  height: 100dvh;
  max-width: 470px;
  margin: 0 auto;
  padding: calc(6px + env(safe-area-inset-top)) 10px calc(6px + env(safe-area-inset-bottom));
  position: relative;
  overflow: hidden;
}

.view {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hidden { display: none !important; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  color: inherit;
}

/* ---------- 通用圆钮 ---------- */
.round-btn {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 50%;
  border: 3px solid #fff;
  background: linear-gradient(#58a4ff, #2e7ff0);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 0 #1d5fc0, 0 6px 10px rgba(0, 0, 0, 0.18);
}

.round-btn svg { width: 20px; height: 20px; }

.round-btn:active { transform: scale(0.92); }

/* ---------- 首页 ---------- */
#view-home {
  justify-content: center;
  align-items: center;
  gap: 26px;
  padding-bottom: 8vh;
}

.home-hero {
  text-align: center;
  animation: floatIn 0.55s ease;
}

.home-paw {
  font-size: 54px;
  line-height: 1;
  margin-bottom: 10px;
  filter: drop-shadow(0 5px 0 rgba(0, 60, 0, 0.22));
  animation: pawWiggle 2.6s ease-in-out infinite;
}

.home-title {
  display: inline-block;
  color: #fff;
  background: #20252b;
  border: 4px solid #fff;
  border-radius: 999px;
  padding: 14px 34px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.35);
  box-shadow: 0 7px 0 rgba(0, 0, 0, 0.25), 0 14px 22px rgba(0, 0, 0, 0.2);
}

.home-sub {
  margin-top: 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-shadow: 0 2px 2px rgba(0, 60, 0, 0.35);
}

.home-actions {
  width: min(300px, 82vw);
  display: grid;
  gap: 13px;
}

.home-btn {
  padding: 15px 0;
  border-radius: 999px;
  border: 3px solid #fff;
  font-size: 18px;
  font-weight: 900;
  background: linear-gradient(#58a4ff, #2e7ff0);
  color: #fff;
  box-shadow: 0 5px 0 #1d5fc0, 0 8px 14px rgba(0, 0, 0, 0.18);
  transition: transform 0.08s ease;
}

.home-btn.primary {
  background: linear-gradient(#ffb03a, #f5821f);
  box-shadow: 0 5px 0 #c65f08, 0 8px 14px rgba(0, 0, 0, 0.2);
  font-size: 21px;
}

.home-btn:active { transform: translateY(3px); box-shadow: 0 2px 0 #1d5fc0; }
.home-btn.primary:active { box-shadow: 0 2px 0 #c65f08; }

.home-tip {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.92;
  text-shadow: 0 1px 2px rgba(0, 60, 0, 0.4);
}

/* ---------- 子页面顶栏 ---------- */
.sub-topbar,
.game-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 44px;
  flex: none;
}

.sub-title {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  text-shadow: 0 2px 2px rgba(0, 60, 0, 0.35);
}

.sub-spacer { width: 42px; }

/* ---------- 关卡选择 ---------- */
.level-grid {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-content: start;
  padding: 14px 2px 18px;
  -webkit-overflow-scrolling: touch;
}

.level-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  border: 3px solid #fff;
  background: linear-gradient(#ffd978, #ffa62f);
  color: #5b3b06;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.22), 0 7px 12px rgba(0, 0, 0, 0.15);
  font-weight: 900;
}

.level-card .lv-num { font-size: 24px; }
.level-card .lv-best { font-size: 10px; color: #7a5410; }
.level-card .lv-stars { font-size: 11px; letter-spacing: 1px; line-height: 1.2; margin-top: 2px; }

.level-card.locked {
  background: linear-gradient(#b9c3ae, #8fa287);
  color: #fff;
  cursor: default;
}

.level-card.locked .lv-num { opacity: 0.75; }

.level-card:active { transform: translateY(2px); }

/* ---------- 游戏顶栏与信息 ---------- */
.level-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #20252b;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
}

.diff {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
}

.diff.easy { background: #4db34f; }
.diff.mid { background: #e69a1e; }
.diff.hard { background: #e05a33; }
.diff.expert { background: #b23dd3; }

.hud {
  flex: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 5px 0;
  position: relative;
}

.hud-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 5px 4px;
  background: rgba(255, 255, 255, 0.78);
  border: 2px solid #fff;
  border-radius: 10px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.14);
  color: #3c5a1b;
  font-size: 12px;
  font-weight: 800;
  min-width: 0;
}

.hud-item b {
  font-size: 14px;
  white-space: nowrap;
}

.combo-badge {
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  z-index: 8;
  padding: 4px 16px;
  border-radius: 999px;
  border: 3px solid #fff;
  background: linear-gradient(#ff7a45, #f5222d);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.combo-badge.bump { animation: comboBump 0.55s ease; }

/* ---------- 中部棋盘 ---------- */
#boardWrap {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scroll-behavior: smooth;
  touch-action: pan-y;
  padding: 2px 0;
}

/* 牌堆舞台：大关卡按需整体缩放，缩放后仍保留正确的滚动高度 */
#boardStage {
  position: relative;
  height: var(--stage-h, 100%);
  transform-origin: top center;
  will-change: transform;
}

#board {
  position: relative;
  width: 100%;
  height: var(--board-h, 52vh);
  min-height: 180px;
  background: rgba(255, 255, 255, 0.18);
  border: 3px solid rgba(255, 255, 255, 0.62);
  border-radius: 18px;
  box-shadow: inset 0 0 34px rgba(255, 255, 255, 0.28), 0 10px 18px rgba(0, 40, 0, 0.18);
  overflow: visible;
}

/* ---------- 卡牌 ---------- */
.card {
  position: absolute;
  width: var(--card-px, 75px);
  aspect-ratio: 1 / 1.2;
  background: #fff;
  border: 3px solid #fff;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.24);
  transition: transform 0.1s ease, filter 0.18s ease;
  touch-action: manipulation;
}

/* 卡牌尺寸按屏幕宽度分档，牌越多的关卡用更小一档；
   JS 会在开局时按同一规则写入内联 --card-px，保证布局计算与实际渲染一致 */
.card.size-m { --card-px: 75px; }
.card.size-s { --card-px: 62px; }
.card.size-xs { --card-px: 54px; }

@media (max-width: 600px) {
  .card.size-m { --card-px: 65px; }
  .card.size-s { --card-px: 54px; }
  .card.size-xs { --card-px: 47px; }
}

@media (max-width: 400px) {
  .card.size-m { --card-px: 55px; }
  .card.size-s { --card-px: 46px; }
  .card.size-xs { --card-px: 40px; }
}

.card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* 层级错位：上层牌略微向右下偏移，形成叠牌视觉 */
.card.layer-offset {
  --tx: 0px;
  --ty: calc(var(--lv, 0) * 3px);
  transform: rotate(var(--rot, 0deg)) translate(var(--tx, 0), var(--ty, 0));
}

.card.blocked { filter: saturate(0.65) brightness(0.84); }

.card.open:active {
  transform: rotate(var(--rot, 0deg)) translate(var(--tx, 0), var(--ty, 0)) scale(0.92);
}

.card.hint-card {
  animation: hintPulse 0.9s ease-in-out infinite;
  z-index: 400 !important;
}

.card.removed { display: none; }

.card.moving {
  position: fixed;
  z-index: 9999;
  margin: 0;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(0.22, 0.9, 0.32, 1.12);
  transform: rotate(var(--rot, 0deg));
}

.card.pop { animation: cardPop 0.24s ease; }

/* ---------- 底部区域 ---------- */
.bottom-area { flex: none; padding-top: 4px; z-index: 5; }

.zone-title {
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0, 60, 0, 0.45);
  margin-bottom: 4px;
}

.slot-wrap { position: relative; }

#slot {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  padding: 7px 6px;
  background:
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.08) 0 3px, transparent 3px 24px),
    linear-gradient(180deg, #b97e48, #8a5628);
  border: 3px solid #5f3a1a;
  border-radius: 13px;
  box-shadow: inset 0 4px 8px rgba(0, 0, 0, 0.35), 0 4px 0 rgba(0, 0, 0, 0.18);
}

.slot-cell {
  position: relative;
  height: clamp(40px, 9.5vw, 50px);
  background: rgba(255, 255, 255, 0.16);
  border: 2px dashed rgba(255, 255, 255, 0.5);
  border-radius: 7px;
}

.slot-cell .card {
  position: absolute;
  inset: 2px;
  width: auto;
  height: auto;
  aspect-ratio: auto;
  border-radius: 6px;
  border-width: 2px;
  transform: none;
  --cw: auto;
}

.slot-cell .card img {
  border-radius: 6px;
}

.safe-row {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 5px;
}

.safe-label {
  flex: none;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(0, 60, 0, 0.45);
}

#safeZone {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  gap: 4px;
  padding: 5px;
  min-height: 40px;
  background: linear-gradient(180deg, #7cc7e8, #4b9fd6);
  border: 3px solid #25618f;
  border-radius: 12px;
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.28), 0 3px 0 rgba(0, 0, 0, 0.16);
}

#safeZone .card {
  position: relative;
  width: 50px;
  height: 50px;
  inset: auto;
  aspect-ratio: auto;
  border-radius: 8px;
  border-width: 2px;
  transform: none;
  --cw: auto;
}

#safeZone .card img {
  border-radius: 8px;
}

#safeZone .safe-empty {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 700;
}

#eliminateFx {
  position: absolute;
  left: 50%;
  top: -42px;
  z-index: 6;
  padding: 5px 15px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: #ff7f3f;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translate(-50%, 8px) scale(0.6);
  pointer-events: none;
}

#eliminateFx.show { animation: fxPop 0.55s ease forwards; }

.particle {
  position: absolute;
  left: 50%;
  top: 30%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.85);
  animation: particleFly 0.62s cubic-bezier(0.2, 0.8, 0.3, 1) forwards;
  pointer-events: none;
}

/* ---------- 道具按钮 ---------- */
#actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: 5px;
}

.action-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 7px 0;
  border-radius: 12px;
  background: linear-gradient(#58a4ff, #2e7ff0);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 4px 0 #1d5fc0, 0 5px 8px rgba(0, 0, 0, 0.16);
  transition: transform 0.08s ease, box-shadow 0.08s ease, filter 0.15s ease;
  min-width: 0;
}

.action-btn svg { width: 16px; height: 16px; flex: none; }
.action-btn span { white-space: nowrap; }

.action-btn .count {
  position: absolute;
  top: -8px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: #f5222d;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}

.action-btn:active { transform: translateY(3px); box-shadow: 0 1px 0 #1d5fc0; }

.action-btn.disabled {
  filter: grayscale(0.8) brightness(0.8);
  pointer-events: none;
}

/* ---------- 弹窗 ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(24, 48, 18, 0.62);
  backdrop-filter: blur(3px);
}

.modal.hidden { display: none; }

.modal.fail-shake .modal-box { animation: modalShake 0.5s ease; }

.modal-box {
  width: min(330px, 90vw);
  padding: 24px 18px 20px;
  text-align: center;
  background: #fffdf3;
  border: 4px solid #fff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  animation: modalIn 0.28s ease;
}

.modal-title { margin-bottom: 8px; font-size: 26px; font-weight: 900; }
.modal-title.success { color: #2fa44f; }
.modal-title.fail { color: #e05a33; }
.modal-text { margin-bottom: 16px; color: #6b624e; font-size: 14px; line-height: 1.6; }

.modal-btn {
  display: block;
  width: 100%;
  padding: 12px 0;
  margin-top: 10px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 900;
}

.modal-btn.primary { background: linear-gradient(#58a4ff, #2e7ff0); color: #fff; box-shadow: 0 4px 0 #1d5fc0; }
.modal-btn.ghost { background: #f3ead6; color: #7a6a4d; box-shadow: 0 3px 0 #d9c9a8; }
.modal-btn:active { transform: translateY(2px); box-shadow: none; }

.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 4px 0 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #f3ead6;
  color: #6b624e;
  font-size: 14px;
  font-weight: 800;
}

.toggle {
  width: 54px;
  height: 30px;
  border-radius: 999px;
  background: #c9bda2;
  position: relative;
  transition: background 0.2s ease;
}

.toggle i {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  transition: left 0.2s ease;
}

.toggle.on { background: #2e7ff0; }
.toggle.on i { left: 27px; }

/* ---------- 星级与结果 ---------- */
.stars {
  font-size: 34px;
  letter-spacing: 4px;
  line-height: 1.1;
  margin-bottom: 6px;
  min-height: 42px;
}

.stars .star-dim { filter: grayscale(1); opacity: 0.3; }
.stars .star-pop { display: inline-block; animation: starPop 0.4s ease; }

.result-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 4px 0 2px;
}

.result-stats div {
  background: #f3ead6;
  border-radius: 10px;
  padding: 8px 4px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #7a6a4d;
  font-size: 11px;
  font-weight: 800;
}

.result-stats b { color: #4a3f2c; font-size: 16px; }

.rank-list {
  list-style: none;
  text-align: left;
  margin-bottom: 8px;
  max-height: 46vh;
  overflow-y: auto;
}

.rank-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  margin-bottom: 7px;
  border-radius: 10px;
  background: #f3ead6;
  color: #6b624e;
  font-weight: 800;
  font-size: 14px;
}

.rank-list .rk { flex: none; width: 26px; font-size: 16px; color: #e69a1e; }
.rank-list .rk-name { flex: 1; }
.rank-list .rk-score { color: #4a3f2c; }

/* ---------- 轻提示 ---------- */
#toast {
  position: fixed;
  left: 50%;
  top: 16%;
  z-index: 1200;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(30, 34, 40, 0.9);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, -8px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

#toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- 胜利彩带 ---------- */
.confetti-wrap {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 16px;
  border-radius: 3px;
  animation: confettiFall linear forwards;
}

/* ---------- 动画 ---------- */
@keyframes cardPop {
  0% { transform: scale(0.82); }
  55% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

@keyframes fxPop {
  0% { opacity: 0; transform: translate(-50%, 14px) scale(0.6); }
  25% { opacity: 1; transform: translate(-50%, 0) scale(1.08); }
  70% { opacity: 1; transform: translate(-50%, -12px) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -26px) scale(0.92); }
}

@keyframes particleFly {
  0% { opacity: 1; transform: translate(-50%, -50%) scale(0.5); }
  100% { opacity: 0; transform: translate(calc(-50% + var(--dx, 0px)), calc(-50% + var(--dy, 0px))) scale(1.2); }
}

@keyframes modalShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-12px); }
  40% { transform: translateX(10px); }
  60% { transform: translateX(-7px); }
  80% { transform: translateX(5px); }
}

@keyframes hintPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 210, 60, 0.9); }
  50% { box-shadow: 0 0 0 12px rgba(255, 210, 60, 0); }
}

@keyframes matchOut {
  0% { transform: scale(1); opacity: 1; }
  30% { transform: scale(1.18); opacity: 1; }
  100% { transform: scale(0.1); opacity: 0; }
}

.card.matching { animation: matchOut 0.38s ease forwards; pointer-events: none; }

#board.shuffling .card { animation: cardShuffle 0.42s ease; }

@keyframes cardShuffle {
  0% { transform: rotate(var(--rot, 0deg)) translate(var(--tx, 0), var(--ty, 0)) scale(1); }
  50% { transform: rotate(var(--rot, 0deg)) translate(var(--tx, 0), var(--ty, 0)) scale(0.8) rotate(-7deg); }
  100% { transform: rotate(var(--rot, 0deg)) translate(var(--tx, 0), var(--ty, 0)) scale(1); }
}

@keyframes comboBump {
  0% { transform: translateX(-50%) scale(0.6); }
  50% { transform: translateX(-50%) scale(1.25); }
  100% { transform: translateX(-50%) scale(1); }
}

@keyframes floatIn {
  0% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes pawWiggle {
  0%, 100% { transform: rotate(-6deg); }
  50% { transform: rotate(6deg); }
}

@keyframes modalIn {
  0% { opacity: 0; transform: scale(0.85); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes starPop {
  0% { transform: scale(0.3) rotate(-20deg); opacity: 0; }
  70% { transform: scale(1.25) rotate(6deg); }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

@keyframes confettiFall {
  0% { transform: translateY(-30px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0.6; }
}

/* ---------- 小屏适配 ---------- */
@media (max-width: 360px) {
  #app { padding-left: 8px; padding-right: 8px; }
  .round-btn { width: 34px; height: 34px; }
  .round-btn svg { width: 18px; height: 18px; }
  .hud-item { font-size: 11px; }
  .hud-item b { font-size: 13px; }
  .action-btn span { font-size: 13px; }
  .action-btn svg { width: 14px; height: 14px; }
  .level-pill { padding: 5px 10px; font-size: 13px; }
  .slot-cell { height: 36px; }
  .home-title { font-size: 26px; padding: 11px 22px; }
  .home-btn { padding: 12px 0; font-size: 16px; }
  .home-btn.primary { font-size: 19px; }
}
