/* Start custom CSS for html, class: .elementor-element-5e112a8 */.upscale-wrapper {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border: 1px solid #5c317e;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  max-width: 560px;
  margin: 40px auto;
  text-align: center;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
}

.upscale-wrapper input,
.upscale-wrapper select {
  margin: 12px 0;
  display: block;
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  background: #0e0e1a;
  color: #fff;
  border: 1px solid #5c317e;
  border-radius: 8px;
  padding: 10px;
}

.upscale-wrapper button {
  display: inline-block;
  padding: 18px 40px;
  font-size: 18px;
  font-family: 'Orbitron', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #c600ff, #00f0ff);
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
  transition: 0.3s ease;
  position: relative;
  z-index: 1;
  border: none;
  width: 100%;
  margin: 14px 0;
  cursor: pointer;
  overflow: hidden;
}

.upscale-wrapper button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
  animation: pulse 3s infinite ease-in-out;
  z-index: 0;
}

.upscale-wrapper button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
  background: linear-gradient(135deg, #00f0ff, #c600ff);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: 0 0 12px rgba(255,255,255,0.3);
}

@keyframes pulse {
  0% { transform: scale(0.5); opacity: 0.6; }
  100% { transform: scale(2.5); opacity: 0; }
}

#previewBox {
  margin-top: 20px;
}

#previewBox h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

#previewBox img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(198, 0, 255, 0.25);
  transition: 0.3s ease;
}

#previewBox img:hover {
  transform: scale(1.02);
}

@media (max-width: 600px) {
  .upscale-wrapper {
    padding: 20px 16px;
    margin: 20px;
  }
  .upscale-wrapper button {
    font-size: 16px;
    padding: 14px 24px;
  }
}/* End custom CSS */