/* Global */
body {
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

/* Center container */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Animated logo */
.hero-eye {
  width: 180px;
  height: auto;
}

/* Text */
.title {
  font-size: 32px;
  letter-spacing: 2px;
  margin: 0;
  font-weight: 300;
}

/* Animated dots */
.dots {
  display: inline-block;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0% { opacity: 0.2; }
  50% { opacity: 1; }
  100% { opacity: 0.2; }
}

/* Social icons */
.socials {
  position: absolute;
  bottom: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 30px;
}

.social-icon {
  width: 32px;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.social-icon:hover {
  opacity: 1;
}
