* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #111;
  color: #fff;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 30px;
}

/* ── Vídeo ── */
.video-wrapper {
  width: 100%;
  background: #000;
  position: relative;
  /* Caixa preta horizontal, vídeo vertical dentro */
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-wrapper video {
  /* Vídeo em pé (9:16): altura máxima = wrapper, largura proporcional */
  height: 100%;
  width: auto;
  display: block;
  object-fit: contain;
}

/* overlay cobre apenas o vídeo mas clickable em toda área */
.video-overlay {
  position: absolute;
  inset: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Círculo rosa grande centralizado */
.sound-btn {
  background: #e91e8c;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(233,30,140,0.7);
}

/* Label "TOQUE PARA OUVIR" */
.tap-area {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tap-area span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.9);
}

.tap-area.hidden,
.sound-btn.hidden {
  display: none;
}

/* Ícone de som no canto inferior direito após unmute */
.sound-corner {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: none;
  align-items: center;
  justify-content: center;
}

.sound-corner.visible {
  display: flex;
}

/* ── Timer ── */
.timer-section {
  padding: 14px 20px 10px;
  font-size: 15px;
  font-weight: 600;
  color: #ddd;
  text-align: center;
}

.timer-red {
  color: #ff4500;
  font-weight: 700;
}

/* ── Botão Telegram ── */
.btn-telegram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #1e88e5;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  padding: 14px 20px;
  width: calc(100% - 32px);
  transition: background 0.2s, transform 0.1s;
  box-shadow: 0 4px 20px rgba(30,136,229,0.45);
}

.btn-telegram:active {
  background: #1565c0;
  transform: scale(0.98);
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-main {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 1px;
}

.btn-sub {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  margin-top: 3px;
}

/* ── Garantia ── */
.guarantee {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: #00e676;
  letter-spacing: 0.5px;
  text-align: center;
}

/* ── Box ajuda ── */
.help-box {
  margin: 14px 16px 0;
  background: #1c1010;
  border: 1px solid #3a1a1a;
  border-radius: 8px;
  padding: 14px 16px;
  width: calc(100% - 32px);
}

.help-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.help-desc {
  font-size: 12px;
  color: #aaa;
  line-height: 1.5;
}

/* ── Passos ── */
.steps {
  width: calc(100% - 32px);
  margin: 14px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 4px 0;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff1744;
  flex-shrink: 0;
  margin-top: 3px;
}

.step p {
  font-size: 13px;
  color: #ccc;
  font-weight: 600;
  line-height: 1.4;
}

.highlight-pink {
  color: #ff4081;
  font-weight: 700;
}

.highlight-blue {
  color: #40c4ff;
  font-weight: 700;
}

/* ── Footer ── */
footer {
  margin-top: 32px;
  text-align: center;
  padding: 0 20px;
  font-size: 10px;
  color: #555;
  line-height: 1.8;
}

footer a {
  color: #555;
  text-decoration: none;
}
