@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Space+Grotesk:wght@400;700&display=swap");

#mangaEditorDesu_custom-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(10, 10, 10, 0.9);
  padding: 40px;
  border-radius: 15px;
  box-shadow:
    0 0 20px rgba(255, 165, 0, 0.5),
    0 0 40px rgba(255, 69, 0, 0.3);
  z-index: var(--z-modal);
  max-width: 90%;
  width: 800px;
  font-family: "Space Grotesk", "Orbitron", sans-serif;
  color: #e0e0e0;
  border: 2px solid #ff6b00;
  animation: mangaEditorDesu_steamPunk 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
}

@keyframes mangaEditorDesu_steamPunk {
  0% {
    transform: translate(-50%, -50%) scale(0.5) rotate(-10deg);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 1;
  }
}

#mangaEditorDesu_custom-popup::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border: 2px solid #ff6b00;
  border-radius: 20px;
  z-index: -1;
  animation: mangaEditorDesu_glow 2s infinite alternate;
}

@keyframes mangaEditorDesu_glow {
  0% {
    box-shadow:
      0 0 5px #ff6b00,
      0 0 10px #ff6b00,
      0 0 15px #ff6b00;
  }
  100% {
    box-shadow:
      0 0 10px #ff6b00,
      0 0 20px #ff6b00,
      0 0 30px #ff6b00;
  }
}

#mangaEditorDesu_popup-content {
  display: flex;
  align-items: flex-start;
}

#mangaEditorDesu_popup-image {
  max-width: 45%;
  height: auto;
  border-radius: 10px;
  border: 3px solid #ff6b00;
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.7);
  margin-right: 20px;
}

#mangaEditorDesu_text-content {
  flex-grow: 1;
}

#mangaEditorDesu_custom-popup h2 {
  margin-top: 0;
  color: #ff6b00;
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(255, 107, 0, 0.6);
  animation: mangaEditorDesu_textGlow 1.5s ease-in-out infinite alternate;
}

@keyframes mangaEditorDesu_textGlow {
  0% {
    text-shadow:
      0 0 5px #ff6b00,
      0 0 10px #ff6b00;
  }
  100% {
    text-shadow:
      0 0 10px #ff6b00,
      0 0 20px #ff6b00,
      0 0 30px #ff6b00;
  }
}

#mangaEditorDesu_custom-popup p {
  color: #b0b0b0;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

#mangaEditorDesu_close-popup {
  background-color: #ff6b00;
  color: #000;
  border: none;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 18px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.3s;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.5);
}

#mangaEditorDesu_close-popup:hover {
  background-color: #ff8c00;
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.8);
}

.mangaEditorDesu_link-section {
  margin-top: 20px;
  padding: 15px;
  background-color: rgba(50, 50, 50, 0.7);
  border-radius: 10px;
  border: 1px solid #ff6b00;
}

.mangaEditorDesu_link-section a {
  color: #ff6b00;
  text-decoration: none;
  transition: all 0.3s;
}

.mangaEditorDesu_link-section a:hover {
  color: #ff8c00;
  text-shadow: 0 0 5px rgba(255, 140, 0, 0.7);
}

.mangaEditorDesu_flames {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 60px;
  filter: blur(1px);
  pointer-events: none;
}

.mangaEditorDesu_flame {
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 60px;
  background: #ff6b00;
  border-radius: 50% 50% 20% 20% / 40% 40% 60% 60%;
  animation: mangaEditorDesu_flicker 0.5s infinite alternate;
}

@keyframes mangaEditorDesu_flicker {
  0% {
    height: 60px;
    opacity: 1;
  }
  100% {
    height: 50px;
    opacity: 0.8;
  }
}
