/* .anime-hero {
  position: relative;
}

.anime-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
} */

.watch-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 18px;
  border: none;
  border-radius: 8px;

  background: #f47521;
  color: white;
  font-weight: 600;
  font-size: 14px;

  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ff7a18;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.watch-btn img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.watch-btn:hover {
  background: #ff8a3d;
  transform: scale(1.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 122, 24, 0.4);
}




.buttons button {
  margin-right: 10px;
}

.buttons button:nth-child(2) {
  background: #2b2b2b;
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.buttons button:nth-child(2):hover {
  background: #444;
}
.trailer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}

.trailer-btn:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.05);
}
.trailer-content {
  position: relative;  
  width: 80%;
  max-width: 900px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
}
.close-btn {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 24px;
  color: white;
  cursor: pointer;
  z-index: 10;
  background: rgba(0,0,0,0.6);
  padding: 6px 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.close-btn:hover {
  background: rgba(0,0,0,0.9);
  transform: scale(1.1);
}
.trailer-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);

  z-index: 999;
  /* border: 2px solid red; */
}

.hidden {
  display: none;
}
.trailer-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.trailer-content {
  width: 90%;
  max-width: 900px;
}

iframe {
  width: 100%;
  height: 50vh;
}

@media (max-width: 768px) {
  .trailer-content {
  width: 95%;
  max-width: 500px;
  border-radius: 12px;
}

iframe {
  width: 100%;
  height: 220px;
}
}


