@import url("https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

*:focus {
  outline: none;
}

:root {
  --primaryblack: black;
  --primarywhite: white;
  --primaryfont: poppins;
}

/* For WebKit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 10px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
  background: rgba(
    255,
    255,
    255,
    0.083
  ); /* Background of the scrollbar track */
  border-radius: 10px;
  cursor: pointer;
}

::-webkit-scrollbar-thumb {
  background: var(--primarywhite); /* Color of the scrollbar */
  border-radius: 10px;
  cursor: grab;
}

::selection {
  background: white;
  color: black;
}

/* DISABLE IMAGE SELECTION */
img {
  user-select: none;
}



/* --------------HERO PAGE MOUSE MOVE EFFECT----------------------------- */
/* <div id="dot"></div> */
#containerForMouseMoveEffect {
  height: 100%;
  width: 100%;
  /* cursor: none; */
  transition: ease 5s;
}

/* <div id="dot"></div> */
#dot {
  height: 30px;
  width: 30px;

  background-color: white;
  border-radius: 50%;

  position: absolute;

  transition: ease 0.2s;
  z-index: 1000;
  opacity: 0;
  mix-blend-mode: difference;
}

.circle1 {
  width: 800px;
  /* Adjust size */
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.464) 20%,
    rgba(255, 0, 150, 0) 80%
  );
  filter: blur(80px);
  /* Adjust blur */
  position: absolute;

  top: -420px;
  right: 800px;
}

.circle2 {
  width: 700px;
  /* Adjust size */
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.118) 20%,
    rgba(255, 0, 150, 0) 80%
  );
  filter: blur(80px);
  /* Adjust blur */
  position: absolute;

  top: 3000px;
  right: 700px;
}

.lightFont {
  font-family: "poppins";
  font-weight: 300;
}
.regularFont {
  font-family: "poppins";
}
.semiSemiBoldFont {
  font-family: "poppins";
  font-weight: 500;
}
.semiBoldFont {
  font-family: "poppins";
  font-weight: 700;
}
.boldFont {
  font-family: "poppins";
  font-weight: 1000;
}

img.favicon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: "poppins";
}

*:focus,
*:active {
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

div {
  -webkit-tap-highlight-color: transparent;
}
body {
  background-color: black;
  width: 100%;
}

section {
  height: 100vh;
  width: 94%;
  margin: 0px auto;

  overflow: hidden;
  margin-bottom: 40px;
  /* border: 1px solid greenyellow; */
}

/* -------------DISPLAY FLEX SECTION---------------- */
.dfjccaic {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dfjccaicfc {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

button {
  cursor: pointer;
  outline: none;
  border: none;
}
.bbtw {
  background-color: var(--primaryblack);
  color: var(--primarywhite);
}

.tac {
  text-align: center;
}

.discordBubblesContainer a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block; /* Ensures no inline spacing issues */
    border: 2px solid white;
}
