/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #06D432;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 2rem;
}

.container {
  max-width: 800px;
  padding: 2rem;
}

.logo {
  width: 150px;
  height: auto;
  margin-bottom: 2rem;
  animation: floatLogo 3s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

@keyframes floatLogo {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.tagline-wrapper {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 400;
  white-space: pre;
  overflow: hidden;
  position: relative;
  max-width: 700px;
  margin: 0 auto 2rem auto;
}

.typed-text {
  display: inline-block;
  animation: typing 4s steps(60, end), blinkCursor 1s step-end infinite;
  white-space: pre;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.cursor {
  display: inline-block;
  width: 2px;
  background: #06D432;
  animation: blink 1s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 1; }
  25%, 75% { opacity: 0; }
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blinkCursor {
  from, to { border-color: transparent }
  50% { border-color: #06D432 }
}

.socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-icon {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.2);
}

footer {
  position: absolute;
  bottom: 1rem;
  color: #aaa;
  font-size: 0.9rem;
  opacity: 0.6;
}

@media (max-width: 600px) {
  .logo {
    width: 100px;
    margin-bottom: 1.5rem;
  }

  .tagline-wrapper {
    font-size: 1.2rem;
  }

  .social-icon {
    width: 28px;
    height: 28px;
  }
}