/* Player of the Week - standalone styles */
.potw-hero {
  background-color: #0a1128;
  background-image: url('../img/backgrounds/wc-hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0 80px;
}
.potw-hero__breadcrumb {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.potw-hero__title {
  font-size: 28px;
  font-weight: 700;
}
.potw-round {
  font-size: 22px;
  font-weight: 400;
}
.potw-slide__video {
  height: auto;
  aspect-ratio: 3/4;
  background-color: transparent;
}
.potw-slide__video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
}
.potw-slide__play {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.9);
  border: none;
  color: #000;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.2s;
  z-index: 2;
}
.potw-slide__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.potw-slider {
  max-width: 100%;
  margin: 0 auto;
}
.potw-slider .swiper-slide {
  opacity: 0.5;
  transform: scale(0.92);
  transition: opacity 0.3s, transform 0.3s;
}
.potw-slider .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
.potw-hero .container {
  overflow: hidden;
}
.potw-slide__match {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}
.potw-pagination {
  display: flex;
  gap: 6px;
}
.potw-pagination .swiper-pagination-bullet {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
  transition: background-color 0.3s;
}
.potw-pagination .swiper-pagination-bullet-active {
  background-color: #fff;
}
.potw-slider__bottom {
  gap: 20px;
}
.potw-vote-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: #304FFE;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.2s;
  white-space: nowrap;
}
.potw-vote-btn:hover {
  background-color: #1a3fe0;
  color: #fff;
}
/* video modal */
.potw-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.potw-modal.is-open {
  display: flex;
}
.potw-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
}
.potw-modal__content {
  position: relative;
  width: 90%;
  max-width: 800px;
  aspect-ratio: 16/9;
}
.potw-modal__content iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.potw-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}
.potw-content-wrap {
  background-color: #0a1128;
  background-image: url('../img/backgrounds/wc-hero-bg.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
}
.potw-content-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 17, 40, 0.85);
  z-index: 0;
}
.potw-content-wrap > * {
  position: relative;
  z-index: 1;
}
.potw-winners__title {
  font-size: 24px;
  font-weight: 700;
}
.potw-winners__subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.potw-winner-card {
  height: 220px;
}
.potw-winner-card__play {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000;
  font-size: 12px;
}
.potw-winner-card__info {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}
.potw-winner-card__round {
  opacity: 0.7;
}
.potw-winner-card__name {
  font-size: 16px;
  font-weight: 600;
}
.potw-note__text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}
/* vote confirmation modal */
.potw-vote-modal__content {
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  padding: 40px 32px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  z-index: 1;
}
.potw-vote-modal__title {
  font-size: 22px;
  font-weight: 700;
  color: #0a1128;
  margin-bottom: 12px;
}
.potw-vote-modal__text {
  font-size: 15px;
  color: #333;
  margin-bottom: 24px;
}
.potw-vote-modal__btn {
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background-color 0.2s;
}
.potw-vote-modal__btn--confirm {
  background-color: #304FFE;
  color: #fff;
}
.potw-vote-modal__btn--confirm:hover {
  background-color: #1a3fe0;
}
.potw-vote-modal__btn--cancel {
  background-color: #e0e0e0;
  color: #333;
}
.potw-vote-modal__btn--cancel:hover {
  background-color: #ccc;
}
/* votes badge */
.potw-votes-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 6px;
  backdrop-filter: blur(4px);
}
.potw-votes-badge strong {
  font-size: 16px;
  margin-left: 4px;
}
/* disabled vote button */
.potw-vote-btn--disabled {
  background-color: #666;
  color: #ccc;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.6;
}
