*,
::before,
::after {
  box-sizing: border-box;
}

* {
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 62.5%;
  height: -webkit-fill-available;
}

body {
  background-color: #f7f4ed;
  /* overflow-x: hidden; */
    /* Extend to full screen including notch */
  margin: 0;
  padding: 0;
  min-height: 100vh;
  min-height: -webkit-fill-available; /* iOS Safari fix */
}

.container {
  padding: 40px 20px 40px 20px;
  overflow-x: hidden;
  /* overscroll-behavior: auto; */
}

.banner {
  left: 0;
  top: 0;
}

.top-content {
  position: fixed;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  width: 100%;
  z-index: 20;
  display: flex;
  padding: 8px 12px;
  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}

.top-content.scrolled {
  background-color: rgba(247, 244, 237, 0.92);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(6px);
}

.title {
  font-family: "Great Vibes", cursive;
  font-size: 28px;
  color: #ff6f91;
  text-shadow: 0 2px 5px rgba(255, 111, 145, 0.3);
  transition:
    color 0.35s ease,
    text-shadow 0.35s ease;
}

.title::after {
  content: "Van & James :)";
}

.scrolled .title::after {
  content: "James & Van :)";
}

.top-content.scrolled .title {
  color: #2f2a3a;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.small-photo {
  width: 30px;
  height: auto;
  border-radius: 20%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cover-photo {
  width: 100%;
  height: auto;
  display: block;
  background-size: cover;
}

/* Hearts Background Animation */
.hearts-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
}

.heart {
  position: absolute;
  bottom: -50px;
  font-size: 25px;
  color: #ffb3ba;
  opacity: 0.6;
  animation: float-up 8s linear forwards;
}

@keyframes float-up {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-110vh) rotate(360deg);
    opacity: 0;
  }
}

/* Content Container */
.content-wrapper {
  position: relative;
  width: 100%;
  z-index: 1;
}

/* Text Container with Frame Background */
.text-container {
  text-align: center;
  max-width: 85%;
  width: auto;
  margin: 0 auto 30px auto;
  padding: 50px 60px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

/* Frame Background Image */
.text-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("https://lh3.googleusercontent.com/pw/AP1GczO_YiXtV7zxSE3SVMHJ823MCZsaxBTDc1fAEPbkHYYenEHFDbK4sEy263fBgETgGRX-bLQiqT3zViKtruXewJOaD6zu4pGjdI1jS41cpmzvOK03bBptvaHU-OpPGGQNmSXvrE4qixHRM79ptN7AKDUs=w1602-h1315-s-no?authuser=0");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}

.line {
  font-size: 40px;
  margin-bottom: 15px;
  min-height: 60px;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.line:last-child {
  margin-bottom: 0;
}

.vietnamese {
  font-family: "Great Vibes", cursive;
}

.english {
  font-family: "Parisienne", cursive;
}

.word {
  display: inline-block;
  white-space: nowrap;
}

.letter {
  opacity: 0;
  display: inline-block;
}

.letter.show {
  animation: fadeIn 0.8s forwards;
}

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

/* Image Styles */
.image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 100%;
  width: 100%;
  padding: 0;
}

.image-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  max-width: 100%;
  width: 100%;
}

/* Section 1 */

.image-wrapper {
  position: relative;
  max-width: 45%;
  opacity: 0;
  overflow: hidden;
  flex-shrink: 1;
}

.image-wrapper.left {
  transform: translateX(-50vw);
}

.image-wrapper.right {
  transform: translateX(50vw);
}

.image-wrapper.slide-in {
  animation: slideIn 2s ease-out forwards;
  opacity: 1;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

@keyframes slideIn {
  to {
    transform: translateX(0);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  /* body {
    padding: 0 10px 25px 10px;
  } */

  .text-container {
    padding: 40px 30px;
    max-width: 95%;
    margin-bottom: 20px;
  }

  .line {
    font-size: 26px;
    min-height: 38px;
    margin-bottom: 12px;
  }

  .image-row {
    gap: 8px;
  }

  .image-wrapper {
    max-width: 48%;
  }

  .image-container {
    gap: 10px;
  }

  .heart {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .text-container {
    padding: 30px 25px;
    max-width: 98%;
    margin-bottom: 18px;
  }

  .line {
    font-size: 20px;
    min-height: 32px;
    margin-bottom: 10px;
  }

  .image-row {
    gap: 6px;
  }

  .image-container {
    gap: 8px;
  }

  .heart {
    font-size: 17px;
  }
}

@media (max-width: 380px) {
  /* body {
    padding: 0 5px 18px 5px;
  } */

  .text-container {
    padding: 25px 20px;
    margin-bottom: 15px;
  }

  .line {
    font-size: 18px;
    min-height: 28px;
    margin-bottom: 8px;
  }

  .image-row {
    gap: 4px;
  }

  .image-container {
    gap: 6px;
  }
}

/* Section 2 */
#imageContainer2 {
  margin-top: 30px;
}
.section2-wrapper {
  position: relative;
  opacity: 0;
  transform: translateY(12px);
  overflow: hidden;
  flex-shrink: 1;
}

.landscape {
  max-width: 100%;
}

.portrait {
  max-width: 50%;
}

.section2-wrapper.fade-in {
  animation: fadeInPhoto 1.6s ease forwards;
}

.section2-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

@keyframes fadeInPhoto {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section 3 */
#imageContainer3 {
  margin-top: 30px;
}

.left-image {
  max-height: 100%;
  max-width: 45%;
  align-self: center;
}

.right-images {
  max-width: 45%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  align-self: center;
}

.right-image {
  max-width: 100%;
}

#imageContainer3 .section3-item {
  opacity: 0;
}

#imageContainer3 .section3-left {
  transform: translateX(-50vw);
}

#imageContainer3 .section3-right {
  transform: translateX(50vw);
}

#imageContainer3 .section3-slide-in {
  animation: slideIn 2s ease-out forwards;
  opacity: 1;
}

/* Section 4 */
#imageContainer4 .section4-item {
  opacity: 0;
}

#imageContainer4 .section4-left {
  transform: translateX(-50vw);
}

#imageContainer4 .section4-right {
  transform: translateX(50vw);
}

#imageContainer4 .section4-slide-in {
  animation: slideIn 2s ease-out forwards;
  opacity: 1;
}

/* Slide section */
#imageContainer6 {
  margin-top: 30px;
  padding: 0 40px;
}

#imageContainer6 .slideshow {
  position: relative;
  margin: 0 auto;
}

.single-photo {
  display: flex;
  justify-content: center;
}

.single-photo img {
  width: 80%;
  height: auto;
  display: block;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

#imageContainer6 .slide-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

#imageContainer6 .slide-item.is-active {
  opacity: 1;
}

#imageContainer6 .slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#imageContainer6 .slide-show {
  animation-name: slideShowFade;
  animation-duration: calc(var(--slide-duration) * var(--slide-count));
  animation-delay: calc(var(--slide-duration) * var(--slide-index));
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes slideShowFade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* Section 5 */
#imageContainer5 .section5-item {
  opacity: 0;
  transform: translateX(-50vw);
}

#imageContainer5 .section5-slide-in {
  animation: slideIn 1s ease-out forwards;
  opacity: 1;
}

/* Invite words */
.invite-section {
  margin: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 400px;
  overflow: hidden;
}

@media (max-width: 480px) {
  .invite-section {
    height: 500px;
  }
}

.invite-words {
  text-align: center;
  max-width: 100%;
  z-index: 2;
  padding: 50px 60px;
}
.invite-words strong {
  font-family: "Parisienne", cursive;
  font-size: 30px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.frame {
  position: absolute;
  z-index: -1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-image: url("https://lh3.googleusercontent.com/pw/AP1GczPkakd-YcZbmZLJrW9_Xw1npId8fZsws6U_9TvUQhn_kBM7QHQGz1WymudeQLPSe6n62EAVoWSpxPKMv_vxd2z3jJMSeegYEtG2OrXPTtCuqh1A_PBRTMi_3wof6_uTVrbF2hlvKNeVSoQUdShnvDna=w2104-h1315-s-no?authuser=0");
}

/* Map section */
#mapSection {
  display: flex;
  justify-content: center;
}

.map-card {
  max-width: 820px;
  margin-top: 40px;
  padding: 24px 20px 20px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.map-title {
  font-family: "Great Vibes", cursive;
  font-size: 36px;
  color: #2f2a3a;
  margin-bottom: 6px;
}

.map-address {
  font-size: 16px;
  color: #6b6476;
  margin-bottom: 16px;
}

.map-frame {
  position: relative;
  width: 100%;
  padding-top: 62.5%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ff6f91;
  text-decoration: none;
}

.map-link:hover {
  text-decoration: underline;
}

/* Wishes section */
.wishes-card {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 20px 20px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.wishes-title {
  font-family: "Great Vibes", cursive;
  font-size: 34px;
  color: #2f2a3a;
  margin-bottom: 6px;
}

.wishes-note {
  font-size: 15px;
  color: #6b6476;
  margin-bottom: 18px;
}

.wishes-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wishes-field {
  text-align: left;
}

.wishes-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a7f93;
  margin-bottom: 6px;
}

.wishes-input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 12px 14px;
  font-size: 14px;
  font-family: "Parisienne", cursive;
  background: #fff;
  color: #2f2a3a;
}

.wishes-input:focus {
  outline: none;
  border-color: #ff6f91;
  box-shadow: 0 0 0 3px rgba(255, 111, 145, 0.2);
}

.wishes-textarea {
  resize: vertical;
  min-height: 120px;
}

.wishes-button {
  border: none;
  background: #ff6f91;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 18px;
  border-radius: 18px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.wishes-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(255, 111, 145, 0.3);
}

.wishes-status {
  min-height: 18px;
  font-size: 13px;
  color: #6b6476;
  margin: 0;
}

.wishes-list {
  margin-top: 18px;
  text-align: left;
}

.wishes-list-title {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a7f93;
  margin-bottom: 10px;
}

.wishes-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wishes-item {
  padding: 12px 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.wishes-item-name {
  font-size: 14px;
  font-weight: 600;
  color: #2f2a3a;
  margin-bottom: 6px;
}

.wishes-item-message {
  font-size: 14px;
  color: #4d4658;
  line-height: 1.4;
}

.wishes-item-time {
  font-size: 12px;
  color: #8a7f93;
  margin-top: 6px;
}

.wishes-empty {
  font-size: 13px;
  color: #8a7f93;
  margin: 8px 0 0;
}

/* Countdown section */
.hearts-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Bounce from corners animations */
@keyframes bounceFromTopLeft {
  0% {
    top: 0;
    left: 0;
    opacity: 0;
    transform: rotate(0deg);
  }
  10% {
    opacity: 0.7;
  }
  25% {
    top: 40%;
    left: 30%;
  }
  50% {
    top: 20%;
    left: 60%;
  }
  75% {
    top: 60%;
    left: 40%;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    top: 100%;
    left: 80%;
    opacity: 0;
    transform: rotate(360deg);
  }
}

@keyframes bounceFromTopRight {
  0% {
    top: 0;
    right: 0;
    opacity: 0;
    transform: rotate(0deg);
  }
  10% {
    opacity: 0.7;
  }
  25% {
    top: 30%;
    right: 35%;
  }
  50% {
    top: 50%;
    right: 60%;
  }
  75% {
    top: 40%;
    right: 20%;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    top: 100%;
    right: 70%;
    opacity: 0;
    transform: rotate(-360deg);
  }
}

@keyframes bounceFromBottomLeft {
  0% {
    bottom: 0;
    left: 0;
    opacity: 0;
    transform: rotate(0deg);
  }
  10% {
    opacity: 0.7;
  }
  25% {
    bottom: 50%;
    left: 25%;
  }
  50% {
    bottom: 30%;
    left: 55%;
  }
  75% {
    bottom: 60%;
    left: 35%;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    bottom: 100%;
    left: 75%;
    opacity: 0;
    transform: rotate(360deg);
  }
}

@keyframes bounceFromBottomRight {
  0% {
    bottom: 0;
    right: 0;
    opacity: 0;
    transform: rotate(0deg);
  }
  10% {
    opacity: 0.7;
  }
  25% {
    bottom: 40%;
    right: 30%;
  }
  50% {
    bottom: 60%;
    right: 65%;
  }
  75% {
    bottom: 35%;
    right: 40%;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    bottom: 100%;
    right: 80%;
    opacity: 0;
    transform: rotate(-360deg);
  }
}

/* Assign animations to hearts from different corners */
.count-down-heart:nth-child(1) {
  animation: bounceFromTopLeft 8s infinite ease-in-out;
  animation-delay: 0s;
  color: #ff6b7a;
  font-size: 25px;
}
.count-down-heart:nth-child(2) {
  animation: bounceFromTopRight 10s infinite ease-in-out;
  animation-delay: 1s;
  color: #ff4d5a;
  font-size: 30px;
}
.count-down-heart:nth-child(3) {
  animation: bounceFromBottomLeft 9s infinite ease-in-out;
  animation-delay: 0.5s;
  color: #ff8a94;
  font-size: 35px;
}
.count-down-heart:nth-child(4) {
  animation: bounceFromBottomRight 11s infinite ease-in-out;
  animation-delay: 1.5s;
  color: #ff6b7a;
  font-size: 20px;
}
.count-down-heart:nth-child(5) {
  animation: bounceFromTopLeft 10s infinite ease-in-out;
  animation-delay: 2s;
  color: #ff4d5a;
  font-size: 28px;
}
.count-down-heart:nth-child(6) {
  animation: bounceFromTopRight 9s infinite ease-in-out;
  animation-delay: 3s;
  color: #ff8a94;
  font-size: 32px;
}
.count-down-heart:nth-child(7) {
  animation: bounceFromBottomLeft 11s infinite ease-in-out;
  animation-delay: 1s;
  color: #ff6b7a;
  font-size: 22px;
}
.count-down-heart:nth-child(8) {
  animation: bounceFromBottomRight 8s infinite ease-in-out;
  animation-delay: 2.5s;
  color: #ff4d5a;
  font-size: 27px;
}
.count-down-heart:nth-child(9) {
  animation: bounceFromTopLeft 9s infinite ease-in-out;
  animation-delay: 3.5s;
  color: #ff8a94;
  font-size: 33px;
}
.count-down-heart:nth-child(10) {
  animation: bounceFromTopRight 10s infinite ease-in-out;
  animation-delay: 0.8s;
  color: #ff6b7a;
  font-size: 24px;
}
.count-down-heart:nth-child(11) {
  animation: bounceFromBottomLeft 8s infinite ease-in-out;
  animation-delay: 4s;
  color: #ff4d5a;
  font-size: 29px;
}
.count-down-heart:nth-child(12) {
  animation: bounceFromBottomRight 11s infinite ease-in-out;
  animation-delay: 2s;
  color: #ff8a94;
  font-size: 26px;
}
.count-down-heart:nth-child(13) {
  animation: bounceFromTopLeft 10s infinite ease-in-out;
  animation-delay: 1.2s;
  color: #ff6b7a;
  font-size: 31px;
}
.count-down-heart:nth-child(14) {
  animation: bounceFromTopRight 9s infinite ease-in-out;
  animation-delay: 3.8s;
  color: #ff4d5a;
  font-size: 23px;
}
.count-down-heart:nth-child(15) {
  animation: bounceFromBottomLeft 10s infinite ease-in-out;
  animation-delay: 0.3s;
  color: #ff8a94;
  font-size: 28px;
}
.count-down-heart:nth-child(16) {
  animation: bounceFromBottomRight 9s infinite ease-in-out;
  animation-delay: 2.8s;
  color: #ff6b7a;
  font-size: 34px;
}
.count-down-heart:nth-child(17) {
  animation: bounceFromTopLeft 11s infinite ease-in-out;
  animation-delay: 4.2s;
  color: #ff4d5a;
  font-size: 21px;
}
.count-down-heart:nth-child(18) {
  animation: bounceFromTopRight 8s infinite ease-in-out;
  animation-delay: 1.8s;
  color: #ff8a94;
  font-size: 30px;
}
.count-down-heart:nth-child(19) {
  animation: bounceFromBottomLeft 9s infinite ease-in-out;
  animation-delay: 3.2s;
  color: #ff6b7a;
  font-size: 25px;
}
.count-down-heart:nth-child(20) {
  animation: bounceFromBottomRight 10s infinite ease-in-out;
  animation-delay: 0.2s;
  color: #ff4d5a;
  font-size: 27px;
}

/* Main content */
#countdownSection {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 60px 20px;
  overflow: hidden;
  width: 100%;
}

.countdown-content {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
  max-width: 1000px;
}

.countdown-title {
  font-size: 24px;
  font-weight: bold;
  color: #c41e3a;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  letter-spacing: 2px;
  animation: fadeIn 1s ease-out;
}

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

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: slideUp 1s ease-out;
}

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

.time-unit {
  text-align: center;
  min-width: 140px;
  padding: 0 10px;
}

.time-number {
  font-size: 50px;
  font-weight: bold;
  color: #c41e3a;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
  line-height: 1;
  margin-bottom: 5px;
  font-family: "Georgia", serif;
}

.time-label {
  font-size: 20px;
  font-weight: bold;
  color: #c41e3a;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.separator {
  font-size: 50px;
  font-weight: bold;
  color: #c41e3a;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
  line-height: 1;
  align-self: flex-start;
  padding-top: 0;
  margin: 0 5px;
}

/* Responsive design */
@media (max-width: 768px) {

  .title {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .time-number {
    font-size: 48px;
  }

  .separator {
    font-size: 48px;
  }

  .time-label {
    font-size: 12px;
  }

  .time-unit {
    min-width: 70px;
    padding: 0 3px;
  }

  .countdown {
    gap: 5px;
  }
}

@media (max-width: 480px) {

  .title {
    font-size: 20px;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }

  .time-number {
    font-size: 36px;
  }

  .separator {
    font-size: 36px;
  }

  .time-label {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .time-unit {
    min-width: 55px;
    padding: 0 2px;
  }

  .countdown {
    gap: 3px;
  }
}

@media (max-width: 380px) {
  .title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .time-number {
    font-size: 32px;
  }

  .separator {
    font-size: 32px;
  }

  .time-label {
    font-size: 9px;
  }

  .time-unit {
    min-width: 50px;
    padding: 0 1px;
  }

  .countdown {
    gap: 2px;
  }
}
