* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f8f9fa;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.animated-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(17, 153, 142, 0.08);
  animation: float 20s infinite ease-in-out;
}

.circle:nth-child(1) {
  width: 80px;
  height: 80px;
  left: 10%;
  top: 20%;
  animation-delay: 0s;
}

.circle:nth-child(2) {
  width: 120px;
  height: 120px;
  right: 15%;
  top: 40%;
  animation-delay: 2s;
}

.circle:nth-child(3) {
  width: 60px;
  height: 60px;
  left: 25%;
  bottom: 30%;
  animation-delay: 4s;
}

.circle:nth-child(4) {
  width: 100px;
  height: 100px;
  right: 30%;
  bottom: 20%;
  animation-delay: 6s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

.container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 40px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(17, 153, 142, 0.1);
  max-width: 600px;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.icon-wrapper {
  margin-bottom: 30px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.gear-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  position: relative;
}

.gear {
  width: 80px;
  height: 80px;
  border: 8px solid #11998e;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 3s linear infinite;
}

.gear::before,
.gear::after {
  content: "";
  position: absolute;
  background: #11998e;
}

.gear::before {
  width: 20px;
  height: 80px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.gear::after {
  width: 80px;
  height: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

h1 {
  color: #2d3748;
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: 700;
  text-shadow: none;
}

p {
  color: #4a5568;
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #11998e;
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out;
}

.dot:nth-child(1) {
  animation-delay: -0.32s;
}

.dot:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%,
  80%,
  100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.contact-info {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(17, 153, 142, 0.2);
  color: #4a5568;
  font-size: 0.95em;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(17, 153, 142, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #11998e;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: bold;
}

.social-link:hover {
  background: #11998e;
  color: #fff;
  transform: translateY(-5px);
}

@media (max-width: 768px) {
  .container {
    margin: 20px;
    padding: 40px 30px;
  }

  h1 {
    font-size: 2em;
  }

  p {
    font-size: 1em;
  }
}
