/* Skip butonu - Universal CSS (Web & Mobile) */
#universalSkipBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
  color: white;
  border: none;
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(0, 255, 0, 0.4), 0 0 20px rgba(0, 255, 0, 0.2);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  -webkit-user-select: none;
  user-select: none;
  text-decoration: none;
  position: relative;
  z-index: 100;
  min-width: 140px;
  height: 48px;
  margin: 0 5px;
  white-space: nowrap;
}

#universalSkipBtn:hover {
  background: linear-gradient(135deg, #00cc00 0%, #00ff00 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 0, 0.6), 0 0 30px rgba(0, 255, 0, 0.3);
}

#universalSkipBtn:active {
  background: linear-gradient(135deg, #009900 0%, #00cc00 100%);
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 255, 0, 0.4), 0 0 15px rgba(0, 255, 0, 0.2);
}

#universalSkipBtn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  background: #cccccc;
}

#universalSkipBtn .skip-icon {
  font-size: 18px;
  line-height: 1;
  margin-right: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#universalSkipBtn .skip-icon svg {
  width: 22.5px; /* 18px + %25 = 22.5px */
  height: 22.5px; /* 18px + %25 = 22.5px */
  fill: #ff0000; /* Kırmızı renk */
}

#universalSkipBtn .skip-text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

/* WEB GÖRÜNÜM - Desktop/Tablet */
@media (min-width: 768px) {
  /* Web kontrol panelindeki skip butonu */
  .web-all-controls #universalSkipBtn {
    background: linear-gradient(135deg, #00ff00 0%, #00cc00 100%);
    min-width: 40px;
    height: 40px;
    width: 40px;
    font-size: 16px;
    padding: 0;
    margin: 0 5px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 255, 0, 0.4), 0 0 20px rgba(0, 255, 0, 0.2);
  }

  .web-all-controls #universalSkipBtn:hover {
    background: linear-gradient(135deg, #00cc00 0%, #00ff00 100%);
    box-shadow: 0 6px 20px rgba(0, 255, 0, 0.6), 0 0 30px rgba(0, 255, 0, 0.3);
  }

  .web-all-controls #universalSkipBtn .skip-icon {
    font-size: 16px;
    margin-right: 0;
  }

  .web-all-controls #universalSkipBtn .skip-icon svg {
    width: 20px; /* 16px + %25 = 20px */
    height: 20px; /* 16px + %25 = 20px */
    fill: #ff0000; /* Kırmızı renk */
  }

  .web-all-controls #universalSkipBtn .skip-text {
    display: none !important;
  }
}

/* MOBİL GÖRÜNÜM - Phone (YILDIZ BUTONU İLE AYNI) */
@media (max-width: 767px) and (hover: none) and (pointer: coarse) {
  /* Web kontrol panelindeki buton gizli */
  .web-all-controls #universalSkipBtn,
  #universalSkipBtn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    z-index: -9999 !important;
  }
  
  /* Mobil overlay skip butonu - YILDIZ BUTONU İLE AYNI */
  #mobileSkipBtn,
  .universal-skip-btn {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    font-size: 14px !important;
    padding: 0 !important;
    margin: 0 !important;
    /* display, visibility, opacity, pointer-events JavaScript tarafından kontrol edilecek */
    position: relative !important;
    z-index: 100005 !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 1px 4px rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    aspect-ratio: 1/1 !important;
    flex-shrink: 0 !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    touch-action: manipulation !important;
  }
  
  #mobileSkipBtn:hover,
  .universal-skip-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 2px 6px rgba(255, 255, 255, 0.15) !important;
  }
  
  #mobileSkipBtn:active,
  .universal-skip-btn:active {
    transform: scale(0.95) !important;
  }
  
  #mobileSkipBtn .skip-icon,
  .universal-skip-btn .skip-icon {
    font-size: 14px !important;
    margin-right: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
  }
  
  #mobileSkipBtn .skip-icon svg,
  .universal-skip-btn .skip-icon svg {
    width: 20px !important; /* 16px + %25 = 20px */
    height: 20px !important; /* 16px + %25 = 20px */
    fill: #00ff00 !important; /* Neon Yeşil */
  }
  
  #mobileSkipBtn .skip-text,
  .universal-skip-btn .skip-text {
    display: none !important;
  }

  /* Mobil butonların SVG renkleri */
  #overlayRequestSongBtn svg {
    fill: #ff0000 !important; /* Neon Kırmızısı */
  }
  
  #overlaySongHistoryBtn svg {
    fill: #ff8c00 !important; /* Turuncu */
  }
  
  #overlayAutoPlaylistBtn svg {
    fill: #ffffff !important; /* Beyaz */
  }
  
  #overlayBlacklistBtn svg {
    fill: #ff69b4 !important; /* Pembe */
  }
  
  #overlayToggleBtn svg {
    fill: #0066cc !important; /* Mavi */
  }
  
  #overlayVolumeDownBtn svg {
    fill: #ff6b6b !important; /* Açık Kırmızı */
  }
  
  #overlayVolumeUpBtn svg {
    fill: #74b9ff !important; /* Açık Mavi */
  }
  
  /* Ses Aç/Kapat ve Ses Seviyesi değişmeyecek */
}

 