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

body {
  font-family: "Arial", sans-serif;
  background: url("img/background.webp") no-repeat center center/cover;
  color: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.background {
  background: url("img/background.webp") no-repeat center center/cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0.4);
  z-index: -1;
}

.content {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.logo-header {
  max-width: 300px;
  width: 100%;
  height: auto;
}

.subtitle {
  font-style: italic;
  color: #ddd;
  margin-top: 10px;
}

.frame-base {
  margin: 40px 0;
  padding: 25px 15px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

h2 {
  color: #fff;
  font-size: 2rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  text-shadow: 0 0 8px rgba(101, 32, 153, 0.6);
  text-align: center;
}

h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 80%;
  height: 3px;
  background: linear-gradient(90deg, #652099, transparent);
  border-radius: 2px;
}

.clip-grid iframe {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.clip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.concert {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px;
  margin: 10px auto;
  width: 85%;
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.concert p {
  margin: 4px 0;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin: 20px 0;
}

.socials a {
  font-size: 1.8rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 14px;
  border-radius: 50%;
  transition: transform 0.3s, background 0.3s;
}

.socials a:hover {
  transform: scale(1.2);
  background: #652099;
}

footer {
  font-size: 0.8rem;
  color: #ccc;
  margin-top: 15px;
  text-align: center;
}

/* === RESPONSIVE === */

/* Tablettes */
@media (max-width: 768px) {
  h2 {
    font-size: 1.8rem;
  }

  .logo-header {
    max-width: 240px;
  }

  .frame-base {
    margin: 30px 0;
    padding: 20px 10px;
  }

  .concert {
    width: 90%;
  }
}

/* Mobiles */
@media (max-width: 480px) {
  body {
    align-items: flex-start;
  }

  .content {
    padding: 20px 10px;
  }

  .logo-header {
    max-width: 200px;
  }

  h2 {
    font-size: 1.5rem;
  }

  .clip-grid iframe {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .concert {
    width: 100%;
    padding: 10px;
  }

  .socials {
    gap: 12px;
  }

  .socials a {
    font-size: 1.6rem;
    padding: 10px;
  }
}
.lyrics-table {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    border-collapse: collapse;
}

.lyrics-table td {
    width: 50%;
    padding: 10px 20px;
    vertical-align: top;
}