* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(255, 153, 51, 0.12), transparent 30%),
    linear-gradient(180deg, #120909 0%, #1b0f0f 45%, #0e0e0e 100%);
  color: #f5e9d8;
}

.site-header {
  position: relative;
  text-align: center;
  padding: 70px 20px;
  background:
    linear-gradient(rgba(70, 15, 15, 0.65), rgba(20, 10, 10, 0.8)),
    url('https://images.unsplash.com/photo-1514222134-b57cbb8ce073?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
  border-bottom: 3px solid #d4a017;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15), rgba(0,0,0,0.45));
}

.header-content {
  position: relative;
  z-index: 1;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

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

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

.site-header h1 {
  margin: 0;
  font-size: 2.8rem;
  color: #ffd166;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.site-header p {
  margin-top: 12px;
  font-size: 1.1rem;
  color: #ffe7b3;
}

main {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
}

.video-card {
  width: 100%;
  max-width: 900px;
  background: rgba(35, 18, 18, 0.9);
  border: 1px solid rgba(212, 160, 23, 0.35);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.video-card h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #ffd166;
  text-align: center;
  font-size: 1.8rem;
}

iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 12px;
  background: black;
}

.description {
  margin-top: 18px;
  line-height: 1.6;
  color: #f0d8b6;
  text-align: center;
}

footer {
  text-align: center;
  padding: 22px;
  margin-top: 20px;
  background: #140c0c;
  border-top: 1px solid rgba(212, 160, 23, 0.25);
  color: #d8c3a0;
}

@media (max-width: 768px) {
  .site-header {
    padding: 50px 20px;
  }

  .site-header h1 {
    font-size: 2rem;
  }

  iframe {
    height: 260px;
  }

  .video-card {
    padding: 18px;
  }
}