* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* Barras superior e inferior */
.top-bar, .bottom-bar {
  background: rgba(0, 0, 0, 0.7);
  color: #d4af37; /* dorado */
  padding: 12px 0;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Contenido principal */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

/* Video */
.video-wrapper {
  margin: 20px 0;
}

.video-wrapper video {
  max-width: 100%;
  max-height: 60vh;
  border-radius: 8px;
  display: block;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Botones */
.button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.btn {
  padding: 12px 32px;
  background: #d4af37;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #fff;
  color: #d4af37;
  transform: scale(1.05);
}

/* Móvil */
@media (max-width: 600px) {
  .button-group {
    flex-direction: column;
    align-items: center;
  }
  .btn {
    width: 85%;
    text-align: center;
  }
}