body {
  margin: 0;
  padding: 0;
  background: black;
  color: white;
  font-family: 'Playwrite DK Loopet', cursive;
  overflow-x: hidden;
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.3) blur(2px);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle, rgba(255,255,255,0.05), transparent 70%);
  animation: fadeIn 6s ease-in-out forwards;
  z-index: -1;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.logo {
  text-align: center;
  font-size: 3em;
  margin-top: 40px;
  text-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffcc;
}

.players {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px 20px 20px;
}

.player-box {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 0 20px #0ff;
  width: 90%;
  max-width: 720px;
  opacity: 0.9;
  transition: transform 0.3s;
}

.player-box:hover {
  transform: scale(1.02);
}

video {
  width: 100%;
  border-radius: 10px;
  outline: none;
}

.status {
  margin-top: 10px;
  font-size: 1.2em;
  text-align: center;
  color: orange;
}

.status.live {
  color: #00ff88;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.start-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.start-overlay button {
  padding: 12px 24px;
  font-size: 1.2em;
  background: #00ffcc;
  border: none;
  border-radius: 8px;
  color: black;
  cursor: pointer;
  font-weight: bold;
  margin-top: 20px;
}

.logo-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 60px 0 30px;
  text-align: center;
  color: #fff;
  font-size: 1em;
  opacity: 0.8;
}

.logo-footer img {
  width: 100px;
  border-radius: 12px;
  box-shadow: 0 0 10px #1DB954;
  margin-bottom: 10px;
}

.logo-footer .powered-text a {
  color: #1DB954;
  text-decoration: none;
  font-weight: bold;
}

.logo-footer .powered-text a:hover {
  text-decoration: underline;
}

.share-buttons {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 0.9em;
  transition: background 0.3s, transform 0.2s;
  color: white;
}

.share-btn:hover {
  transform: scale(1.05);
}

.share-btn.fb { background: #3b5998; }
.share-btn.tw { background: #1da1f2; }
.share-btn.wa { background: #25D366; }

@media (max-width: 768px) {
  .player-box {
    width: 95%;
  }
}

.video-container {
  position: relative;
}

.custom-controls {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s;
}

.video-container:hover .custom-controls {
  opacity: 1;
}

.control-button {
  background: none;
  border: none;
  color: white;
  font-size: 1.5em;
  cursor: pointer;
}

.right-controls {
  display: flex;
  align-items: center;
}

.volume-container {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

#volume-slider {
  width: 100px;
}