* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  min-height: 100vh;
  background: linear-gradient(135deg, #ffde59, #ff6b9d, #c13584, #00f2ea, #0088cc);
  background-size: 400% 400%;
  animation: gradient-shift 15s ease infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.container {
  text-align: center;
}

.logo {
  font-size: 4rem;
  font-weight: 900;
  color: white;
  text-shadow: -3px -3px 0 #000, 3px -3px 0 #000, -3px 3px 0 #000, 3px 3px 0 #000, 6px 6px 0 #ff0050, 9px 9px 0 #00f2ea;
  margin-bottom: 8px;
}

.tagline {
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  margin-bottom: 48px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  /* increased max-width from 28rem to 36rem */
  max-width: 36rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  /* increased padding */
  padding: 28px 40px;
  border: 4px solid #000;
  border-radius: 20px;
  /* increased font size from 1.5rem to 2rem */
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 5px 5px 0 #000;
}

.social-btn:hover {
  transform: translate(-4px, -4px);
}

.social-btn svg {
  /* increased icon size from 40px to 56px */
  width: 56px;
  height: 56px;
}

/* Snapchat */
.snapchat {
  background-color: #fffc00;
  color: #000;
}
.snapchat:hover {
  box-shadow: 8px 8px 0 #000, 12px 12px 0 #fffc00;
}

/* TikTok */
.tiktok {
  background-color: #00f2ea;
  color: #000;
}
.tiktok:hover {
  box-shadow: 8px 8px 0 #000, 12px 12px 0 #00f2ea;
}

/* Instagram */
.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}
.instagram:hover {
  box-shadow: 8px 8px 0 #000, 12px 12px 0 #dc2743;
}

/* Telegram */
.telegram {
  background-color: #0088cc;
  color: #fff;
}
.telegram:hover {
  box-shadow: 8px 8px 0 #000, 12px 12px 0 #0088cc;
}

@media (max-width: 640px) {
  .logo {
    font-size: 3rem;
  }
  .social-btn {
    /* increased mobile padding */
    padding: 20px 28px;
    font-size: 1.5rem;
  }
  .social-btn svg {
    /* increased mobile icon size */
    width: 44px;
    height: 44px;
  }
}
