* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background-color: #f4f6fb;
  color: #222;
  line-height: 1.7;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 15px 15px;
  text-align: center;
}

h1 {
  font-size: 2.3rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(to right, #5a5b9f, #408f5d);
  border-radius: 10px;
}

h2,
h3 {
  font-size: 1.3rem;
  margin: 25px 0 12px;
  position: relative;
  padding-left: 12px;
}

h2::before,
h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 6px;
  height: 70%;
  background: #778042;
  border-radius: 6px;
}

.song-box {
  background: linear-gradient(to right, #5a5b9f, #408f5d);
  border-left: 8px solid #6366f1;
  padding: 10px 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.song-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
}

.song-box h3 {
  margin-bottom: 10px;
  color: #4338ca;
}

.song-box audio {
  width: 80%;
}

/* =====================
   MOVIE SECTION
===================== */
.movie-card {
  background: linear-gradient(to right, #5a5b9f, #408f5d);
  border-left: 8px solid #6366f1;
  padding: 10px 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.movie-title {
  color: #000000;
  padding: 10px 14px;
  display: inline-block;
  border-radius: 6px;
  margin-bottom: 10px;
  font-weight: 600;
  width: 80%;
}
.movie-content video,
.movie-content img {
  border: 4px solid #6366f1; /* elegant indigo border */
  border-radius: 14px;
  padding: 6px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.movie-content {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.movie-content img,
.movie-content video {
  border-radius: 12px;
  max-width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.movie-description {
  max-width: 600px;
  color: #000000;
  font-size: 0.98rem;
}

.highlight {
  background: #fff3b0;
  padding: 4px 7px;
  border-radius: 4px;
  font-weight: 600;
}
