/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: radial-gradient(circle at center, #1c1f2b, #11131a);
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

/* Dashboard Container */
.dashboard {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Status Card */
.status-card {
  background: #2b2f3a;
  padding: 40px 50px;
  border-radius: 16px;
  box-shadow: 0 0 20px rgb(188, 172, 172);
  display: flex;
  align-items: center;
  gap: 30px;
  min-width: 450px;
  max-width: 90%;
  transition: 0.3s ease;
}

.status-card:hover {
  box-shadow: 0 0 30px rgba(0, 255, 128, 0.672);
  transform: scale(1.02);
}

/* Emoji Icon */
.status-icon {
  font-size: 50px;
  animation: pulse 1.5s infinite;
}

.colorful-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid transparent;
  border-top: 4px solid #00ffc8;
  border-right: 4px solid #00aaff;
  border-bottom: 4px solid #ff6f91;
  border-left: 4px solid #ffcc00;
  border-radius: 50%;
  animation: spin 5s linear infinite;
  box-shadow: 0 0 8px rgba(0, 255, 200, 0.4);
}

/* Spin Animation */
@keyframes spin {
  0%   { transform: rotate(0deg);   }
  100% { transform: rotate(360deg); }
}

/* Text Content */
.status-text h1 {
  font-size: 24px;
  color: #00ff88;
  margin-bottom: 10px;
}

.status-text .running {
  color: #74f2ce;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}

.status-text .subtext {
  font-size: 14px;
  color: #a0a0a0;
}

/* Pulse Animation */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}
