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

body {
  font-family: 'Outfit', sans-serif;
  background: #ffb6c1;
  color: #2f241d;
  padding: 60px 40px;
  line-height: 1.7;
  min-height: 100vh;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  margin-bottom: 15px;
}

.intro {
  color: #3d2f24;
  font-size: 1.1rem;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.video-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.video-card {
  flex: 1;
  min-width: 300px;
  max-width: 420px;
  text-align: left;
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 20px;
  display: block;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.video-card h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.video-card .artist {
  color: #6e5235;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

.video-card .description {
  color: #3d2f24;
  line-height: 1.8;
  font-size: 0.95rem;
}
