/* Estilos para bloque de anuncio responsivo */
.anuncio-responsive {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto;
  padding: 10px;
  background-color: #0e0e0e;
  border-radius: 12px;
  max-width: 100%;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255, 0, 150, 0.3);
}

.btn-copy {
  display: none !important;
}

.copy-btn {
  display: none !important;
}

@media (max-width: 768px) {
  .anuncio-responsive {
    margin: 10px auto;
    padding: 5px;
    box-shadow: 0 0 10px rgba(255, 0, 150, 0.2);
  }
}

body::after {
  content: "";
  position: fixed;
  right: 0;
  bottom: 0;
  width: min(320px, 26vw);
  height: min(520px, 70vh);
  background: url("../ico/personaje-anime%20.webp") right bottom / contain no-repeat;
  pointer-events: none;
  z-index: 999;
}

@media (max-width: 992px) {
  body::after {
    display: none;
  }
}