.server-down-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  padding: 20px;
  width: 100%;
  margin: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
}

.server-down-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  max-width: 500px;
  font-weight: 500;
}

.server-down-icon {
  margin-bottom: 30px;
}

.server-down-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}

.server-down-message {
  font-size: 16px;
  margin: 0 0 24px 0;
  opacity: 0.9;
  line-height: 1.6;
}

.server-down-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.server-down-retry-btn {
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 4px 12px;
  transform: scale(1);
}

.server-down-retry-btn:hover {
  transform: scale(1.05);
}

.server-down-status {
  font-size: 14px;
  margin: 16px 0 0 0;
  opacity: 0.7;
}

.server-down-status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ff4444;
  border-radius: 50%;
  margin: 0 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
