  #countdown {
    font-size: 6rem;
    color: #fff;
    padding: 1rem;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
  }

  .unit {
    text-align: center;
  }

  .unit-day {
    text-align: center;
    min-width: 10rem;
  }

  .number {
    font-size: 6rem;
    font-weight: bold;
    line-height: 100%;
  }

  .label {
    margin: 0.25rem;
    font-size: 1rem;
    opacity: 0.8;
  }

  .hat {
    position: absolute;
    top: -8.8rem;
    right: -6.8rem;
    height: 15rem;
    rotate: 15deg;
  }

  .countdown-glass {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(255, 255, 255, 0.05); /* Průhledné “sklo” */
    border-radius: 20px;
    border-top: 1px solid #ffffff75;
    border-bottom: 1px solid #ffffff75;
  }


/* Styly, pokud je zařízení v orientaci na šířku (landscape) */
@media (orientation: landscape) {
    #countdown {
        flex-direction: row; /* Změní uspořádání na řádek, když je telefon na šířku */
        font-size: 4rem; /* Zvětší písmo */
        padding: 1rem;
    }

    .unit {
        text-align: center;
        min-width: 8rem;
    }
}

/* >= 1024px (desktop) */
/* lg */
@media (min-width: 768px) {
    #countdown {
        position: absolute;
        font-size: 8rem;
        padding: 2rem;
        display: flex;
        flex-direction: row;
    }

  .unit {
    width: 12rem;
  }

  .unit-day {
    width: 15rem;
  }

  .number {
    font-size: 8rem;
  }

  .label {
    font-size: 2rem;
  }
}