body, * {
  -webkit-touch-callout: none !important;
  -webkit-user-select: none !important;
  -khtml-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

img {
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

body {
  background: -webkit-linear-gradient(45deg, #1d1d1d, #000000, #1d1d1d);
  background: linear-gradient(45deg, #1d1d1d, #000000, #1d1d1d);
  background-size: 400% 400%;
  animation: gradientAnimation 15s ease infinite;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  position: relative;
  overflow: auto;
}

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

#matrix {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
}

header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

header img {
  width: 150px;
  border-radius: 50%;
}

.img-div {
  padding: 10px;
  width: 150px;
  border-radius: 50%;
  border: 1px dashed #ffffff80;
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

h1 {
  position: relative;
  display: inline-block;
  font-size: 2rem;
  color: white; /* Fallback color */
  background-image: linear-gradient(120deg, white 50%, gray 25%, gray 50%, white 50%);
  background-size: 50%; /* Creates a compressed repeated gradient */
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; /* Initially hide solid color */
  animation: colorWipeDiagonal 2s ease-out forwards;
  animation-delay: 1s;
}

/* Diagonal Wipe Animation */
@keyframes colorWipeDiagonal {
  0% {
    background-position: 200%;
  }
  100% {
    background-position: 0%;
  }
}



.h1-div {
  padding: 5px 10px;
  max-width: 800px;
  margin-bottom: 20px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icons {
  padding: 5px 10px;
  max-width: 800px;
  margin-bottom: 20px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  transition: backdrop-filter 0.3s ease;
}

.icon-instagram:hover ~ .social-icons,
.icon-instagram:hover {
  backdrop-filter: blur(15px);
  filter: drop-shadow(0 0 25px rgb(131, 58, 180))
          drop-shadow(0 0 25px rgb(253, 29, 29))
          drop-shadow(0 0 45px rgb(252, 175, 69));
}

.icon-linkedin:hover ~ .social-icons,
.icon-linkedin:hover {
  backdrop-filter: blur(15px);
  filter: drop-shadow(0 0 15px rgb(0, 118, 181))
          drop-shadow(0 0 25px rgb(0, 118, 181))
          drop-shadow(0 0 45px rgb(0, 118, 181));
}

.icon-discord:hover ~ .social-icons,
.icon-discord:hover {
  backdrop-filter: blur(15px);
  filter: drop-shadow(0 0 15px rgb(88, 101, 242))
          drop-shadow(0 0 25px rgb(88, 101, 242))
          drop-shadow(0 0 45px rgb(88, 101, 242));
}

.icon-whatsapp:hover ~ .social-icons,
.icon-whatsapp:hover {
  backdrop-filter: blur(15px);
  filter: drop-shadow(0 0 15px rgb(37, 211, 101))
          drop-shadow(0 0 25px rgb(37, 211, 101))
          drop-shadow(0 0 45px rgb(37, 211, 101));
}

.icon-youtube:hover ~ .social-icons,
.icon-youtube:hover {
  backdrop-filter: blur(15px);
  filter: drop-shadow(0 0 15px rgb(255, 0, 0))
          drop-shadow(0 0 25px rgb(255, 0, 0))
          drop-shadow(0 0 45px rgb(255, 0, 0));
}

.icon img {
  position: relative;
}

.social-icons a {
  text-decoration: none;
  color: #fff;
  transition: transform 0.3s ease;
}

.social-icons img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;

}

.social-icons a:hover img {
  transform: scale(1.2);
}

.links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.links a {
  background-color: #00000031;
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.2rem;
  color: #fff;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 25px;
  border: 1px dashed #ffffff80;
  transition: border-style 0.4s ease;
}

.links a:hover {
  background-color: #38383831;
  border-style: solid;
}

/* break {
  border: 0;
  height: 1px;
  background-color: #8b8b8b;
  margin: 20px 5%;
  position: relative;
}

break:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background-color: #8b8b8b;
  border-radius: 2px;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

break:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background-color: #8b8b8b;
  border-radius: 50%;
  transform: translate(-50%, -50%);
} */

break {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  margin: 2rem 0;
  position: relative;
}

break::after {
  content: "Bracken";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-color);
  background: var(--bg-dark);
  padding: 0 1rem;
  font-size: 0.8rem;
}


.box-icon {
  width: 24px;
}

/* Mouse Tail Circle */
.trail {
  position: fixed;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(98, 0, 255, 0.8);
  pointer-events: none;
  transition: transform 0.1s;
}
