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

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0b0f1a;
  color: white;
  overflow: hidden;
}

.bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, #3b82f6, transparent 40%),
              radial-gradient(circle at 80% 80%, #8b5cf6, transparent 40%),
              radial-gradient(circle at 50% 50%, #111827, #0b0f1a);
  filter: blur(40px);
  opacity: 0.7;
}

.container {
  position: relative;
  width: min(900px, 90vw);
  text-align: center;
}

.header h1 {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 1px;
}

.header p {
  opacity: 0.6;
  margin-top: 6px;
}

.player-wrapper {
  margin-top: 30px;
  aspect-ratio: 16/9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

iframe {
  width: 100%;
  height: 100%;
}

button {
  margin-top: 25px;
  padding: 12px 22px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 16px;
  color: white;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  transition: transform 0.2s ease;
}

button:hover {
  transform: scale(1.05);
}
