.watch-page *{font-size:14px}.watch-page h1{font-size:28px!important}
.scrollbar-hide::-webkit-scrollbar{display:none}
.scrollbar-hide{-ms-overflow-style:none; scrollbar-width:none}

/* --- เริ่มต้น CSS ปุ่ม Play Modern --- */
.play-btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out;
}
.play-btn-wrap:hover {
  transform: scale(1.1);
}
.play-btn-circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: all 0.3s;
}
.play-btn-wrap:hover .play-btn-circle {
  background-color: #dc2626; /* สีแดง */
  border-color: #ef4444;
  box-shadow: 0 0 30px rgba(220, 38, 38, 0.8);
}
.play-btn-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: playPing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes playPing {
  75%, 100% { transform: scale(1.5); opacity: 0; }
}
.play-btn-icon {
  width: 40px;
  height: 40px;
  color: #fff;
  margin-left: 8px; /* ขยับให้สามเหลี่ยมอยู่ตรงกลางพอดี */
  transition: transform 0.3s;
}
.play-btn-wrap:hover .play-btn-icon {
  transform: scale(1.1);
}
.play-btn-text {
  margin-top: 16px;
  padding: 6px 20px;
  border-radius: 9999px;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}
.play-btn-wrap:hover .play-btn-text {
  background-color: #dc2626;
  border-color: #ef4444;
}
/* --- สิ้นสุด CSS ปุ่ม Play Modern --- */
