* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #000;
  font-family: 'Arial', sans-serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  text-align: center;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeIn 2s ease-in-out;
}

.crown {
  width: 80px;
  max-width: 100%;
  animation: drip 2s infinite;
}

@keyframes drip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.text {
  font-size: 2.5em;
  white-space: nowrap;
}

.highlight {
  color: #41d661;
}

.typing {
  overflow: hidden;
  border-right: .15em solid #41d661;
  white-space: nowrap;
  animation: typing 3s steps(30, end), blink-caret .75s step-end infinite;
  font-size: 1.2em;
  max-width: 100%;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #41d661; }
}

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

.social-links a {
  color: #41d661;
  text-decoration: none;
  transition: transform 0.3s;
}

.social-links a:hover {
  transform: scale(1.2);
}

.social-links svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 768px) {
  .text {
    font-size: 2em;
  }

  .typing {
    font-size: 1em;
  }

  .crown {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .text {
    font-size: 1.5em;
  }

  .typing {
    font-size: 0.9em;
  }

  .crown {
    width: 50px;
  }
}