@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');


/* TIMER STYLES */
.timeContainer {
  z-index: 2;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Noto Sans JP', sans-serif;
}

.timeContainer .wrapper {
  width: 800px;
  padding: 20px
  max-height: 400px;
  display: flex;
  justify-content: space-around;
  gap: 20px;
  font-family: 'Noto Sans JP', sans-serif;
}

.timeContainer .wrapper div {
  color: #ccc;
  text-align: center;
  width: 24%;
  height: 150px;
  border-radius: 12px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  font-family: 'Noto Sans JP', sans-serif;
}

.timeContainer .wrapper div:first-child{
  background: #cbaa66;
  color: white;
  font-family: 'Noto Sans JP', sans-serif;
}

.timeContainer .wrapper div:nth-child(2){
  background: #cbaa66;
  color: white;
  font-family: 'Noto Sans JP', sans-serif;
}

.timeContainer .wrapper div:nth-child(3){
  background: #171f32;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
}

.timeContainer .wrapper div:last-child{
  background: #171f32;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
}

.timeContainer .wrapper div h2 {
  font-size: 4.4rem;
  font-family: 'Noto Sans JP', sans-serif;
}

.circleDiv {
  position: fixed;
  z-index: -1;
  top: calc(75% - 337px);
  left: calc(-75% + 674px);
  width: 274px;
  height: 274px;
  border-radius: 100%;
  border: 6px dashed #cbaa66;
  animation: rotatingCircle infinite linear 60s;
}

@keyframes rotatingCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}


/* Responsive Settings */

/* Tablet View */
@media (max-width: 768px) {
  .timeContainer .wrapper {
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    gap: 15px;
  }

  .timeContainer .wrapper div {
    width: 90%; /* Reduce width for better fit */
    height: 120px; /* Adjust height */
  }

  .timeContainer .wrapper div h2 {
    font-size: 3.5rem; /* Scale down font size */
  }

  .circleDiv {
    top: calc(70% - 200px);
    left: calc(-70% + 500px);
    width: 200px;
    height: 200px;
    border: 5px dashed #cbaa66;
  }
}

/* Mobile View */
@media (max-width: 480px) {
  .timeContainer {
    padding: 10px;
  }

  .timeContainer .wrapper {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .timeContainer .wrapper div {
    width: 95%; /* Full width for mobile */
    height: 100px; /* Smaller height */
  }

  .timeContainer .wrapper div h2 {
    font-size: 2.5rem; /* Further reduce font size */
  }

  .circleDiv {
    top: calc(65% - 150px);
    left: calc(-65% + 400px);
    width: 150px;
    height: 150px;
    border: 4px dashed #cbaa66;
  }
}
