.ob {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #ff3131 0%, #ff914d 100%);

  display: grid;
  place-items: center;
}
.ob.hidden { display: none; }

.ob-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}


.ob-img {
  max-width: 96%;
  max-height: 96%;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  border-radius: 0;
  box-shadow: none;
}

.ob-cta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: clamp(14px, 4vw, 24px);
  display: grid;
  gap: 12px;
}


.ob-18 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font: 600 14px/1 "League Spartan", system-ui, sans-serif;
}
.ob-18 input {
  width: 18px;
  height: 18px;
  accent-color: #22c55e;
}
.hidden { display: none !important; }

.ob-btn {
  width: 100%;
  border: 0;
  border-radius: 14px;
  padding: clamp(12px, 3.5vw, 16px);
  font-family: "League Spartan", system-ui, sans-serif;
  font-weight: bold;
  font-size: 22px;
  color: #ff3131;
  background: #fcfcfc;
  cursor: pointer;
  transition: transform .08s ease, filter .2s ease, box-shadow .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.ob-btn:hover { transform: translateY(-1px); }
.ob-btn:active { transform: translateY(0); filter: brightness(.95); }

.ob-btn:focus, .ob-btn:active {
  outline: none;
  box-shadow: none;
}

@media (min-width: 700px) {
  .ob {
    background: linear-gradient(90deg, #ff3131 0%, #ff914d 100%); 
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ob-wrap {
    max-width: 700px;    /* centra y limita el ancho total */
    max-height: 90%;
    background: transparent;
  }

  .ob-img {
    max-width: 70%;      /* ocupa 70% del ancho del contenedor */
    max-height: 70%;     /* se ajusta vertical */
  }

  .ob-cta {
    display: flex;       /* botones en fila */
    justify-content: center;
    gap: 20px;
    width: auto;
    margin-top: 30px;
  }

  .ob-btn {
    width: auto;         /* no se estiran a todo el ancho */
    min-width: 180px;
    font-size: 18px;
    padding: 14px 24px;
  }
}

.toast {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #ef4444;
  color: #fff;
  padding: 18px 24px;
  border-radius: 14px;
  font: 700 16px/1.4 "League Spartan", system-ui, sans-serif;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10000;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}