body {
  overflow-x: hidden !important;
}

.box-player {
  height: 100%;
  width: 100%;
  max-width: 100%;
  padding: 100px 0 0;
}
.container {
  padding: 0 50px;
  width: 100%;
  margin: auto;
}

.info-movie {
  display: flex;
  align-items: center;
  gap: 50px;
  border: none !important;
  padding: 20px 20px 40px;
}
.info-movie .image h2 {
  font-size: 30px;
  text-align: center;
}
.info-movie .image img {
  width: 350px;
  height: 450px;
  border: 1px solid var(--second-backColor);
  border-radius: 15px;
  margin-top: 10px;
}
.info-movie .box-info p {
  padding-bottom: 15px;
  line-height: 1.6;
}
.info-movie .box-info strong {
  font-size: 20px;
  color: #fff;
  margin-right: 5px;
}
.info-movie .box-info p span {
  color: #ccc;
}
/* ==================== RESPONSIVE BANNER STYLES ==================== */
/* Tablet and small desktop */
@media (max-width: 1024px) {
  .container {
    padding: 0 30px;
  }
  
  .info-movie {
    gap: 30px;
    padding: 15px 15px 30px;
  }
  
  .info-movie .image img {
    width: 280px;
    height: 360px;
  }
  
  .info-movie .box-info {
    width: 350px;
  }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
  .box-player {
    padding: 80px 0 0;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .info-movie {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 12px 12px 25px;
  }
  
  .info-movie .image img {
    width: 240px;
    height: 320px;
  }
  
  .info-movie .box-info {
    width: 100%;
    max-width: 400px;
  }
  
  .info-movie .box-info strong {
    font-size: 18px;
  }
  
  #player-buttons {
    margin-left: 0;
    margin-bottom: 20px;
    text-align: center;
  }
  
  #player-buttons button {
    margin-right: 20px;
    width: 80px;
    padding: 8px 0;
    font-size: 16px;
  }
  
  #player {
    width: 96%;
    height: 300px;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .box-player {
    padding: 70px 0 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .info-movie {
    gap: 15px;
    padding: 10px 10px 20px;
  }
  
  .info-movie .image h2 {
    font-size: 24px;
  }
  
  .info-movie .image img {
    width: 200px;
    height: 280px;
    border-radius: 12px;
  }
  
  .info-movie .box-info {
    width: 100%;
    max-width: 320px;
  }
  
  .info-movie .box-info strong {
    font-size: 16px;
  }
  
  .info-movie .box-info p {
    padding-bottom: 12px;
    font-size: 14px;
  }
  
  #player-buttons {
    margin-bottom: 15px;
  }
  
  #player-buttons button {
    margin-right: 15px;
    width: 70px;
    padding: 6px 0;
    font-size: 14px;
    border-radius: 8px;
  }
  
  #player {
    width: 98%;
    height: 250px;
    border-radius: 15px;
  }
}

/* Very small screens */
@media (max-width: 360px) {
  .box-player {
    padding: 65px 0 0;
  }
  
  .container {
    padding: 0 10px;
  }
  
  .info-movie {
    gap: 12px;
    padding: 8px 8px 15px;
  }
  
  .info-movie .image h2 {
    font-size: 20px;
  }
  
  .info-movie .image img {
    width: 160px;
    height: 240px;
    border-radius: 10px;
  }
  
  .info-movie .box-info {
    width: 100%;
    max-width: 280px;
  }
  
  .info-movie .box-info strong {
    font-size: 14px;
  }
  
  .info-movie .box-info p {
    padding-bottom: 10px;
    font-size: 13px;
  }
  
  #player-buttons {
    margin-bottom: 12px;
  }
  
  #player-buttons button {
    margin-right: 10px;
    width: 60px;
    padding: 5px 0;
    font-size: 12px;
    border-radius: 6px;
  }
  
  #player {
    width: 100%;
    height: 200px;
    border-radius: 12px;
  }
}
.info-movie .box-info {
  max-width: 100%;
  width: 400px;
}

#player-buttons {
  margin-left: 100px;
  margin-bottom: 30px;
}

#player-buttons button {
  margin-right: 40px;
  width: 100px;
  padding: 10px 0;
  text-align: center;
  border: none;
  background: linear-gradient(135deg, var(--primary, #adff2f), var(--primary-dark, #9bec28));
  font-weight: 700;
  border-radius: 999px;
  color: #0b0b0b;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(173,255,47,0.22);
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s, color 0.3s;
}

#player-buttons button:hover {
  background: linear-gradient(135deg, var(--primary-dark, #9bec28), var(--primary, #adff2f));
  color: #000;
  box-shadow: 0 10px 28px rgba(173,255,47,0.35);
  transform: translateY(-2px);
}

#player-buttons button.active {
  background: linear-gradient(135deg, var(--primary-dark, #9bec28), var(--primary, #adff2f));
  color: #000;
}

#player {
  width: 94%;
  height: 450px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(173,255,47,0.12);
  margin: auto;
  border-radius: 20px;
}
.main-suggestions {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(173,255,47,0.18);
  padding: 10px;
  margin-top: 50px;
  border-radius: 28px;
  padding-bottom: 30px;
  margin-bottom: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}
.main-suggestions h3 {
  text-transform: capitalize;
  margin: 40px;
  margin-bottom: 15px;
  letter-spacing: 1px;
  font-size: 25px;
  transform: scaleY(1.1);
  text-decoration: underline;
}
#suggestions {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex: 1;
}
#suggestions .suggestion-item {
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
  width: 180px;
  text-align: center;
  margin: 15px 0;
  padding: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(173,255,47,0.14);
}

#suggestions .suggestion-item:hover {
  background: rgba(173,255,47,0.12);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  color: #fff;
}
#suggestions .suggestion-item img {
  border-radius: 10px;
}
#suggestions .suggestion-item p {
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 5px;
}
@media (max-width: 767px) {
  #suggestions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  #suggestions .suggestion-item p {
    font-size: 16px;
  }
}
.player-btn, .btn-player, .btn-watch, .btn-source, .btn-episode, .btn-next, .btn-prev {
    background: linear-gradient(135deg, #ff9800, #e65100);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.7rem 2.2rem 0.7rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(255, 152, 0, 0.15);
    cursor: pointer;
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
    outline: none;
    display: inline-flex;
    align-items: center;
    gap: 0.7em;
}
.player-btn i, .btn-player i, .btn-watch i, .btn-source i, .btn-episode i, .btn-next i, .btn-prev i {
    font-size: 1.2em;
    margin-right: 0.3em;
}
.player-btn:hover, .btn-player:hover, .btn-watch:hover, .btn-source:hover, .btn-episode:hover, .btn-next:hover, .btn-prev:hover {
    background: linear-gradient(135deg, #ffc947, #ff9800);
    color: #fff;
    box-shadow: 0 8px 32px rgba(255, 152, 0, 0.25);
    transform: translateY(-2px) scale(1.04);
}
