/* ========================================
   VIDEO PLAYER
   Landscape phone video player with controls
   ======================================== */

/* ==================== VIDEO PLAYER - LANDSCAPE PHONE ==================== */

.video-player {
  width: 650px;
  height: 298px;
  background: linear-gradient(145deg, #4a4a4c, #6a6a6c);
  border-radius: 50px;
  padding: 8px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 2px rgba(255, 255, 255, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.4), inset 0 -1px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: rotate(0deg);
  margin: 0 auto;
}

/* Video Section - Gray/Blue Shadow */
.video-section .video-player:hover {
  transform: translateY(-15px) scale(1.02) !important;
  box-shadow: 0 50px 100px rgba(44, 62, 80, 0.7),
    0 30px 60px rgba(52, 73, 94, 0.6),
    0 0 0 2px rgba(255, 255, 255, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.3);
}

/* Side Buttons - Landscape Position */
.video-player .side-buttons {
  position: absolute;
  z-index: 10;
}

/* TOP SIDE - volume buttons */
.video-player .left-side {
  top: 297px;
  left: 80px;
  display: flex;
  flex-direction: row;
  gap: 12px;
}

/* RIGHT SIDE - power button */
.video-player .right-side {
  left: 90px;
  top: 0%;
  transform: translateY(-50%);
}

.video-player .silent-switch,
.video-player .volume-up,
.video-player .volume-down {
  width: 28px;
  height: 3px;
  background: linear-gradient(180deg, #4a4a4c, #5a5a5c);
  border-radius: 1.5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.1),
    inset 0 -0.5px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  opacity: 0.65;
}

.video-player .silent-switch::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 0.2px;
  width: 12px;
  height: 2.6px;
  background: #ff6b35;
  border-radius: 1px;
  opacity: 0.6;
}

.video-player .volume-up,
.video-player .volume-down {
  width: 35px;
}

.video-player .power-button {
  width: 55px;
  height: 3px;
  background: linear-gradient(180deg, #4a4a4c, #5a5a5c);
  border-radius: 1.5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3),
    inset 0 0.5px 0 rgba(255, 255, 255, 0.1),
    inset 0 -0.5px 0 rgba(0, 0, 0, 0.1);
  opacity: 0.65;
}

/* Video Thumbnail */
.video-thumbnail {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 42px;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.8);
}

.thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 42px;
}

/* Video Overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 42px;
  transition: all 0.3s ease;
}

.video-overlay:hover {
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

/* Play Button */
.play-button-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button-large:hover {
  transform: scale(1.1);
}

.play-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  transition: all 0.3s ease;
  position: relative;
}

.play-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.play-button-large:hover .play-icon::before {
  opacity: 1;
}

.play-icon i {
  position: relative;
  z-index: 1;
  margin-left: 3px;
}

.play-text {
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Video Info */
.video-info {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.video-duration,
.video-quality {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.video-quality {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

/* Video Container Dynamic */
.video-container-dynamic {
  width: 100%;
  height: 100%;
  border-radius: 42px;
  overflow: hidden;
}

.promotional-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 42px;
}

/* Video CTA */
.video-cta {
  text-align: center;
  margin-top: 20px;
  color: white;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 25px;
  opacity: 0.9;
  font-weight: 500;
}

.cta-button {
  display: inline-block;
  padding: 10px 25px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}
