html, body { overflow-x: hidden; }

.dsgo-fs-overlay{
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  background: #000;
}
.dsgo-fs-overlay.is-open{ display:block; }

html.dsgo-lock, body.dsgo-lock{
  overflow: hidden !important;
  height: 100vh !important;
}

/* Stage scrolle si besoin (propre) */
.dsgo-fs-stage{
  position: absolute;
  inset: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: clamp(16px, 3vw, 44px);
}

.dsgo-fs-card{
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  border-radius: 18px;
  opacity: 1;
  transition: opacity 650ms ease;
}
.dsgo-fs-card.is-fading{ opacity: 0; }

/* Boutons */
.dsgo-fs-nav{
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000000;
}
.dsgo-fs-nav.left{ left: 24px; }
.dsgo-fs-nav.right{ right: 24px; }

.dsgo-fs-close{
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 1000001;
}

.dsgo-playbar{
  position: fixed;
  top: 18px;
  left: 18px;
  z-index: 1000002;
  display: flex;
  gap: 10px;
}

.dsgo-btn, .dsgo-playbtn{
  border: none;
  background: #00c853;
  color: #000;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(0,0,0,.55);
}

.dsgo-btn{
  width: 86px;
  height: 86px;
  border-radius: 22px;
  font-size: 44px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.dsgo-btn:active{ transform: scale(0.96); }

.dsgo-btn.dsgo-x{
  width: 92px;
  height: 92px;
  border-radius: 24px;
  font-size: 48px;
}

.dsgo-playbtn{
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 18px;
}
.dsgo-playbtn:active{ transform: scale(0.98); }

@media (max-width: 700px){
  .dsgo-btn{ width: 64px; height: 64px; border-radius: 18px; font-size: 34px; }
  .dsgo-btn.dsgo-x{ width: 70px; height: 70px; font-size: 38px; }
}
