* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container-wrapper {
  max-width: 800px;
  width: 100%;
}

.card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 60px 40px;
  text-align: center;
  animation: fadeIn 0.8s ease;
  justify-content: center;
  align-items: center;
}

.icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  animation: pulse 2s infinite;
}

.icon svg {
  width: 40px;
  height: 40px;
  fill: white;
}

h1 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
}

.domain-name {
  font-size: 1.3rem;
  color: #667eea;
  font-weight: 600;
  margin-bottom: 0;
  word-break: break-all;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  /* margin: 30px auto; */
  margin: 15px auto;
  border-radius: 2px;
}

.managed-by {
  font-size: 1rem;
  color: #7f8c8d;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.aries-logo {
  max-width: 300px;
  width: 100%;
  height: auto;
  /* margin: 20px auto; */
}

.info-text {
  color: #5a6c7d;
  font-size: 1rem;
  line-height: 1.6;
  margin: 15px 0;
}

.contact-section {
  padding-top: 15px;
  border-top: 1px solid #ecf0f1;
}

.contact-info {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 12px 25px;
  border: 2px solid #667eea;
  border-radius: 50px;
  margin: 10px 5px;
}

.contact-info:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.contact-info svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  .card {
    padding: 40px 25px;
  }

  h1 {
    font-size: 1.5rem;
  }

  .domain-name {
    font-size: 1.1rem;
  }

  .aries-logo {
    max-width: 250px;
  }

  .contact-info {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.3rem;
  }

  .domain-name {
    font-size: 1rem;
  }

  .aries-logo {
    max-width: 200px;
  }

  .info-text {
    font-size: 0.9rem;
  }
}
