body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('background.gif') center center/cover no-repeat;
  z-index: 1;
  filter: brightness(0.4);
}

.center-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.center-content h1 {
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 0.7rem;
  margin-top: 0.7rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.7);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

.banner-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
  border: 4px solid rgba(255,255,255,0.15);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.2rem;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 1rem;
  font-size: 1.2rem;
  transition: color 0.2s;
}

.social-links a:hover {
  color: #ffd700;
}

.social-btn {
  color: #fff;
  text-decoration: none;
  padding: 0.7em 1.6em;
  border-radius: 30px;
  font-size: 1.15rem;
  font-weight: 500;
  background: rgba(30,30,30,0.5);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-btn.instagram:hover {
  background: linear-gradient(90deg,#fd5949,#d6249f,#285AEB);
  color: #fff;
  box-shadow: 0 4px 24px rgba(253,89,73,0.3);
}
.social-btn.discord:hover {
  background: #5865F2;
  color: #fff;
  box-shadow: 0 4px 24px rgba(88,101,242,0.3);
}
.social-btn.soundcloud:hover {
  background: linear-gradient(90deg,#ff5500,#ff8800);
  color: #fff;
  box-shadow: 0 4px 24px rgba(255,85,0,0.3);
}
.social-btn.minecraft:hover {
  background: linear-gradient(
    to bottom,
    #3a9ad9 0%,   /* blue sky */
    #62b947 35%,  /* green grass */
    #3c8527 50%,  /* darker grass */
    #7c5a3e 80%,  /* brown dirt */
    #5a3c1a 100%  /* darker dirt */
  );
  color: #fff;
  box-shadow: 0 4px 24px rgba(98,185,71,0.3);
}
.social-btn.clothing:hover {
  background: linear-gradient(90deg,#000,#fff);
  color: #222;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

@media only screen and (max-width: 600px) {
  .center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  .banner-img {
    width: 100px;
    height: 100px;
    margin-bottom: 1rem;
  }

  .center-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
  }

  .social-btn {
    width: 90%;
    text-align: center;
    font-size: 1rem;
    padding: 0.7em 0;
  }
}
