* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(160deg, #fdf1ed 0%, #fae2e6 55%, #f6d5db 100%);
  color: #8b5560;
  padding: 20px;
  overflow-x: hidden;
}

.hearts,
.balloons {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.heart {
  position: absolute;
  bottom: -60px;
  animation: floatUp linear infinite;
  opacity: 0.5;
}

@keyframes floatUp {
  to {
    transform: translateY(-110vh) rotate(20deg);
    opacity: 0;
  }
}

.balloon {
  position: absolute;
  bottom: -90px;
  animation: balloonUp linear infinite;
  opacity: 0.9;
}

@keyframes balloonUp {
  0% {
    transform: translateY(0) translateX(0) rotate(-4deg);
  }
  25% {
    transform: translateY(-30vh) translateX(14px) rotate(5deg);
  }
  50% {
    transform: translateY(-60vh) translateX(-12px) rotate(-5deg);
  }
  100% {
    transform: translateY(-115vh) translateX(8px) rotate(4deg);
    opacity: 0;
  }
}

.card {
  width: 100%;
  max-width: 460px;
  margin: auto;
  background: rgba(255, 252, 249, 0.92);
  border: 1px solid rgba(196, 116, 137, 0.3);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 24px 80px rgba(150, 60, 90, 0.15), 0 0 60px rgba(240, 160, 180, 0.15);
  text-align: center;
  position: relative;
  z-index: 2;
}

.card.wide {
  max-width: 620px;
}

.script {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 40px;
  color: #c25770;
  margin: 8px 0 12px;
  line-height: 1.15;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  font-weight: 700;
  color: #d28a9c;
}

.subtitle {
  color: rgba(139, 85, 96, 0.75);
  margin-bottom: 26px;
}

.hint {
  font-size: 13px;
  color: rgba(139, 85, 96, 0.55);
  margin-top: 20px;
}

.section-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #c25770;
  margin: 8px 0 10px;
  text-align: center;
}

.times .v-label {
  margin-top: 0;
}

.buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn {
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn.yes {
  background: linear-gradient(135deg, #f4a7b6, #df6f8f);
  color: #fff;
  box-shadow: 0 8px 24px rgba(223, 111, 143, 0.35);
}

.btn.yes:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(223, 111, 143, 0.45);
}

.btn.no {
  background: rgba(255, 255, 255, 0.5);
  color: rgba(139, 85, 96, 0.85);
  border-color: rgba(196, 116, 137, 0.4);
}

.btn.fleeing {
  position: fixed;
  z-index: 10;
  transition: left 0.35s ease, top 0.35s ease;
}

.btn.big {
  width: 100%;
  margin-top: 24px;
  font-size: 20px;
  padding: 16px;
}

.venues {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin: 8px 0 20px;
}

.venue {
  background: #fff;
  border: 1px solid rgba(196, 116, 137, 0.3);
  border-radius: 16px;
  padding: 16px 12px;
  cursor: pointer;
  font-family: inherit;
  touch-action: manipulation;
  transition: transform 0.15s, border-color 0.15s, background 0.15s, box-shadow 0.15s;
}

.venue .v-emoji {
  font-size: 28px;
  display: block;
}

.venue .v-label {
  font-weight: 600;
  color: #8b5560;
  margin-top: 6px;
}

.venue:hover {
  transform: translateY(-3px);
}

.venue.selected {
  border-color: #df6f8f;
  background: #fdeef2;
  box-shadow: 0 6px 18px rgba(223, 111, 143, 0.25);
}

.error {
  color: #c62848;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

textarea.free {
  display: block;
  width: 100%;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 15px;
  color: #8b5560;
  background: #fff;
  border: 1px solid rgba(196, 116, 137, 0.3);
  border-radius: 14px;
  padding: 12px 14px;
  resize: vertical;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

textarea.free:focus {
  border-color: #df6f8f;
  box-shadow: 0 0 0 3px rgba(223, 111, 143, 0.15);
}

textarea.free::placeholder {
  color: rgba(139, 85, 96, 0.4);
}

.note {
  font-size: 14px;
  font-style: italic;
  color: #c25770;
  margin-top: 14px;
}

.game-card {
  max-width: 560px;
}

.hud {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 12px;
}

.meter-wrap {
  flex: 1;
  height: 14px;
  background: #f7e3e8;
  border: 1px solid rgba(196, 116, 137, 0.3);
  border-radius: 999px;
  overflow: hidden;
}

.meter {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #f4a7b6, #df6f8f);
  transition: width 0.12s linear;
}

.lives {
  font-size: 16px;
  letter-spacing: 2px;
  color: #df6f8f;
}

.flower-count {
  font-size: 15px;
  font-weight: 700;
  color: #df6f8f;
  white-space: nowrap;
}

.stage {
  position: relative;
}

#game {
  width: 100%;
  display: block;
  border: 1px solid rgba(196, 116, 137, 0.3);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff5f7, #ffe9ee);
  touch-action: none;
}

.overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  text-align: center;
  background: rgba(255, 250, 248, 0.8);
  border-radius: 16px;
}

.overlay.hidden {
  display: none;
}

.overlay-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  color: #c25770;
}

.overlay-title.big {
  font-size: 46px;
}

.overlay-sub {
  color: #8b5560;
  font-size: 14px;
  margin-bottom: 4px;
}

.btn.small {
  padding: 10px 22px;
  font-size: 15px;
}

/* ===== 8 Flowers Surprise Section ===== */
.surprise-section {
  animation: fadeInSurprise 0.5s ease-out both;
  text-align: center;
}

@keyframes fadeInSurprise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.surprise-header {
  margin-bottom: 16px;
}

.surprise-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #c25770;
  background: #fdeef2;
  border: 1px solid rgba(223, 111, 143, 0.4);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(223, 111, 143, 0.15);
}

.surprise-title {
  font-size: 28px;
  color: #c25770;
  margin: 4px 0 6px;
  line-height: 1.2;
}

.surprise-sub {
  font-size: 14px;
  color: rgba(139, 85, 96, 0.8);
  margin-bottom: 16px;
}

/* Flower Grid - Clean 3x3 symmetrical layout for 9 months */
.flower-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 14px 0 20px;
}

.flower-card-btn {
  background: #ffffff;
  border: 1.5px solid rgba(196, 116, 137, 0.3);
  border-radius: 18px;
  padding: 14px 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: inherit;
  touch-action: manipulation;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 12px rgba(196, 116, 137, 0.08);
}

.flower-card-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 24px rgba(223, 111, 143, 0.25);
  border-color: #df6f8f;
}

.flower-card-btn .flower-icon {
  font-size: 26px;
  transition: transform 0.2s ease;
}

.flower-card-btn:hover .flower-icon {
  transform: scale(1.2) rotate(8deg);
}

.flower-card-btn .flower-num {
  font-size: 12px;
  font-weight: 700;
  color: #8b5560;
}

.flower-card-btn .flower-tag {
  font-size: 10px;
  font-weight: 600;
  color: #c25770;
  background: #fff0f3;
  padding: 2px 6px;
  border-radius: 999px;
  border: 1px solid rgba(223, 111, 143, 0.25);
}

.flower-card-btn.opened {
  background: #fff5f7;
  border-color: #df6f8f;
  box-shadow: 0 4px 14px rgba(223, 111, 143, 0.18);
}

.flower-card-btn.opened .flower-tag {
  background: #df6f8f;
  color: #ffffff;
  border-color: transparent;
}

/* Current ready month: pulsing glow */
.flower-card-btn.current {
  border-color: #df6f8f;
  background: #fffafb;
  box-shadow: 0 0 0 3px rgba(223, 111, 143, 0.25), 0 6px 18px rgba(223, 111, 143, 0.22);
  animation: pulseGlow 1.8s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 3px rgba(223, 111, 143, 0.25), 0 6px 18px rgba(223, 111, 143, 0.22);
  }
  50% {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 0 5px rgba(223, 111, 143, 0.4), 0 10px 24px rgba(223, 111, 143, 0.32);
  }
}

.flower-card-btn.current .flower-tag {
  background: linear-gradient(135deg, #f4a7b6, #df6f8f);
  color: #ffffff;
  border-color: transparent;
}

/* Locked state */
.flower-card-btn.locked {
  background: rgba(255, 255, 255, 0.5);
  border: 1.5px dashed rgba(196, 116, 137, 0.3);
  opacity: 0.65;
  cursor: pointer;
  box-shadow: none;
}

.flower-card-btn.locked:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.flower-card-btn.locked .flower-icon {
  filter: grayscale(80%);
  opacity: 0.7;
}

.flower-card-btn.locked .flower-num {
  color: rgba(139, 85, 96, 0.65);
}

.flower-card-btn.locked .flower-tag {
  background: rgba(196, 116, 137, 0.12);
  color: rgba(139, 85, 96, 0.7);
  border-color: transparent;
}

/* Shake feedback animation when clicking a locked card */
.flower-card-btn.shake {
  animation: lockedShake 0.4s ease both;
}

@keyframes lockedShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* Modal for viewing reason */
.reason-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.reason-modal[hidden] {
  display: none;
}

.reason-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(60, 20, 35, 0.45);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.reason-modal-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  max-height: 90vh;
  overflow-y: auto;
  background: #fffdfc;
  border: 1.5px solid rgba(223, 111, 143, 0.4);
  border-radius: 24px;
  padding: 24px 20px 20px;
  text-align: center;
  box-shadow: 0 24px 70px rgba(120, 35, 60, 0.3);
  animation: modalPopIn 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.25) both;
  scrollbar-width: thin;
  scrollbar-color: rgba(223, 111, 143, 0.35) transparent;
}

.reason-modal-dialog::-webkit-scrollbar {
  width: 6px;
}

.reason-modal-dialog::-webkit-scrollbar-thumb {
  background: rgba(223, 111, 143, 0.35);
  border-radius: 999px;
}

@keyframes modalPopIn {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #fdeef2;
  color: #c25770;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, background 0.15s ease;
}

.modal-close-btn:hover {
  transform: scale(1.1);
  background: #fbd5dd;
}

.modal-flower-icon {
  font-size: 36px;
  margin-bottom: 2px;
  filter: drop-shadow(0 4px 8px rgba(223, 111, 143, 0.25));
}

.modal-reason-num {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #d28a9c;
}

.modal-reason-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  color: #c25770;
  margin: 4px 0 12px;
  line-height: 1.3;
}

[hidden],
.photo-placeholder-content[hidden],
.modal-photo-img[hidden],
.photo-mode-toggle[hidden] {
  display: none !important;
}

/* Photo Mode Toggle (Pixel Cutscene vs Real Photo) */
.photo-mode-toggle {
  display: inline-flex;
  background: #fdeef2;
  border: 1.5px solid rgba(223, 111, 143, 0.35);
  border-radius: 999px;
  padding: 3px;
  gap: 4px;
  margin: 0 auto 12px;
  box-shadow: 0 2px 8px rgba(223, 111, 143, 0.12);
}

.toggle-mode-btn {
  border: none;
  background: transparent;
  padding: 5px 12px;
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 700;
  color: #8b5560;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  touch-action: manipulation;
}

.toggle-mode-btn:hover {
  color: #c25770;
}

.toggle-mode-btn.active {
  background: linear-gradient(135deg, #f4a7b6, #df6f8f);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(223, 111, 143, 0.3);
}

/* Modal Photo Holder - Optimized for portrait memories */
.modal-photo-box {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff7f9, #ffedf2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: all 0.25s ease;
}

/* Portrait photo container when an image is loaded */
.modal-photo-box.has-image {
  aspect-ratio: 3 / 4;
  max-height: min(350px, 46vh);
  border: 3px solid #ffffff;
  box-shadow: 0 10px 28px rgba(196, 116, 137, 0.25), 0 2px 8px rgba(0, 0, 0, 0.06);
  background: #2a1b22;
}

.modal-photo-box.has-image.is-real-photo {
  background: #ffffff;
}

/* Placeholder container when no image is uploaded */
.modal-photo-box.is-placeholder {
  min-height: 130px;
  max-height: 150px;
  border: 2px dashed rgba(223, 111, 143, 0.45);
  box-shadow: inset 0 2px 6px rgba(223, 111, 143, 0.08);
}

.photo-placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: rgba(194, 87, 112, 0.75);
  padding: 14px;
  width: 100%;
  height: 100%;
}

.photo-placeholder-icon {
  font-size: 28px;
}

.photo-placeholder-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.modal-photo-box.is-loading {
  background: linear-gradient(90deg, #fff0f3 25%, #ffe1e8 50%, #fff0f3 75%);
  background-size: 200% 100%;
  animation: photoShimmer 1.4s infinite ease-in-out;
}

@keyframes photoShimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.modal-photo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 17px;
  image-rendering: pixelated;
  image-rendering: -webkit-optimize-contrast;
  opacity: 1;
  transition: opacity 0.25s cubic-bezier(0.2, 0, 0.2, 1);
}

.modal-photo-img.is-loading {
  opacity: 0;
}

.modal-photo-img.is-real {
  object-fit: cover;
  object-position: center 20%;
  image-rendering: auto;
}

.modal-reason-text {
  font-size: 14px;
  line-height: 1.55;
  color: #7a4652;
  margin-bottom: 16px;
  background: rgba(253, 238, 242, 0.55);
  padding: 10px 14px;
  border-radius: 12px;
  border-left: 3px solid #df6f8f;
  text-align: left;
}

.modal-action-btn {
  width: 100%;
}

/* Final Date Invitation Banner */
.final-banner {
  margin-top: 18px;
  padding: 20px 18px;
  background: linear-gradient(135deg, #fff2f5, #ffe4ec);
  border: 1.5px solid #f4a7b6;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(223, 111, 143, 0.22);
  animation: bannerSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes bannerSlideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.final-card-decor {
  font-size: 20px;
  margin-bottom: 4px;
}

.final-title {
  font-size: 24px;
  color: #c25770;
  margin-bottom: 6px;
}

.final-sub {
  font-size: 14px;
  color: #8b5560;
  line-height: 1.45;
  margin-bottom: 14px;
}

/* Birthday Proposal Reveal Card */
.birthday-proposal {
  margin-top: 20px;
  padding: 26px 20px;
  background: linear-gradient(135deg, #fff2f5, #ffe4ec);
  border: 2px solid #f4a7b6;
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(223, 111, 143, 0.28);
  animation: proposalPop 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  text-align: center;
}

@keyframes proposalPop {
  from {
    transform: scale(0.92) translateY(18px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.proposal-decor {
  font-size: 28px;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 6px rgba(223, 111, 143, 0.3));
}

.proposal-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 800;
  color: #d28a9c;
  margin-bottom: 4px;
}

.proposal-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  color: #c25770;
  line-height: 1.25;
  margin-bottom: 8px;
}

.proposal-sub {
  font-size: 14.5px;
  color: #8b5560;
  line-height: 1.5;
  margin-bottom: 20px;
}

.proposal-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 56px;
}

.venue .v-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #c25770;
  background: rgba(223, 111, 143, 0.12);
  padding: 2px 8px;
  border-radius: 999px;
  margin-top: 4px;
}

.venues.dates {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

/* Passcode Gate Screen */
html.is-unlocked #lockOverlay {
  display: none !important;
}

.lock-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(253, 241, 244, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.lock-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.lock-card {
  max-width: 380px;
  width: 100%;
  text-align: center;
  border-radius: 26px;
  padding: 34px 24px 28px;
  box-shadow: 0 20px 60px rgba(196, 116, 137, 0.22);
  border: 1.5px solid rgba(223, 111, 143, 0.4);
  background: #ffffff;
  animation: modalPopIn 0.35s cubic-bezier(0.18, 0.89, 0.32, 1.25) both;
}

.lock-icon {
  font-size: 40px;
  margin-bottom: 6px;
  filter: drop-shadow(0 4px 10px rgba(223, 111, 143, 0.25));
}

.lock-title {
  font-size: 32px;
  color: #c25770;
  margin: 4px 0 8px;
}

.pin-inputs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 22px 0 16px;
}

.pin-digit {
  width: 52px;
  height: 60px;
  font-size: 28px;
  text-align: center;
  font-weight: 700;
  color: #c25770;
  background: #fff8fa;
  border: 2px solid rgba(223, 111, 143, 0.35);
  border-radius: 16px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  caret-color: #df6f8f;
}

.pin-digit:focus {
  border-color: #df6f8f;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(223, 111, 143, 0.22);
  transform: translateY(-2px);
}

.pin-inputs.shake {
  animation: lockedShake 0.4s ease both;
}

.pin-error {
  color: #c62848;
  font-size: 13.5px;
  font-weight: 600;
  margin: 0 0 16px;
  animation: lockedShake 0.4s ease both;
}

@media (max-width: 480px) {
  .card {
    padding: 32px 20px;
  }

  .script {
    font-size: 32px;
  }

  .venues {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .venue {
    padding: 14px 8px;
  }

  .buttons {
    flex-direction: column;
  }

  .flower-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .flower-card-btn {
    padding: 10px 4px;
    border-radius: 14px;
  }

  .flower-card-btn .flower-icon {
    font-size: 22px;
  }

  .flower-card-btn .flower-num {
    font-size: 11px;
  }

  .flower-card-btn .flower-tag {
    font-size: 9px;
    padding: 1px 4px;
  }

  .reason-modal-dialog {
    padding: 20px 16px 18px;
    border-radius: 20px;
  }

  .modal-photo-box.has-image {
    max-height: min(290px, 40vh);
  }

  .surprise-title {
    font-size: 24px;
  }

  .pin-inputs {
    gap: 8px;
    margin: 18px 0 14px;
  }

  .pin-digit {
    width: 46px;
    height: 54px;
    font-size: 24px;
    border-radius: 12px;
  }
}