@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-size: 18px; /* Increase the base font size */
  background: linear-gradient(135deg, #ff9e9e, #ffb14c);
  background-size: cover;
  background-attachment: fixed;
  color: #fff;
  padding: 20px;
  animation: fadeIn 2s ease-in-out;
}

.unselectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a {
  text-decoration: none;
  color: #ffb14c;
  font-weight: 700;
}

a:hover {
  color: #ff764c;
}

.section {
  padding: 30px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin: 20px 0;
}

h1, h2, h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  text-align: center;
  animation: textGlow 1.5s ease-in-out infinite alternate;
  font-family: 'Roboto', sans-serif;
  margin-bottom: 40px;
}

h1 {
  font-size: 40px;
  margin-bottom: 20px;
}

h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.review {
  margin-top: 10px;
  color: #e2d7d7;
  line-height: 2.2;
}

.player {
  width: 38%;
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
  background: #e2d7d7;
  padding: 20px 14px 8px 14px;
  border-radius: 10px;
  box-shadow: 10px 2px 90px -11px rgba(13, 100, 76, 0.75);
}

.imgBx img {
  width: 100%;
  border-radius: 10px;
}

.player audio {
  width: 100%;
  border-radius: 6px;
}

h4 {
  font-size: 22px;
  font-weight: bold;
  margin-top: 20px;
  color: #ffb14c;
}

.contents {
  padding: 20px;
  background: linear-gradient(135deg, #ff97f1, #fccb8a);
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
}

.contents::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: #fff;
}

.copyright {
  text-align: center;
  font-size: 16px;
  color: #fff;
  margin-top: 20px;
  line-height: 1.6;
  animation: fadeIn 2s ease-in-out;
}

.copyright a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.copyright a:hover {
  color: #ffb14c;
  text-decoration: underline;
}

.youtube-iframe {
  width: 100%;
  height: 600px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 10px #f76591, 0 0 20px #ffc16f, 0 0 30px #ffb14c;
  }
  100% {
    text-shadow: 0 0 20px #ff764c, 0 0 40px #f76591, 0 0 50px #ff9e9e;
  }
}

@media (max-width: 768px) {
  body {
    text-align: center;
  }

  .player {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  iframe {
    width: 90%;
    height: 400px;
  }
}

/* Home Link Styling */
.home-link {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px 20px;
  border-radius: 5px;
  transition: background 0.3s ease, color 0.3s ease;
}

.home-link:hover {
  background: #ffffff;
}

