/* Body Styles - Full-page blur with background fill */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #ffffff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  backdrop-filter: blur(30px); /* Stronger blur effect for the entire page */
  background-color: rgba(0, 0, 0, 0.7); /* Subtle overlay for better contrast */
  height: 100%; /* Full-page height */
  width: 100%; /* Full-page width */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-x: hidden;
}

/* Poster Styling - Center and refine */
#poster {
  display: block;
  max-width: 300px;
  height: auto;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.8); /* Shadow for better visibility */
  transition: transform 0.3s, box-shadow 0.3s;
}

#poster:hover {
  transform: scale(1.05); /* Slight zoom effect on hover */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 1);
}

/* Title styling */
h1 {
  text-align: center;
  font-size: 2.5rem;
  margin: 20px 0;
}

/* Stats section styling */
.stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.icon {
  display: flex;
  align-items: center;
  gap: 5px;
}

.icon i {
  color: #ffcc00;
}

/* Buttons styling */
.buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-watch {
  background-color: #6a5acd;
  color: white;
  text-decoration: none;
}

.btn-watch:hover {
  background-color: #7b68ee;
}

.btn-bookmark {
  background-color: #444444;
  color: white;
}

.btn-bookmark:hover {
  background-color: #666666;
}

/* Description container adjustments */
.description-text {
  max-width: 90%;
  margin: 0 auto 20px;
  text-align: center;
  line-height: 1.6;
  font-size: 1rem;
}

.read-toggle {
  color: #cccccc;
  font-weight: bold;
  cursor: pointer;
}

/* More info section styling */
.more-info {
  max-width: 90%;
  margin: 20px auto;
  padding: 15px;
  line-height: 1.8;
  font-size: 1rem;
}

.more-info div {
  margin-bottom: 15px;
}

.more-info span:first-child {
  font-weight: bold;
  color: #cccccc;
  }
  
