body {
  margin: 0;
  font-family: 'Bodoni 72 Oldstyle Book', serif;
  background-color: #000;
  color: #f5f5f5;
  text-align: center;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

header {
  padding: 4rem 1rem 2rem;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

h2 {
  font-size: 1.25rem;
  font-weight: 400;
  color: #ccc;
  margin-top: 0;
}

.video-container {
  width: 90%;
  max-width: 900px;
  margin: 2rem auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

footer {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem 0 3rem;
}

footer svg {
  width: 34px;
  height: 34px;
  fill: #f5f5f5;
  opacity: 0.75;
  transition: all 0.3s ease;
  border-radius: 50%;
  padding: 6px;
}

footer svg:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.album-section {
  text-align: center;
  margin-top: 3rem;
  font-family: "Bodoni 72 Oldstyle Book", serif;
  color: #f0f0f0;
}

.album-section p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.album-button {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border: 1px solid #f0f0f0;
  color: #f0f0f0;
  text-decoration: none;
  font-size: 1.1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.album-button:hover {
  background-color: #f0f0f0;
  color: #000;
  transform: scale(1.05);
}


/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  z-index: 1000;
}

.cookie-banner button {
  background: #fff;
  color: #000;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
}

.cookie-banner button:hover {
  background: #f0f0f0;
}
