* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

body {
  background: linear-gradient(135deg, #58077d53, #1a1a2e, #0f0f0f);
  color: #eaeaea;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  overflow-x: hidden;
}

.hero {
  padding: 40px 20px;
  animation: fadeIn 1.2s ease-out;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.logo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #b04fff;
  box-shadow: 0 0 30px rgba(176, 79, 255, 0.6);
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.logo:hover {
  transform: rotate(8deg) scale(1.05);
}

h1 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 15px;
}

.highlight {
  color: #ff77ff;
  text-shadow: 0 0 12px #b04fff;
}

.tagline {
  font-size: 1.2rem;
  color: #dcdcdc;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, #b04fff, #ff77ff);
  color: #fff;
  font-weight: bold;
  padding: 14px 36px;
  border-radius: 40px;
  font-size: 1.2rem;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(176, 79, 255, 0.7);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 35px rgba(255, 119, 255, 0.695);
}

.about {
  padding: 30px 20px;
  max-width: 800px;
  margin: 0 auto;
}

.aa {
  color: white;
  text-decoration: none;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #ff77ff;
}

.about p {
  font-size: 1.2rem;
  color: #dcdcdc;
  line-height: 1.6;
}

footer {
  padding: 25px;
  background: rgba(25, 25, 40, 0.7);
  border-top: 2px solid #b04fff;
  box-shadow: 0 -4px 15px rgba(176, 79, 255, 0.3);
}

.follow-text {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.socials {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.socials:hover {
  transform: scale(1.15);
  box-shadow: 0 0 15px #ff77ff, 0 0 30px #b04fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  .tagline { font-size: 1rem; }
  .cta-button { font-size: 1rem; padding: 12px 24px; }
  .about h2 { font-size: 1.6rem; }
  .about p { font-size: 1rem; }
}

@media (max-width: 480px) {
  .hero { padding: 30px 15px; }
  .tagline { margin-bottom: 15px; }
  .about { padding: 20px 15px; }
  .logo { width: 90px; height: 90px; }
  h1 { font-size: 1.8rem; }
  .cta-button { font-size: 0.95rem; padding: 10px 20px; }
  .about h2 { font-size: 1.4rem; }
  .about p { font-size: 0.95rem; line-height: 1.4; }
  footer { padding: 20px 10px; }
  .social-links { gap: 15px; }
  .socials { width: 36px; height: 36px; }
}
