/* Copyright 2023 by Wolf Carls D´ */
/* Upgrade 2024/2025 by Wolf Carls D´ (NO USE !) */
/* Upgrade 2026 Vr COMPACT by Wolf Carls D´ (NO USE !) */

:root {
  --wg-player2026-gold: #d4af37;
  --wg-player2026-glow: rgba(212,175,55,0.55);
  --wg-player2026-red: #c8102e;
  --wg-player2026-orange: #f58220;
  --wg-player2026-yellow: #ffd200;
  --wg-player2026-shine: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
}

#wg-player2026-overlay {
  position: fixed;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 480px;
  padding: 12px 18px;
  border-radius: 18px;
  background: linear-gradient(90deg,#000,#0a0502 45%,#120a03);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
  box-shadow: 0 15px 40px #000,0 5px 15px rgba(212,175,55,0.12);
  opacity: 0;
  transition: opacity .45s, transform .45s;
  overflow: hidden;
}

#wg-player2026-overlay.active{
  display:flex;
  opacity:1;
  transform:translateX(-50%) scale(1);
}

#wg-player2026-overlay *{
  position:relative;
  z-index:10;
}

/* tamanho do play/pause */
.wg-player2026-play {
  width: 25px;
  height: 25px;
  position: relative;
  border-radius: 50%;
}


.wg-player2026-play img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transition: opacity .35s;
  object-fit: contain;
}

.wg-player2026-play .wg-player2026-gif { opacity: 0; }

.wg-player2026-play::before,
.wg-player2026-play::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  filter: blur(1px) brightness(1.05);
}

.wg-player2026-play::before {
  inset: -3px;
  border: 2px solid var(--wg-player2026-gold);
  box-shadow: 0 0 10px var(--wg-player2026-glow), inset 0 0 6px rgba(255,215,0,0.25);
}

.wg-player2026-play::after {
  inset: -8px;
  border: 1px solid rgba(212,175,55,0.55);
  box-shadow: 0 0 18px rgba(212,175,55,0.35);
}

/* ESPAÇO ENTRE BOTÕES TAMANHO DOS CONTROLES GAP */
.wg-player2026-controls {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 6px;
}

/* TAMANHO DOS BOTÕES CONTROLES */
.wg-player2026-controls button {
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.wg-player2026-controls button:hover {
  transform: scale(1.15);
  color: var(--wg-player2026-gold);
}

.wg-player2026-controls button:disabled {
  opacity: 0.4;
  pointer-events: none;
}



#wg-player2026-overlay.playing .wg-player2026-play::before {
  animation: wg-player2026-pulse-in 2.4s ease-in-out infinite;
  opacity: 1;
}

#wg-player2026-overlay.playing .wg-player2026-play::after {
  animation: wg-player2026-pulse-out 3s ease-in-out infinite;
  opacity: 1;
}

#wg-player2026-overlay:not(.playing) .wg-player2026-play::before,
#wg-player2026-overlay:not(.playing) .wg-player2026-play::after {
  animation: none;
  opacity: 0;
}

@keyframes wg-player2026-pulse-in {
  0%,100% { transform: scale(1); opacity: .55; }
  50% { transform: scale(1.15); opacity: .85; }
}

@keyframes wg-player2026-pulse-out {
  0%,100% { transform: scale(1); opacity: .25; }
  50% { transform: scale(1.20); opacity: .55; }
}

#wg-player2026-title {
  font-size: 0.95rem;
  color: var(--wg-player2026-gold);
  font-weight: 500;
  text-align:center;
}

#wg-player2026-progress-container {
  height: 4px;
  background: rgba(255,255,255,.08);
  border-radius: 5px;
  cursor: pointer;
}

#wg-player2026-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--wg-player2026-red), var(--wg-player2026-orange), var(--wg-player2026-yellow));
  border-radius: 5px;
}

#wg-player2026-time {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: #aaa;
}

#wg-player2026-close {
  position: relative;
  width: 34px;
  height: 34px;
  background: radial-gradient(circle at 30% 30%, #ffe9a8, #d8b446);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.45), inset 0 -4px 10px rgba(0,0,0,0.15);
  transition: all 0.35s ease;
  overflow: hidden;
}

#wg-player2026-close::after {
  content: "";
  position: absolute;
  top: 0;
  left: -160%;
  width: 160%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.5) 50%, transparent 100%);
  transform: skewX(-25deg);
  animation: wg-player2026-close-brilho 8s linear infinite;
}

@keyframes wg-player2026-close-brilho {
  0% { left: -160%; opacity: 1; }
  35% { left: 160%; opacity: 1; }
  36% { opacity: 0; }
  100% { opacity: 0; left: -160%; }
}

#wg-player2026-close:hover {
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.7), inset 0 -4px 15px rgba(0,0,0,0.22);
}

#wg-player2026-close:active {
  transform: scale(0.95);
}

#wg-player2026-loading{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  z-index:50;
  display:none;
  pointer-events:none;
}

#wg-player2026-loading img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(212,175,55,0.6);
}


  .wg-player2026-controls button {
    font-size: 1rem;
  }





