* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #fff;
  background:
    radial-gradient(circle at top, rgba(255, 0, 0, 0.12), transparent 25%),
    linear-gradient(180deg, #090909 0%, #000000 100%);
}

/* LAYOUT */
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER */
.site-header {
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.brand {
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 22px;
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  color: #aaa;
  text-decoration: none;
}

.nav a.active,
.nav a:hover {
  color: #fff;
}

/* HERO */
.live-page {
  padding-top: 30px;
  padding-bottom: 50px;
}

.live-hero {
  text-align: center;
  margin-bottom: 20px;
}

.live-status-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
}

.status-live {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,0,0,0.3);
  color: #ff5a5a;
}

.status-offline {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #999;
}

.status-dot,
.overlay-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-live {
  background: #ff2a2a;
  animation: pulse 1.2s infinite;
}

.dot-offline {
  background: #666;
  animation: none;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.3; }
  100% { opacity: 1; }
}

.live-title {
  font-size: 38px;
  margin: 0;
}

.live-subtitle {
  color: #aaa;
  margin-top: 10px;
}

/* PLAYER */
.player-shell {
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  margin-top: 20px;
}

.player-topbar {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: #0a0a0a;
  font-size: 12px;
  font-weight: 800;
}

.player-wrapper {
  position: relative;
}

.player-wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: none;
}

/* LIVE BADGE ON VIDEO */
.live-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 6px 10px;
  background: rgba(0,0,0,0.7);
  border-radius: 20px;
  font-size: 12px;
}

/* INFO */
.live-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.info-box {
  background: rgba(255,255,255,0.03);
  padding: 16px;
  border-radius: 12px;
}

.info-label {
  font-size: 12px;
  color: #777;
}

.info-value {
  font-weight: bold;
}

.live-text {
  color: #ff5a5a;
}

/* EXTRA */
.live-extra {
  margin-top: 30px;
}

.extra-block {
  margin-bottom: 20px;
}

.extra-title {
  font-size: 14px;
  margin-bottom: 5px;
}

.extra-text {
  font-size: 13px;
  color: #aaa;
}