/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(270deg, #1e1e1e, #fa483cc5, #1e1e1e);
  background-size: 600% 600%;
  animation: gradientMove 17s ease infinite;
  font-family: Arial, sans-serif;
  color: #ddd;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.wip-container {
  background: rgba(30, 30, 30, 0.85);
  padding: 50px 80px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(244, 67, 54, 0.3);
  max-width: 500px;
  text-align: center;
}

.company-name {
  font-size: 3rem;
  color: #f44336;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.wip-text {
  font-size: 1.5rem;
  margin-bottom: 40px;
  color: #ddd;
  font-weight: 400;
}

.footer {
  font-size: 1rem;
  color: #f44336;
  font-weight: 600;
}

.footer a {
  color: #f44336;
  text-decoration: none;
  font-weight: 700;
}

.footer a:hover {
  text-decoration: underline;
}
