/* ===== GMPLY INTERACTIVE MEDIA PLAYER STYLES - playerstyle2.css ===== */

/* === BASE STYLES === */
* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

/* === MAIN PLAYER CONTAINER === */
.vue-media-player {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

/* === LAYOUT MODES === */
/* Bottom Controls Layout (Default) */
.vue-media-player.controls-bottom {
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.vue-media-player.controls-bottom .video-section {
  flex: 1;
  position: relative;
  min-height: 250px;
}

.vue-media-player.controls-bottom .controls-section {
  flex: 0 0 auto;
  height: 80px;
}

/* Right Controls Layout */
.vue-media-player.controls-right {
  display: flex;
  flex-direction: row;
  min-height: 400px;
}

.vue-media-player.controls-right .video-section {
  flex: 1;
  position: relative;
  min-width: 300px;
  height: 100%;
}

.vue-media-player.controls-right .controls-section {
  flex: 0 0 80px;
  width: 80px;
  background: rgba(0, 0, 0, 0.95);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px 8px;
  overflow: hidden;
}

.vue-media-player.controls-right .control-group {
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.vue-media-player.controls-right .control-btn {
  width: 50px;
  height: 50px;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.vue-media-player.controls-right .control-btn.play-pause {
  width: 60px;
  height: 60px;
  font-size: 24px;
  background: rgba(255, 255, 255, 0.15);
}

.vue-media-player.controls-right .time-display {
  font-size: 12px;
  text-align: center;
  min-width: auto;
  width: 60px;
  line-height: 1.2;
  white-space: nowrap;
}

.vue-media-player.controls-right .speed-selector {
  width: 60px;
  font-size: 12px;
  padding: 8px 4px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.vue-media-player.controls-right .volume-container {
  flex-direction: column;
  gap: 8px;
}

/* DESKTOP RIGHT - Volume slider gizle */
.vue-media-player.controls-right .volume-slider {
  display: none;
}

/* === VIDEO SECTION === */
.video-section {
  position: relative;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-element {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  /* iOS specific */
  -webkit-playsinline: true;
  playsinline: true;
  webkit-playsinline: true;
  /* Disable default controls */
  controls: false;
  disablepictureinpicture: true;
  -webkit-touch-callout: none;
  pointer-events: auto;
}

/* Remove default video controls */
.video-element::-webkit-media-controls {
  display: none !important;
}

.video-element::-webkit-media-controls-panel {
  display: none !important;
}

.video-element::-webkit-media-controls-play-button {
  display: none !important;
}

.video-element::-webkit-media-controls-start-playback-button {
  display: none !important;
}

.video-element::-webkit-media-controls-fullscreen-button {
  display: none !important;
}

/* === BRANDING === */
.player-branding {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
  opacity: 0.8;
}

/* === INTERACTIVE OVERLAY === */
.interactive-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  pointer-events: none;
}

.interactive-overlay.active {
  pointer-events: auto;
}

/* === BUTTONS OVERLAY CONTAINER - UPDATED FOR COORDINATE SYSTEM === */
.buttons-overlay {
  position: relative !important; /* absolute yerine relative - koordinat sistemi için */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  padding: 0; /* Padding kaldırıldı - koordinatlar kendisi halledecek */
  background: rgba(0, 0, 0, 0.6);
  overflow: visible; /* hidden yerine visible */
  box-sizing: border-box;
  z-index: 200;
  pointer-events: none !important; /* Container'a tıklamayı engelle */
}

.buttons-overlay.active {
  display: block !important; /* flex yerine block - çocuklar absolute olacak */
  pointer-events: none !important; /* Container tıklanamaz, sadece butonlar */
}

/* === INTERACTIVE BUTTONS - COORDINATE SYSTEM SUPPORT === */
.vue-interactive-button {
  /* Sabit stil özellikleri */
  font-size: clamp(14px, 3vw, 24px);
  padding: clamp(8px, 1.5vh, 20px) clamp(16px, 3vw, 40px);
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  -webkit-tap-highlight-color: transparent;
  text-align: center;
  pointer-events: auto !important; /* Butonlar tıklanabilir */
  touch-action: manipulation;
  min-height: 44px;
  min-width: 120px;
  font-weight: 500;
  border: 2px solid rgba(255, 255, 255, 0.2);

  /* Koordinat sistemi için default fallback */
  display: inline-block;
  white-space: nowrap;
  width: auto; /* Metne göre genişle */
}

/* Koordinat sistemi hover/touch efektleri */
.vue-interactive-button:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* === INTERACTIVE TEXT - COORDINATE SYSTEM SUPPORT === */
.vue-interactive-text {
  /* Sabit stil özellikleri */
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: clamp(8px, 1vh, 16px) clamp(12px, 2vw, 24px);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto !important; /* Text elementleri tıklanabilir */
  touch-action: manipulation;
  min-height: 44px;
  min-width: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto; /* Metne göre genişle */
  text-align: center;
  font-size: clamp(12px, 2.5vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -webkit-tap-highlight-color: transparent;

  /* Koordinat sistemi için default fallback */
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

/* Koordinat sistemi hover/touch efektleri */
.vue-interactive-text:hover {
  background: rgba(0, 0, 0, 0.9);
  text-decoration: underline;
  transform: scale(1.02) !important;
}

/* === INTERACTIVE AREAS === */
.vue-interactive-area {
  position: absolute;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  pointer-events: auto;
  touch-action: manipulation;
  z-index: 60;
  -webkit-tap-highlight-color: transparent;
}

.vue-interactive-area:hover {
  background: rgba(255, 255, 255, 0.1);
}

.vue-interactive-area:active {
  background: rgba(255, 255, 255, 0.2);
}

/* === MESSAGE BOX === */
.message-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.message-box {
  background: rgba(20, 20, 20, 0.95);
  color: white;
  padding: 24px 32px;
  border-radius: 16px;
  max-width: 80%;
  max-height: 80%;
  overflow-y: auto;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.message-box h3 {
  margin: 0 0 16px 0;
  font-size: 18px;
  font-weight: 600;
}

.message-box p {
  margin: 0 0 20px 0;
  line-height: 1.5;
  font-size: 14px;
}

.message-close-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  min-width: 80px;
}

.message-close-btn:hover,
.message-close-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* === CONTROLS SECTION === */
.controls-section {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.95) 100%);
  color: white;
  padding: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Bottom Controls Layout */
.controls-bottom .controls-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Right Controls Layout */
.controls-right .controls-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 8px;
  max-height: 100vh;
  overflow: hidden;
}

/* === CONTROL ELEMENTS === */
.control-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.controls-right .control-group {
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.controls-right .control-btn {
  width: 36px;
  height: 36px;
  font-size: 16px;
}

.controls-right .control-btn.play-pause {
  width: 44px;
  height: 44px;
  font-size: 18px;
}

.control-btn {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  -webkit-tap-highlight-color: transparent;
}

.control-btn:hover,
.control-btn:active {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.control-btn.play-pause {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.control-btn i {
  font-size: 18px;
}

.control-btn.play-pause i {
  font-size: 20px;
}

/* === PROGRESS BAR === */
.progress-container {
  flex: 1;
  margin: 0 16px;
  position: relative;
}

/* Right Controls - Remove Progress Bar */
.controls-right .progress-container {
  display: none;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.progress-bar.non-seekable {
  cursor: default;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 3px;
  transition: width 0.1s ease;
  position: relative;
}

.progress-thumb {
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.progress-bar:hover .progress-thumb,
.progress-bar.seeking .progress-thumb {
  opacity: 1;
}

/* === TIME DISPLAY === */
.time-display {
  font-size: 12px;
  font-weight: 500;
  min-width: 80px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.controls-right .time-display {
  writing-mode: initial;
  text-orientation: initial;
  min-width: auto;
  min-height: auto;
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
  width: 64px;
}

/* === VOLUME CONTROL === */
.volume-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.controls-right .volume-container {
  flex-direction: column;
}

.volume-slider {
  width: 60px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.controls-right .volume-slider {
  writing-mode: bt-lr;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  width: 4px;
  height: 60px;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

/* === SPEED CONTROL === */
.speed-selector {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 90px;
  cursor: pointer;
  outline: none;
}

.controls-right .speed-selector {
  font-size: 90px;
  padding: 6px 8px;
  width: 64px;
  text-align: center;
}

.speed-selector:hover,
.speed-selector:focus {
  background: rgba(255, 255, 255, 0.2);
}

.speed-selector option {
  background: #222;
  color: white;
}

/* Hide fullscreen button in right mode */
.controls-right .fullscreen-control {
  display: none;
}

/* === FULLSCREEN STYLES === */
.vue-media-player.fullscreen {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  z-index: 2147483647 !important;
  border-radius: 0 !important;
  margin: 0 !important;
}

.vue-media-player.fullscreen.controls-right {
  flex-direction: column !important;
}

.vue-media-player.fullscreen.controls-right .video-section {
  flex: 1 !important;
}

.vue-media-player.fullscreen.controls-right .controls-section {
  flex: 0 0 80px !important;
  width: 100% !important;
  height: 80px !important;
}

.vue-media-player.fullscreen .controls-right .control-group {
  flex-direction: row !important;
}

.vue-media-player.fullscreen .controls-right .progress-container {
  writing-mode: initial !important;
  transform: none !important;
  height: 6px !important;
  width: auto !important;
  flex: 1 !important;
  margin: 0 16px !important;
}

.vue-media-player.fullscreen .controls-right .time-display {
  writing-mode: initial !important;
  text-orientation: initial !important;
  min-height: auto !important;
  min-width: 80px !important;
  text-align: right !important;
}

.vue-media-player.fullscreen .controls-right .volume-slider {
  writing-mode: initial !important;
  transform: none !important;
  width: 60px !important;
  height: 4px !important;
}

.vue-media-player.fullscreen .controls-right .volume-container {
  flex-direction: row !important;
}

/* === MOBILE TOUCH FEEDBACK === */
@media (max-width: 768px) {
  .vue-interactive-button:active,
  .vue-interactive-text:active {
    transform: scale(0.95) !important;
    transition: transform 0.1s ease !important;
  }

  /* Mobilde minimum touch target boyutları */
  .vue-interactive-button {
    min-height: 48px !important;
  }

  .vue-interactive-text {
    min-height: 48px !important;
  }
}

/* === RESPONSIVE DESIGN === */

/* Mobile Portrait - Force bottom controls */
@media screen and (max-width: 768px) and (orientation: portrait) {
  /* Mobil Portrait için özel responsive boyutlandırma */
  .vue-interactive-button,
  .vue-interactive-text {
    width: min(30vw, 150px) !important;
    min-width: unset !important;
  }
  .vue-media-player.controls-right {
    flex-direction: column !important;
  }

  .vue-media-player.controls-right .video-section {
    flex: 1 !important;
  }

  .vue-media-player.controls-right .controls-section {
    flex: 0 0 70px !important;
    width: 100% !important;
    height: 70px !important;
  }

  /* Mobile Portrait Bottom Layout FIX */
  .vue-media-player.controls-bottom .controls-section,
  .vue-media-player.controls-right .controls-section {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    padding: 12px 16px !important;
    height: 70px !important;
  }

  .controls-right .control-group,
  .controls-bottom .control-group {
    flex-direction: row !important;
    gap: 6px !important;
  }

  .controls-right .time-display,
  .controls-bottom .time-display {
    writing-mode: initial !important;
    text-orientation: initial !important;
    min-height: auto !important;
    min-width: 60px !important;
    text-align: center !important;
    font-size: 11px !important;
  }

  .controls-right .volume-container,
  .controls-bottom .volume-container {
    flex-direction: row !important;
  }

  .control-btn {
    width: 36px !important;
    height: 36px !important;
  }

  .control-btn.play-pause {
    width: 40px !important;
    height: 40px !important;
  }

  .control-btn i {
    font-size: 14px !important;
  }

  /* Volume slider gizle mobile portrait'te */
  .volume-slider {
    display: none !important;
  }

  /* Progress bar gizle mobile portrait'te */
  .progress-container {
    display: none !important;
  }

  /* Speed selector mobile için */
  .speed-selector {
    font-size: 10px !important;
    padding: 4px 6px !important;
    min-width: 45px !important;
    background: rgba(255, 255, 255, 0.8) !important;
    color: #333 !important;
    border-radius: 20px !important;
  }

  /* Interactive button adjustments */
  .vue-interactive-button {
    width: 30% !important;
    height: 8% !important;
    font-size: 12px !important;
  }

  .vue-interactive-text {
    width: 25% !important;
    height: 6% !important;
    font-size: 11px !important;
  }
}

/* Mobile Landscape - sadece landscape */
@media screen and (max-width: 896px) and (orientation: landscape) {
  .control-btn {
    width: 32px !important;
    height: 32px !important;
  }

  .control-btn.play-pause {
    width: 38px !important;
    height: 38px !important;
  }

  .control-btn i {
    font-size: 14px !important;
  }

  .controls-section {
    padding: 8px 12px !important;
  }

  .vue-interactive-button {
    width: min(25vw, 120px) !important;
    font-size: 14px !important;
    padding: 8px 16px !important;
    min-height: 44px !important;
  }

  .vue-interactive-text {
    font-size: 12px !important;
    padding: 8px 16px !important;
    min-height: 44px !important;
  }
}

/* Small screens - landscape only */
@media screen and (max-width: 480px) and (orientation: landscape) {
  .vue-media-player {
    border-radius: 8px !important;
  }

  .time-display {
    font-size: 11px !important;
    min-width: 60px !important;
  }

  .speed-selector {
    font-size: 10px !important;
    padding: 4px 6px !important;
  }

  .volume-slider {
    width: 40px !important;
  }

  .vue-interactive-button {
    width: min(90vw, 280px) !important;
    font-size: 14px !important;
    padding: 10px 20px !important;
  }

  .vue-interactive-text {
    font-size: 13px !important;
    padding: 8px 16px !important;
  }
}

/* Short screens (landscape mobile) */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .vue-interactive-button {
    width: 180px !important;
    font-size: 12px !important;
    padding: 6px 12px !important;
    min-height: 40px !important;
  }

  .vue-interactive-text {
    font-size: 11px !important;
    padding: 6px 12px !important;
    min-height: 40px !important;
  }
}

/* Mobile landscape video fix */
@media screen and (orientation: landscape) and (max-width: 896px) {
  .vue-media-player .video-element {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
  }
}

/* === LOADING STATE === */
.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 150;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Mobile Portrait - SADECE KÜÇÜK EKRANLAR */
@media screen and (max-width: 480px) and (orientation: portrait) {
  /* BUTTON LAYOUT FIX - SADECE KÜÇÜK MOBİL EKRANLARDA */
  .vue-interactive-button,
  .vue-interactive-text {
    width: auto !important; /* Metne göre genişle */
    min-width: 60px !important; /* Minimum genişlik azaltıldı */
    font-size: 12px !important; /* Font boyutu küçültüldü */
    padding: 8px 12px !important; /* Padding küçültüldü */
    white-space: nowrap !important; /* Metni tek satırda tut */
    max-width: 40vw !important; /* Maksimum genişlik sınırı */
  }

  /* PLAYER LAYOUT - SADECE KÜÇÜK MOBİL EKRANLARDA */
  .vue-media-player.controls-right {
    flex-direction: column !important;
  }

  .vue-media-player.controls-right .video-section {
    flex: 1 !important;
  }

  .vue-media-player.controls-right .controls-section {
    flex: 0 0 70px !important;
    width: 100% !important;
    height: 70px !important;
  }

  /* Mobile Portrait Bottom Layout FIX */
  .vue-media-player.controls-bottom .controls-section,
  .vue-media-player.controls-right .controls-section {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    padding: 12px 16px !important;
    height: 70px !important;
  }

  .controls-right .control-group,
  .controls-bottom .control-group {
    flex-direction: row !important;
    gap: 6px !important;
  }
}

/* Desktop Responsive - 769px ve üzeri için büyük button'lar - JSON OVERRIDE */
@media screen and (min-width: 769px) {
  .vue-interactive-button {
    font-size: clamp(14px, 2vw, 18px) !important; /* Desktop için optimum font */
    padding: clamp(16px, 3vh, 32px) clamp(24px, 5vw, 60px) !important; /* Fullscreen gibi büyük padding */
    min-width: 180px !important; /* Fullscreen gibi büyük minimum genişlik */
    width: auto !important; /* JSON'dan gelen width override et */
    height: auto !important; /* JSON'dan gelen height override et */
    white-space: nowrap !important; /* Tek satırda kal */
    max-width: 400px !important; /* Maksimum genişlik ekle */
  }
  
  .vue-interactive-text {
    font-size: clamp(12px, 1.8vw, 16px) !important; /* Desktop için optimum font */
    padding: clamp(14px, 2.5vh, 28px) clamp(20px, 4vw, 50px) !important; /* Fullscreen gibi büyük padding */
    min-width: 160px !important; /* Fullscreen gibi büyük minimum genişlik */
    width: auto !important; /* JSON'dan gelen width override et */
    height: auto !important; /* JSON'dan gelen height override et */
    white-space: nowrap !important; /* Tek satırda kal */
    max-width: 350px !important; /* Maksimum genişlik ekle */
  }
}

/* FULLSCREEN MODE - EN BÜYÜK BUTTON'LAR - METNE GÖRE GENİŞLE */
.vue-media-player.fullscreen .vue-interactive-button {
  font-size: clamp(20px, 3vw, 36px) !important; /* Çok büyük font */
  padding: clamp(16px, 3vh, 32px) clamp(24px, 5vw, 60px) !important; /* Çok büyük padding */
  min-width: 180px !important; /* Çok büyük minimum genişlik */
  width: auto !important; /* Metne göre genişle */
  white-space: nowrap !important; /* Tek satırda kal */
}

.vue-media-player.fullscreen .vue-interactive-text {
  font-size: clamp(18px, 2.5vw, 30px) !important; /* Çok büyük font */
  padding: clamp(14px, 2.5vh, 28px) clamp(20px, 4vw, 50px) !important; /* Çok büyük padding */
  min-width: 160px !important; /* Çok büyük minimum genişlik */
  width: auto !important; /* Metne göre genişle */
  white-space: nowrap !important; /* Tek satırda kal */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* === TRANSITIONS === */
.fade-enter-active, .fade-leave-active {
  transition: opacity 0.3s ease;
}

.fade-enter-from, .fade-leave-to {
  opacity: 0;
}

.slide-up-enter-active, .slide-up-leave-active {
  transition: all 0.3s ease;
}

.slide-up-enter-from, .slide-up-leave-to {
  opacity: 0;
  transform: translateY(20px);
}

/* === ACCESSIBILITY === */
.control-btn:focus,
.vue-interactive-button:focus,
.vue-interactive-text:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}

/* BUTON TIKLANMA SORUNU - ACIL FIX */
.interactive-overlay {
  pointer-events: auto !important;
  z-index: 100 !important;
}

.buttons-overlay {
  pointer-events: auto !important; /* none yerine auto */
  z-index: 200 !important;
}

.vue-interactive-button,
.vue-interactive-text {
  pointer-events: auto !important;
  cursor: pointer !important;
  z-index: 1001 !important;
  position: absolute !important;
}

/* Video element'in üste çıkmasını engelle */
.video-element {
  z-index: 1 !important;
}

.video-section {
  z-index: 1 !important;
}