/* Overlay */
.fecko-graffiti-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
  z-index: 9998;
}
.fecko-graffiti-overlay[hidden] { display: none !important; }

/* Modal principal */
.fecko-graffiti-modal {
  position: fixed;
  inset: 5%;
  background: #111;
  border-radius: 12px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.4);
}
.fecko-graffiti-modal[hidden] { display: none !important; }

/* Cerrar */
.fecko-graffiti-close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 28px;
  color: #fff;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 10000;
}

/* Contenido */
.fecko-graffiti-content {
  flex: 1;
  display: flex;
  padding-top: 40px;
}
.fecko-graffiti-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 0 0 12px 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .fecko-graffiti-modal {
    inset: 0;
    border-radius: 0;
  }
}
