/* ===============================
   REWARD ADS MD – VIGNETTE FULLSCREEN + GAP
   =============================== */

/* Fundal blur */
#reward-ads-md-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 2147483646;
  display: none;
  overflow: hidden;
}

/* Cutia reclamei – full screen minus bara de închidere + spațiu */
#reward-ads-md-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 55px; /* 50px bară + 5px spațiu */
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  z-index: 2147483647;
  padding: 0;
  display: block;
}

/* Conținutul reclamei */
#reward-ads-md-content {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Wrapper pentru reclamă */
.reward-ads-md-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Reclama AdSense ocupă tot containerul */
.reward-ads-md-wrapper ins.adsbygoogle {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-width: 100% !important;
  max-height: 100% !important;
  display: block !important;
}

/* Bara de închidere */
#reward-ads-md-close {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 14px;
  cursor: pointer;
  font-size: 18px;
  z-index: 2147483647;
}
#reward-ads-md-close:hover {
  background: #222;
}

/* Body blocat când e activ overlay-ul */
body.reward-ads-md-open {
  overflow: hidden;
}

/* Responsivitate pe mobil */
@media (max-width: 768px) {
  #reward-ads-md-box {
    bottom: 50px; /* 45px bară + 5px spațiu */
  }

  #reward-ads-md-close {
    font-size: 14px;
    padding: 12px;
  }
}
