.tvott-restream-wrap {
  --tvott-accent: #ffcc00;
  max-width: 1100px;
  margin: 24px auto;
  padding: 18px;
  border-radius: 16px;
  background: rgba(15, 15, 15, 0.92);
  color: #fff;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.tvott-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tvott-badge {
  background: var(--tvott-accent);
  color: #000;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.06);
}

.tvott-title {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.tvott-desc {
  opacity: 0.9;
  margin-top: 6px;
  font-size: 14px;
}

.tvott-grid {
  display: grid;
  gap: 14px;
  margin-top: 14px;
}

.tvott-layout-split .tvott-grid {
  grid-template-columns: 1.75fr 1fr;
}

.tvott-layout-stack .tvott-grid {
  grid-template-columns: 1fr;
}

.tvott-panel {
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

.tvott-panel-title {
  padding: 10px 12px;
  font-weight: 700;
  background: rgba(0,0,0,0.25);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tvott-embed iframe {
  width: 100%;
  height: 520px;
  display: block;
}

.tvott-layout-stack .tvott-embed iframe {
  height: 460px;
}

.tvott-chat-embed iframe {
  width: 100%;
  height: 520px;
  display: block;
}

.tvott-layout-stack .tvott-chat-embed iframe {
  height: 520px;
}

.tvott-chat-note {
  padding: 10px 12px;
  font-size: 13px;
  opacity: 0.9;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.tvott-empty {
  padding: 16px;
  font-size: 14px;
  opacity: 0.9;
}

.tvott-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  align-items: center;
}

.tvott-share-btn {
  appearance: none;
  border: none;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.10);
  color: #fff;
  font-weight: 700;
  transition: transform 0.08s ease, background 0.15s ease;
}

.tvott-share-btn:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-1px);
}

.tvott-share-note {
  font-size: 13px;
  opacity: 0.9;
  margin-left: 6px;
}

.tvott-footer {
  margin-top: 14px;
  padding-top: 12px;
  font-size: 12px;
  opacity: 0.75;
  border-top: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 920px) {
  .tvott-layout-split .tvott-grid {
    grid-template-columns: 1fr;
  }
  .tvott-embed iframe,
  .tvott-chat-embed iframe {
    height: 480px;
  }
}
