/* ============================================================
   CSS Glassmorphism Generator Styling - Scenic IT Solutions
   ============================================================ */

.glass-stage {
  position: relative;
  width: 100%;
  min-height: 380px;
  border-radius: 16px;
  background: linear-gradient(135deg, #6e8efb, #a777e3, #f093fb, #f5576c);
  background-size: 300% 300%;
  animation: gradientShift 10s ease infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  overflow: hidden;
  margin-bottom: 24px;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.glass-decorative-circle1 {
  position: absolute;
  top: 15%;
  left: 15%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #ff5252;
  filter: blur(10px);
}

.glass-decorative-circle2 {
  position: absolute;
  bottom: 15%;
  right: 15%;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #00d2ff;
  filter: blur(10px);
}

.glass-card-preview {
  position: relative;
  z-index: 10;
  width: 320px;
  padding: 30px 24px;
  color: #fff;
  text-align: left;
  transition: all 0.15s ease;
}

.glass-card-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.glass-card-text {
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.5;
  margin-bottom: 16px;
}

.glass-card-button {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.glass-slider-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 16px;
}

.glass-slider-row label {
  font-size: 14px;
  font-weight: 600;
  color: #d1d1db;
  min-width: 140px;
}

.glass-slider-row input[type="range"] {
  flex: 1;
  accent-color: #0099E5;
}

.glass-slider-val {
  min-width: 50px;
  text-align: right;
  font-family: 'Courier New', monospace;
  font-weight: 700;
  color: #0099E5;
}
