*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    box-sizing: border-box;
}

.container{
    width: 100vw;
    height: 100vh;
    /* background-image: url(./tengyart-e76uliBnmsg-unsplash.jpg); */
    background-position: center;
    background-size:  cover;
    padding: 0 10%;
    position: relative;
}
.logo{
    width: 120px;
    padding: 20px 0px;
    cursor: pointer;
    margin-bottom: 20px;
}
.content{
    margin-top: 15px;
    top: 40%;
    position: absolute;
    transform: translateY(-50%);
    color: #21040e;
}

.content h1{
    font-size: 50px;
    font-weight: 600;
}
.content p{
    margin-bottom: 10px;
}

 /* Countdown */
    .countdown {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 40px;
      margin-top: 60px;
    }

    .time-block {
      display: flex;
      flex-direction: column;
      align-items: center;
      background: rgba(108, 99, 255, 0.12);
      border: 1px solid rgba(108, 99, 255, 0.2);
      border-radius: 14px;
      padding: 16px 20px;
      min-width: 72px;
    }

    .time-value {
      font-size: clamp(1.6rem, 4vw, 2.2rem);
      font-weight: 700;
      color: var(--text);
      line-height: 1;
      font-variant-numeric: tabular-nums;
    }

    .time-label {
      font-size: 0.68rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: 6px;
    }


    /* Footer */
    footer {
      width: 100%;
      position: absolute;
      bottom: 24px;
      font-size: 0.8rem;
      color: var(--muted);
      display: flex;
      text-align: center;
      justify-content: center;
    }

    footer a {
      color: var(--primary);
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }