#playerWrapper {
  margin-bottom: 30px;
}

.timer-fake-player {
  background: #161617;
  max-width: 760px;
  width: 100%;
  aspect-ratio: 760/456;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
}

.timer-await-title {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  text-align: center;
  max-width: 80%;
}

.timer-circle-wrap {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-svg {
  width: 200px;
  height: 200px;
  transform: none;
}

.circle-bg {
  fill: none;
  stroke: #2f2f2f; 
  stroke-width: 18;
}

.circle-fg {
  fill: none;
  stroke: #ff4141; 
  stroke-width: 18;
  stroke-dasharray: 565.48;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s linear;
}

.timer-count {
  position: absolute;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  font-family: sans-serif;
}

#timerContainer {
  display: none;
}

#playerSection {
  /* скрыт через style="display:none;" */
}

/* 6. Адаптация */
@media (max-width: 320px) {
  .timer-circle-wrap {
    width: 160px;
    height: 160px;
  }
  .timer-count {
    font-size: 50px;
  }
  .timer-await-title {
    font-size: 14px;
    max-width: 90%;
  }
}