* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #0a0a0a;
  color: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 16px;
}

.header, .social-section, .ad-container, .video-section, .footer, .disclaimer {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.header h1 {
  font-size: 2rem;
  background: linear-gradient(45deg, #00d4ff, #7c3aed, #ff006e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 10px;
}

.header p {
  color: #ccc;
  text-align: center;
}

.video-section {
  position: relative;
  overflow: hidden;
}

.live-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  color: #00d4ff;
  margin-bottom: 12px;
}

.live-dot {
  width: 10px;
  height: 10px;
  background: red;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

.stream-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #0a0a0a;
  border-radius: 10px;
  overflow: hidden;
}

.stream-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  border-radius: 10px;
  transition: opacity 0.3s ease;
}

.loading-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid #444;
  border-top: 3px solid #00d4ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 15px;
}

.control-btn {
  padding: 10px 20px;
  background: #333;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.control-btn:hover {
  background: #555;
}

.social-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.social-link {
  background: #222;
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: #444;
}

.social-link img {
  width: 18px;
  height: 18px;
}

.ad-label {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 8px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.disclaimer h3 {
  color: #ff4444;
  font-size: 1rem;
  margin-bottom: 10px;
}

.disclaimer p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.5;
}

.footer {
  text-align: center;
  font-size: 14px;
  color: #ccc;
}

.footer a {
  color: #00d4ff;
  text-decoration: none;
}

.footer a:hover {
  color: #7c3aed;
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 1.5rem;
  }

  .control-btn, .social-link {
    width: 100%;
    justify-content: center;
  }

  .controls, .social-links {
    flex-direction: column;
    align-items: center;
  }
}
