.date-module {
  position: relative;
  max-width: 430px;
  margin: 0 auto;
  background-color: #fff9f1;
  padding: 26px 24px 14px;
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
  overflow: hidden;
}

.date-flower {
  position: absolute;
  z-index: 0;
  opacity: 0.5;
}
.date-flower-tl {
  top: -14px;
  left: -24px;
  width: 82px;
  transform: rotate(-12deg);
}
.date-flower-br {
  bottom: -14px;
  right: -24px;
  width: 74px;
  transform: scaleX(-1) rotate(-10deg);
}

.month-title {
  position: relative;
  z-index: 1;
  color: #a9822f;
  font-size: 28px;
  letter-spacing: 2.5px;
  margin: 0 0 8px;
  font-weight: 400;
}

.days-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}

.day-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #e8d6d2;
  color: #7a6a63;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.day-heart {
  position: relative;
  width: 84px;
  height: 84px;
  margin: 0 4px;
  flex-shrink: 0;
}

.heart-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.heart-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -58%);
  color: #fff9f1;
  font-size: 26px;
  font-weight: 600;
}

.year-title {
  color: #a9822f;
  font-size: 28px;
  letter-spacing: 1px;
  margin: 0;
}

@media (max-width: 360px) {
  .day-circle { width: 48px; height: 48px; font-size: 18px; }
  .day-heart { width: 72px; height: 72px; }
  .heart-number { font-size: 22px; }
  .month-title { font-size: 32px; letter-spacing: 4px; }
  .year-title { font-size: 32px; }
}
