.goisern-live-card {
  position: relative;
  display: inline-block;
  max-width: 700px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  background: #111;
  color: #fff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.goisern-live-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.goisern-live-header {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 5px 12px 5px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.75);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.goisern-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff3b30;
  box-shadow: 0 0 8px rgba(255,59,48,0.9);
}

.goisern-live-thumb {
  position: relative;
  width: 100%;
  background: #000;
}

.goisern-live-thumb iframe {
  display: block;
  width: 100%;
  border: none;
}

.goisern-live-footer {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 20;
  background: rgba(0,0,0,0.75);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.goisern-live-footer strong {
  font-weight: 700;
}

.goisern-live-bottombar {
  padding: 8px 14px;
  background: #181818;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.goisern-live-bottombar span {
  opacity: 0.9;
}

@media (max-width: 600px) {
  .goisern-live-card {
    max-width: 100%;
  }
}