:root {
  --bg-current: #8F9E80;
  --bg-forest: #8F9E80;
  --bg-ocean: #7296B0;
  --card-cream: #FFFDF9;
  --text-dark: #3E3228;
  --shadow-device: 0 16px 40px rgba(35, 45, 35, 0.45);
  --radius-screen: 36px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

body {
  font-family: 'Nunito', 'Zen Maru Gothic', -apple-system, sans-serif;
  background-color: #262E25;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 16px 12px 32px 12px;
  overflow-y: auto;
}

/* スマホ実機風フレーム */
.mobile-device-frame {
  width: 100%;
  max-width: 400px;
  height: 820px;
  max-height: 94vh;
  flex-shrink: 0;
  background: var(--bg-current);
  border-radius: var(--radius-screen);
  box-shadow: var(--shadow-device), inset 0 0 0 2px rgba(255,255,255,0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: background-color 0.35s ease;
}

/* Google AdSense 広告枠 */
.ad-container {
  width: 100%;
  max-width: 400px;
  margin: 16px auto 8px auto;
  text-align: center;
  flex-shrink: 0;
}

@media print {
  .ad-container, .adsbygoogle {
    display: none !important;
  }
}

.mobile-device-frame.theme-bear {
  --bg-current: #8F9E80;
}

.mobile-device-frame.theme-penguin {
  --bg-current: #7296B0;
}

.app-screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

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

/* ヘッダー共通 */
.screen-header {
  height: 54px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
}

/* テーマ切り替えタブ */
.theme-selector-tabs {
  display: flex;
  background: rgba(0, 0, 0, 0.18);
  padding: 3px;
  border-radius: 999px;
  gap: 2px;
}

.theme-tab {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-family: inherit;
  font-weight: 900;
  font-size: 0.82rem;
  padding: 4px 12px;
  border-radius: 999px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.theme-tab.active {
  background: #FFFFFF;
  color: #3E3228;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  transform: scale(1.03);
}

.theme-tab.locked {
  opacity: 0.65;
  cursor: not-allowed;
  position: relative;
}

.theme-tab.shake {
  animation: tabShake 0.3s ease-in-out;
}

@keyframes tabShake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

.lock-badge {
  font-size: 0.75rem;
  margin-left: 2px;
}

/* ロック時のミニトースト通知 */
.lock-toast-notification {
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFDF9;
  border: 2px solid #E67E22;
  color: #D35400;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  z-index: 50;
  white-space: nowrap;
  animation: toastSlideDown 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes toastSlideDown {
  0% { transform: translate(-50%, -15px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 1; }
}

.header-right-btns {
  display: flex;
  gap: 6px;
}

.header-icon-btn {
  background: rgba(255, 255, 255, 0.18);
  border: none;
  font-size: 1.2rem;
  color: #FFF;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.15s;
}

.header-icon-btn:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.06);
}

.lock-indicator {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px;
}

/* 予告バナー */
.gentle-warning-banner {
  background: #FFF3CD;
  border: 2px solid #FFEEBA;
  color: #856404;
  margin: 4px 16px;
  padding: 8px 14px;
  border-radius: 16px;
  font-weight: 900;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  animation: bannerBounce 0.4s ease;
}

@keyframes bannerBounce {
  0% { transform: translateY(-10px) scale(0.9); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* ==========================================
   時間選択画面（バブルクラスター）
   ========================================== */
.bubbles-cluster-container {
  flex: 1;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.time-bubble {
  position: absolute;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  animation: organicFloat 4s infinite ease-in-out alternate;
}

.time-bubble:nth-child(2n) { animation-delay: -1.2s; animation-duration: 4.5s; }
.time-bubble:nth-child(3n) { animation-delay: -2.4s; animation-duration: 5s; }

@keyframes organicFloat {
  0% { transform: translateY(0px) rotate(var(--rot, 0deg)) scale(1); }
  50% { transform: translateY(-4px) rotate(calc(var(--rot, 0deg) + 1.5deg)) scale(1.02); }
  100% { transform: translateY(2px) rotate(calc(var(--rot, 0deg) - 1.5deg)) scale(0.98); }
}

.time-bubble:hover {
  transform: scale(1.12) !important;
  z-index: 10;
}

.time-bubble:active {
  transform: scale(0.92) !important;
}

.bubble-outer-frill {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: 1;
}

.bubble-inner-circle {
  position: relative;
  z-index: 2;
  background: #FFFDF9;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 5px rgba(0,0,0,0.12);
}

.bubble-num {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  line-height: 1;
  color: #3A2F28;
}

.bubble-unit {
  font-size: 0.6rem;
  font-weight: 900;
  color: #8C7B70;
  margin-top: 1px;
}

/* 各バブルの配置とサイズ・有機的ブロブ形状（ランダムな手描き風） */
.bubble-60 { width: 125px; height: 125px; top: 4%; left: calc(50% - 62.5px); transform: rotate(-3deg); }
.bubble-60 .bubble-outer-frill { background: #D35400; border-radius: 62% 38% 48% 52% / 45% 58% 42% 55%; }
.bubble-60 .bubble-inner-circle { width: 88px; height: 88px; border-radius: 60% 40% 50% 50% / 48% 55% 45% 52%; }
.bubble-60 .bubble-num { font-size: 2.4rem; }

.bubble-20 { width: 100px; height: 100px; top: 22%; left: 6%; transform: rotate(4deg); }
.bubble-20 .bubble-outer-frill { background: #2980B9; border-radius: 40% 60% 65% 35% / 42% 48% 52% 58%; }
.bubble-20 .bubble-inner-circle { width: 70px; height: 70px; border-radius: 42% 58% 62% 38% / 45% 50% 50% 55%; }
.bubble-20 .bubble-num { font-size: 1.85rem; }

.bubble-30 { width: 115px; height: 115px; top: 20%; right: 5%; transform: rotate(-4deg); }
.bubble-30 .bubble-outer-frill { background: #27AE60; border-radius: 58% 42% 35% 65% / 54% 38% 62% 46%; }
.bubble-30 .bubble-inner-circle { width: 82px; height: 82px; border-radius: 56% 44% 38% 62% / 52% 40% 60% 48%; }
.bubble-30 .bubble-num { font-size: 2.1rem; }

.bubble-15 { width: 90px; height: 90px; top: 39%; left: calc(50% - 45px); transform: rotate(6deg); }
.bubble-15 .bubble-outer-frill { background: #16A085; border-radius: 45% 55% 42% 58% / 58% 42% 58% 42%; }
.bubble-15 .bubble-inner-circle { width: 64px; height: 64px; border-radius: 48% 52% 45% 55% / 55% 45% 55% 45%; }
.bubble-15 .bubble-num { font-size: 1.7rem; }

.bubble-5 { width: 76px; height: 76px; top: 50%; left: 10%; transform: rotate(5deg); }
.bubble-5 .bubble-outer-frill { background: #F1C40F; border-radius: 65% 35% 55% 45% / 45% 62% 38% 55%; }
.bubble-5 .bubble-inner-circle { width: 54px; height: 54px; border-radius: 62% 38% 52% 48% / 48% 58% 42% 52%; }
.bubble-5 .bubble-num { font-size: 1.45rem; }

.bubble-10 { width: 84px; height: 84px; top: 48%; right: 10%; transform: rotate(-5deg); }
.bubble-10 .bubble-outer-frill { background: #588157; border-radius: 48% 52% 62% 38% / 60% 42% 58% 40%; }
.bubble-10 .bubble-inner-circle { width: 60px; height: 60px; border-radius: 50% 50% 58% 42% / 58% 45% 55% 42%; }
.bubble-10 .bubble-num { font-size: 1.55rem; }

.bubble-3 { width: 68px; height: 68px; top: 60%; left: calc(50% - 34px); transform: rotate(-3deg); }
.bubble-3 .bubble-outer-frill { background: #E67E22; border-radius: 40% 60% 32% 68% / 62% 32% 68% 38%; }
.bubble-3 .bubble-inner-circle { width: 48px; height: 48px; border-radius: 42% 58% 35% 65% / 58% 35% 65% 42%; }
.bubble-3 .bubble-num { font-size: 1.3rem; }

.bubble-1 { width: 58px; height: 58px; top: 69%; left: 16%; transform: rotate(-6deg); }
.bubble-1 .bubble-outer-frill { background: #E74C3C; border-radius: 52% 48% 40% 60% / 55% 45% 55% 45%; }
.bubble-1 .bubble-inner-circle { width: 40px; height: 40px; border-radius: 50% 50% 42% 58% / 52% 48% 52% 48%; }
.bubble-1 .bubble-num { font-size: 1.15rem; }

.bubble-2 { width: 62px; height: 62px; top: 67%; right: 16%; transform: rotate(7deg); }
.bubble-2 .bubble-outer-frill { background: #E59866; border-radius: 55% 45% 60% 40% / 50% 58% 42% 50%; }
.bubble-2 .bubble-inner-circle { width: 44px; height: 44px; border-radius: 52% 48% 56% 44% / 48% 55% 45% 52%; }
.bubble-2 .bubble-num { font-size: 1.2rem; }

.bubble-test { width: 64px; height: 64px; top: 76%; left: calc(50% - 32px); transform: rotate(3deg); }
.bubble-test .bubble-outer-frill { background: #F39C12; border: 2px dashed #FFF; border-radius: 60% 40% 55% 45% / 45% 55% 45% 55%; }
.bubble-test .bubble-inner-circle { width: 46px; height: 46px; border-radius: 58% 42% 52% 48% / 48% 52% 48% 52%; }
.bubble-test .bubble-num { font-size: 0.95rem; }

/* 下部のキャラクター（大幅に大きくして主役感を強調） */
.selection-footer-character {
  height: 155px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 12px;
}

.bear-mini-sprite-box {
  width: 145px;
  height: 145px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.38));
}

.bear-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.idle-bounce {
  animation: idleHop 1.2s infinite ease-in-out alternate;
}

@keyframes idleHop {
  0% { transform: translateY(0) rotate(-2deg); }
  100% { transform: translateY(-10px) rotate(2deg); }
}

/* ==========================================
   タイマー進行画面（グリッド・行進）
   ========================================== */
.play-header {
  padding-top: 8px;
}

.timer-digital-clock {
  font-family: 'Nunito', sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: #FFFFFF;
  background: rgba(0, 0, 0, 0.22);
  padding: 4px 18px;
  border-radius: 999px;
  letter-spacing: 1px;
}

/* グリッド盤面 */
.grid-board-container {
  flex: 1;
  position: relative;
  margin: 6px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.items-grid {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 340px;
  justify-content: center;
  align-content: center;
  position: relative;
}

.grid-cell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
}

/* グリッド内アイテム（お花 / 流氷） */
.grid-item-wrap {
  width: 100%;
  height: 100%;
  max-width: 58px;
  max-height: 58px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.grid-item-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.22));
}

.grid-item-wrap.passed .grid-item-img {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  opacity: 0.88;
  transform: scale(0.9);
}

.grid-item-wrap.being-active {
  animation: itemActiveHop 0.3s infinite alternate;
}

@keyframes itemActiveHop {
  0% { transform: scale(1.1) rotate(-6deg); }
  100% { transform: scale(0.95) rotate(6deg); }
}

/* ゴールアイテム（ハチミツ壺 / ペンギンママ） */
.goal-item-wrap {
  width: 100%;
  height: 100%;
  max-width: 64px;
  max-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 12px rgba(243, 156, 18, 0.6));
  animation: goalItemGlow 1.5s infinite alternate;
}

.goal-item-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes goalItemGlow {
  0% { transform: scale(1); filter: drop-shadow(0 4px 10px rgba(243, 156, 18, 0.5)); }
  100% { transform: scale(1.15); filter: drop-shadow(0 8px 22px rgba(255, 193, 7, 0.9)); }
}

/* キャラクター（マス目密着・大きく表示） */
.cell-character-actor {
  position: absolute;
  top: -44px;
  right: -30px;
  width: 92px;
  height: 92px;
  z-index: 25;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
  animation: actorWalkHop 0.35s infinite alternate ease-in-out;
}

.cell-character-actor.excited-hop {
  animation: actorExcitedHop 0.25s infinite alternate ease-in-out !important;
}

@keyframes actorExcitedHop {
  0% { transform: translateY(0) scale(1) rotate(-8deg); }
  100% { transform: translateY(-18px) scale(1.1) rotate(8deg); }
}

/* キャラクターの頭上フキダシ（声かけ演出） */
.actor-speech-bubble {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  border: 2px solid #3E3228;
  color: #3E3228;
  font-size: 0.72rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  animation: speechPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 30;
}

.actor-speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px 5px 0 5px;
  border-style: solid;
  border-color: #FFFFFF transparent transparent transparent;
}

@keyframes speechPop {
  0% { transform: translateX(-50%) scale(0); opacity: 0; }
  100% { transform: translateX(-50%) scale(1); opacity: 1; }
}

.cell-character-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes actorWalkHop {
  0% { transform: translateY(0) rotate(-4deg); }
  100% { transform: translateY(-10px) rotate(4deg); }
}

/* 下部一時停止ボタン */
.play-footer-controls {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.round-pause-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.round-pause-btn:hover {
  background: rgba(0, 0, 0, 0.4);
  transform: scale(1.08);
}

/* ==========================================
   モーダル共通
   ========================================== */
.story-modal-overlay, .goal-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(35, 45, 30, 0.72);
  backdrop-filter: blur(5px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* お約束ゆびきりモーダル */
.promise-modal-card {
  background: #FFFDF8;
  border: 3px solid #F3E5D5;
  border-radius: 28px;
  padding: 26px 20px;
  text-align: center;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.modal-decoration {
  font-size: 1.6rem;
  letter-spacing: 4px;
}

.promise-modal-card h2 {
  font-size: 1.25rem;
  font-weight: 900;
  color: #D35400;
}

.promise-guide {
  font-size: 0.9rem;
  color: #6C5B56;
  line-height: 1.5;
}

.highlight-time {
  color: #D35400;
  font-weight: 900;
  font-size: 1.1rem;
}

.promise-touch-target {
  margin-top: 6px;
  position: relative;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFE8CC, #FFD199);
  border: 4px solid #F39C12;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(243, 156, 18, 0.4);
  transition: transform 0.15s;
}

.promise-touch-target:active {
  transform: scale(0.92);
  background: #F39C12;
}

.promise-touch-target:active .touch-finger,
.promise-touch-target:active .touch-caption {
  color: white;
}

.touch-ring-anim {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #F39C12;
  animation: pulseRing 1.5s infinite;
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.35); opacity: 0; }
}

.touch-core {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.touch-finger { font-size: 2.2rem; }
.touch-caption { font-size: 0.8rem; font-weight: 900; color: #D35400; margin-top: 2px; }

.text-cancel-btn {
  background: transparent;
  border: none;
  color: #9C8A84;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 8px;
}

/* スタンプ帳モーダル */
.stamp-book-card {
  background: #FFFDF8;
  border-radius: 28px;
  padding: 22px 18px;
  text-align: center;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stamp-book-header h2 {
  font-size: 1.15rem;
  font-weight: 900;
  color: #D63031;
}

.stamp-book-header p {
  font-size: 0.8rem;
  color: #7A6964;
}

.stamps-grid-box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  width: 100%;
  padding: 10px 4px;
}

.stamp-slot {
  aspect-ratio: 1 / 1;
  border: 2px dashed #E2D7C8;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #BDB0A4;
  font-weight: 900;
  background: #FDF9F2;
}

.stamp-slot.stamped {
  border-color: #E63946;
  background: #FFF0F2;
  color: #E63946;
  font-size: 1.4rem;
  box-shadow: 0 3px 8px rgba(230, 57, 70, 0.2);
}

.stamp-reward-info {
  background: #FFF9E6;
  border: 1px solid #FFE58F;
  color: #B7791F;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-align: left;
}

.trophy-icon { font-size: 1.2rem; }

.story-primary-btn {
  width: 100%;
  background: linear-gradient(135deg, #27AE60, #219653);
  color: white;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 900;
  padding: 12px;
  border-radius: 999px;
  cursor: pointer;
}

/* ゴール達成モーダル */
.goal-card {
  background: #FFFDF8;
  border-radius: 28px;
  padding: 24px 20px;
  text-align: center;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.goal-stamp-anim {
  animation: stampPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes stampPop {
  0% { transform: scale(3) rotate(-30deg); opacity: 0; }
  100% { transform: scale(1) rotate(-8deg); opacity: 1; }
}

.goal-stamp-circle {
  width: 130px;
  height: 130px;
  border: 4px dashed #D63031;
  border-radius: 50%;
  background: #FFF0F2;
  color: #D63031;
  font-weight: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stamp-stars { font-size: 0.85rem; letter-spacing: 2px; }
.stamp-main-text { font-size: 1.1rem; line-height: 1.2; margin: 2px 0; }
.stamp-flower { font-size: 1.3rem; }

.goal-image-showcase {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 6px 14px rgba(243, 156, 18, 0.5));
}

.goal-honey-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.goal-title { font-size: 1.3rem; font-weight: 900; color: var(--text-dark); }
.goal-subtitle { font-size: 0.92rem; color: #7A6964; }

.stamp-earned-banner {
  background: #FFF0F2;
  border: 1px solid #FFD0D6;
  color: #D63031;
  font-weight: 900;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 999px;
}

.goal-return-btn {
  width: 100%;
  background: linear-gradient(135deg, #F39C12, #E67E22);
  color: white;
  border: none;
  font-family: inherit;
  font-size: 1.1rem;
  font-weight: 900;
  padding: 14px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(243, 156, 18, 0.4);
  cursor: pointer;
  margin-top: 4px;
  transition: all 0.2s;
}

.goal-return-btn:hover { transform: scale(1.02); }
