* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
}

body {
  background: #0e0e10;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Intro Animation */
.intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #0e0e10;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeOut 1s ease 2s forwards;
}

.intro-glove img {
  height: 10rem;
}

.intro-glove {
  animation: glovePunchUser 2s ease forwards;
  transform: translateZ(0);
}

@keyframes glovePunchUser {
  0% {
    transform: scale(0.2) translateZ(0);
    opacity: 0;
  }
  80% {
    transform: scale(2.5) translateZ(400px);
    opacity: 1;
  }
  100% {
    transform: scale(50) translateZ(1000px);
    opacity: 0;
  }
}

/* @keyframes glovePunchHarder {
  0% {
    transform: scale(0.2) translateZ(0) rotate(0deg);
    opacity: 0;
  }
  50% {
    transform: scale(2.5) translateZ(600px) rotate(20deg);
    opacity: 1;
  }
  80% {
    transform: scale(4) translateZ(1200px) rotate(40deg);
    opacity: 1;
  }
  100% {
    transform: scale(6) translateZ(2000px) rotate(60deg);
    opacity: 0;
  }
} */

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

.emoji-bg {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.emoji-pair {
  position: absolute;
  display: flex;
  align-items: center;
  font-size: 4rem;
  opacity: 0.25;
}

.glove {
  height: 5rem;
  width: auto;
  transform: scaleX(-1) translateX(50%);
  display: inline-block;
  animation: punchHard 1.5s ease-in-out infinite;
}

@keyframes punchHard {
  /* 0% {
          transform: rotate(0) translateX(0);
        }
        30% {
          transform: rotate(-30deg) translateX(25px);
        }
        60% {
          transform: rotate(10deg) translateX(-5px);
        }
        100% {
          transform: rotate(0) translateX(0);
        } */
  0% {
    transform: scaleX(-1) translateX(50%);
  }
  10% {
    transform: scaleX(-1) translateX(-22%);
  }
  50% {
    transform: scaleX(-1) translateX(0%);
  }
  100% {
    transform: scaleX(-1) translateX(50%);
  }
}

header {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.logo-space {
  width: 150px;
  height: 50px;
  background-color: #1a1a1a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 14px;
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 2rem;
  font-weight: bold;
}

.hero {
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ff4d4d;
}

.hero p {
  font-size: 1.2rem;
  color: #bbb;
}

.cta-button {
  display: inline-block;
  margin-top: 2rem;
  background: #ff4d4d;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #ff1f1f;
}

.how-it-works {
  padding: 4rem 2rem;
  background: #1c1c1f;
  position: relative;
  z-index: 1;
}

.how-it-works h2 {
  text-align: center;
  font-size: 2rem;
  color: #fff;
  margin-bottom: 2rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  background: #2a2a2e;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.step h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.step p {
  color: #aaa;
}

footer {
  padding: 2rem;
  text-align: center;
  color: #777;
  background: #0e0e10;
  position: relative;
  z-index: 1;
}
.support-btn {
  color: white;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.3s ease;
}

.support-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #e63946;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.support-btn:hover {
  color: red;
}

.support-btn:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.discord-logo {
  height: 50px;
  width: auto;
  transition: all 0.4s ease-in-out;
  filter: brightness(1);
  margin: -5px;
}

.discord-logo:hover {
  filter: brightness(2.5) drop-shadow(0 0 8px red);
  transform: scale(1.1);
}
.nav-link {
  color: white;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.nav-link:hover {
  filter: brightness(2.5) drop-shadow(0 0 8px red);
  transform: scale(1.05);
}
.discord-glow:hover {
  filter: brightness(1.6) drop-shadow(0 0 8px red);
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

@media (max-width: 600px) {
  header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
  }

  header img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
  }

  nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
  }

  nav a,
  nav img {
    display: inline-block;
    text-align: center;
  }

  #join {
    margin-top: 8px;
  }
   .emoji-pair {
    transform: scale(0.5) translateX(-100%);
  } 
}