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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

/* MAIN */

main {
  position: relative;
  min-height: 100vh;
  background-color: #0f0f14;
  /* background-image: url(./public/home-background.jpg);
  background-size: cover;
  background-position: center; */
}

/* HEADER */

header {
  /* background-color: rgb(29, 29, 29); */
  padding: 20px 60px;
}

header nav h1 {
  color: #fff;
  font-weight: 800;
  text-align: center;
}

header nav hr {
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #a855f7, transparent);
  border: none;
  margin: 12px auto 0;
  border-radius: 20px;
}

/* HERO */

.heroContainer {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  padding: 10px;
}

.heroContainer i {
  font-size: 3rem;
  background: linear-gradient(180deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: float 2s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.7));
  margin-top: 3rem;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(14px);
  }
  100% {
    transform: translateY(0px);
  }
}

.heroContent {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  /* justify-content: center; */
}

.heroLeft h2 {
  font-size: 2.5rem;
}

.heroLeft button {
  padding: 10px 35px;
  border-radius: 15px;
  border: none;
  font-weight: 700;
  margin-top: 1rem;
  background: linear-gradient(90deg, #ff00cc, #6a00ff);
  box-shadow: 0 0 20px rgba(150, 0, 255, 0.5);
  cursor: pointer;
  transition: .5s ease-in;
}

.heroLeft button:hover {
  color: #fff;
  box-shadow: 0 0 60px rgba(150, 0, 255, 0.5);
}

.mockup {
  background: #0f0f0f;
  /* box-shadow: 0 0 10px 0 #1c1c1c; */
  padding: 25px 50px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  box-shadow: 0 0 60px rgba(168, 85, 247, 0.15);
  border-radius: 40px 20px 50px 25px;
}

.mockup h3 {
  color: #dddddd;
}

.mockup ul {
  color: #bdbdbd;
  list-style: none;
}

.mockup button {
  margin-top: .50rem;
  padding: 5px 40px;
  border-radius: 10px;
  font-weight: 800;
  background: #bf00b9;
  background: linear-gradient(90deg, rgba(191, 0, 185, 1) 0%, rgba(87, 36, 99, 1) 100%);
  border: none;
  color: #a7a7a7;
}

/* WAVE */

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  line-height: 0;
}

.wave svg {
  display: block;
  width: 100%;
  height: 120px;
}

/* SECTION BELOW */

.raffleContainer {
  background-color: rgb(29, 29, 29);
  color: #fff;
  /* padding: 80px 0; */
}