/* ============================================================
   DSG Hero Video Widget — standalone styles
   Host this file on your CDN and load with:
     <link rel="stylesheet" href="https://YOUR-CDN/hero-video.css">
   (The JS file injects an identical copy if this link is absent,
   so loading it separately is optional.)
   ============================================================ */
.dsg-hv {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 420px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.dsg-hv__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 18px 44px rgba(9, 35, 57, .38);
  cursor: pointer;
}
.dsg-hv__el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dsg-hv__live {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  background: rgba(8, 28, 48, .72);
  border-radius: 999px;
  z-index: 3;
}
.dsg-hv__dot { width: 6px; height: 6px; border-radius: 50%; background: #ff5a5a; animation: dsgHvDot 1s infinite; }
.dsg-hv__live-t { font: 700 9px sans-serif; letter-spacing: .08em; color: #fff; }
.dsg-hv__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 62px;
  height: 62px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(9, 35, 57, .4);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 4;
}
.dsg-hv__play svg { margin-left: 3px; }
.dsg-hv__video.is-playing .dsg-hv__play { opacity: 0; pointer-events: none; transform: scale(.85); }
.dsg-hv__ctrls {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  z-index: 5;
}
.dsg-hv__btn {
  width: 34px;
  height: 34px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: rgba(8, 28, 48, .6);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.dsg-hv__btn:hover { background: rgba(8, 28, 48, .88); }
.dsg-hv__btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }
.dsg-hv__btn svg { width: 18px; height: 18px; display: block; }
.dsg-hv__meta { text-align: center; }
.dsg-hv__name { font: 600 16px sans-serif; color: #fff; }
.dsg-hv__tag { font: 400 13px sans-serif; color: rgba(255, 255, 255, .72); }
@keyframes dsgHvDot { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }
