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

body {
  font-family: 'Inter', sans-serif;
  height: 100vh;
  background: #0014cc;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  max-width: 800px;
}

h1 {
  font-family: 'Archivo', sans-serif;
  font-size: 52px;
  font-weight: 600;
  letter-spacing: -1px;
  margin-bottom: 10px;

  text-shadow:
    0 0 0 #fff,
    1px 1px 0 #fff,
    0 0 8px rgba(255,255,255,0.3);
}

.subtitle {
  font-size: 18px;
  font-weight: 300;
  opacity: 0.7;
  margin-bottom: 30px;
}

/* Upload botón */
.upload {
  display: inline-block;
  padding: 12px 22px;
  border: 1px solid #fff;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.upload:hover {
  background: #fff;
  color: #0b1f3a;
}

input {
  display: none;
}

/* Player */
.player-container {
  margin-top: 30px;
}

video, audio {
  width: 100%;
  max-width: 700px;
  border-radius: 6px;
  margin-top: 20px;
}

/* Botones */
.controls {
  margin-top: 15px;
}

button {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 16px;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background: #fff;
  color: #0b1f3a;
}

/* Utilidades */
.hidden {
  display: none;
}
