.elementor-19807 .elementor-element.elementor-element-f3b57b5{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS *//* Console Container Styling */
.console-box {
  position: relative;
  width: 100%;
  max-width: 600px;
  min-width: 320px;
  min-height: 400px;
  margin: 20px auto;
  padding: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Inner console content wrapper */
.console-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Breath Orb - Fixed Centering */
.breath-orb {
  position: absolute;
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%; /* Changed from right: 50% */
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 30% 30%, #ffffff, #e0e0ff);
  border-radius: 50%;
  box-shadow: 
    0 0 60px rgba(255, 255, 255, 0.5),
    0 0 100px rgba(124, 144, 255, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  z-index: 10;
}

/* Orb pulsing animation */
@keyframes breathPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 
      0 0 60px rgba(255, 255, 255, 0.5),
      0 0 100px rgba(124, 144, 255, 0.3);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 
      0 0 80px rgba(255, 255, 255, 0.7),
      0 0 120px rgba(124, 144, 255, 0.5);
  }
}

/* Mode-specific classes */
.breathing-mode .breath-orb {
  animation: breathPulse 4s ease-in-out infinite;
}

.surprise-mode .breath-orb {
  background: radial-gradient(circle at 30% 30%, #ffeb3b, #ff9800);
  animation: breathPulse 2s ease-in-out infinite;
}

/* Control buttons */
.controls {
  position: relative;
  margin-top: 240px;
  display: flex;
  gap: 15px;
  z-index: 20;
}

.control-btn {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.control-btn:active {
  transform: translateY(0);
}

.control-btn.active {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Status text */
.status-text {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  opacity: 0.9;
  z-index: 20;
}

/* Mobile Responsive - Maintaining Fixed Dimensions */
@media (max-width: 640px) {
  .console-box {
    max-width: 95%;
    min-width: 280px;
    min-height: 350px;
    padding: 20px;
    margin: 10px auto;
  }
  
  .breath-orb {
    width: 100px;
    height: 100px;
    /* Maintain centering with same technique */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .controls {
    margin-top: 200px;
    flex-direction: column;
    width: 80%;
  }
  
  .control-btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .status-text {
    font-size: 16px;
    top: 20px;
  }
}

/* Extra small devices */
@media (max-width: 380px) {
  .breath-orb {
    width: 80px;
    height: 80px;
  }
  
  .console-box {
    min-height: 300px;
  }
  
  .controls {
    margin-top: 160px;
  }
}

/* Prevent layout shift during mode changes */
.console-box,
.console-box * {
  box-sizing: border-box;
}

/* Ensure no inline styles override these */
.console-box.fixed-size {
  width: 100% !important;
  max-width: 600px !important;
}

/* Optional glassmorphism effect */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Optional dark mode */
@media (prefers-color-scheme: dark) {
  .console-box {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  }
}/* End custom CSS */