* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* CATV-inspired palette (easy to tweak) */
  --brand-1: #0b4db3; /* deep CATV blue */
  --brand-2: #1ba3ff; /* light/cyan blue */
  --brand-3: #6c63ff; /* soft violet accent */
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.35);
  --text: #ffffff;
}

body {
  font-family: Arial, sans-serif;
  color: var(--text);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;

  /* Animated brandy gradient */
  background: linear-gradient(135deg, var(--brand-1) 0%, var(--brand-3) 50%, var(--brand-2) 100%);
  background-size: 200% 200%;
  animation: bgShift 16s ease-in-out infinite;
}

/* Soft glowing orbs for depth */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto auto -10% -10%;
  width: 60vmin;
  height: 60vmin;
  background: radial-gradient(circle at 30% 30%, rgba(27, 163, 255, 0.35), transparent 60%);
  filter: blur(70px);
  z-index: -1;
  animation: floatOrb1 18s ease-in-out infinite;
}
body::after {
  inset: -10% -10% auto auto;
  width: 70vmin;
  height: 70vmin;
  background: radial-gradient(circle at 70% 70%, rgba(108, 99, 255, 0.35), transparent 60%);
  animation: floatOrb2 22s ease-in-out infinite;
}

.maintenance-container {
  text-align: center;
  background: var(--glass-bg);
  padding: 44px 40px;
  border-radius: 22px;
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  max-width: 640px;
  width: min(92%, 640px);
  transform: translateY(8px);
  opacity: 0;
  animation: containerIn 700ms ease forwards 200ms;
}

h1 {
  font-size: 2.6em;
  margin-bottom: 18px;
  letter-spacing: 0.4px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.description {
  font-size: 1.2em;
  margin-bottom: 34px;
  line-height: 1.6;
  opacity: 0.94;
}

.home-button {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(90deg, var(--brand-2), var(--brand-3));
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 1.08em;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.3s ease, background-position 0.3s ease;
  cursor: pointer;
  background-size: 200% 100%;
  background-position: 0% 0%;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(108, 99, 255, 0.55);
  position: relative;
}
.home-button:hover {
  background-position: 100% 0%;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(108, 99, 255, 0);
}
.home-button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: radial-gradient(120px 60px at -20% 50%, rgba(255, 255, 255, 0.5), transparent 60%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateX(-20%);
  opacity: 0;
  pointer-events: none;
}
.home-button:hover::after {
  opacity: 1;
  transform: translateX(15%);
}

.logo-container {
  margin-bottom: 28px;
  position: relative;
}
.logo-image {
  max-width: 160px;
  height: auto;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 18px rgba(27, 163, 255, 0.45));
}
.logo-image:hover {
  transform: scale(1.06) translateY(-2px);
}
.logo-float {
  animation: floatY 5.5s ease-in-out infinite;
}

/* subtle breathing ring behind the logo */
.logo-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 163, 255, 0.35), rgba(108, 99, 255, 0.25) 60%, transparent 70%);
  filter: blur(16px);
  animation: glowPulse 4s ease-in-out infinite;
  z-index: -1;
}

@media (max-width: 768px) {
  .maintenance-container {
    padding: 30px 22px;
    margin: 20px;
  }
  h1 {
    font-size: 2.1em;
  }
  .description {
    font-size: 1.06em;
  }
  .home-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.8em;
  }
  .description {
    font-size: 1em;
  }
}

/* Animations */
@keyframes bgShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes containerIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.05);
  }
}
@keyframes floatOrb1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(6%, -4%);
  }
}
@keyframes floatOrb2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-6%, 5%);
  }
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
