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

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-page {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 16px;
}

.video-header {
  text-align: center;
  margin-bottom: 24px;
}

.header-text {
  font-size: 18px;
  font-weight: 600;
  color: #e0e0e0;
  line-height: 1.4;
}

.video-container {
  width: 100%;
}

.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 16/9;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: opacity 0.3s;
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #0a0a0a;
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}

.play-btn:hover {
  transform: scale(1.1);
}

.progress-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.progress-bar {
  flex: 1;
  height: 6px;
  background: #2a2a2a;
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #22c55e, #4ade80);
  border-radius: 3px;
  transition: width 0.3s;
}

.progress-text {
  font-size: 13px;
  color: #999;
  min-width: 36px;
  text-align: right;
}

.cta-section {
  margin-top: 28px;
  text-align: center;
}

.waiting-text {
  margin-bottom: 20px;
}

.waiting-text p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.6;
}

.cta-button {
  width: 100%;
  padding: 18px 24px;
  border: none;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cta-button.locked {
  background: #333;
  color: #777;
  cursor: not-allowed;
}

.cta-button.unlocked {
  background: #22c55e;
  color: #fff;
  cursor: pointer;
  animation: pulse 2s infinite;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
}

.cta-button.unlocked .lock-icon {
  display: none;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@media (max-width: 480px) {
  .video-page {
    padding: 16px 12px;
  }
  .header-text {
    font-size: 16px;
  }
  .cta-button {
    font-size: 15px;
    padding: 16px 20px;
  }
}
