@import url('https://fonts.googleapis.com/css2?family=Jacquard+24&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
:root{
    --background-color: #000000;
    --secondary-color: #bbbbbb;
}

body{
    background-color: var(--background-color) !important;
    overflow: hidden;
}
h1,h2,h3,h4,h5,h6,p,span,td,a{
    cursor: pointer;
}

.bloodlusted {
    font-family: 'Jacquard 24', system-ui;
    font-style: italic;
    font-size: 9em;
    color: red;
    margin-right: 0.2em;
}
canvas.particles-js-canvas-el{
    position: absolute;
    height: 100% !important;
    width: 100%;
    top: 0;
    right: 0;
    left: 0;
    z-index: -10000;
    margin: 0px;
}

#particles-js {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: -10000;
    top:0;
    left:0;
  }

.hero_section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    box-sizing: border-box;
    flex-direction: column;
    margin-top: -4em;
}

.buttons {
    display: flex;
    justify-content: center;
    padding-top: 3.5em;
}

.buttons a{
    color:#fff;
    line-height:30px;
    font-size:30px;
    margin: 0 20px;
    text-decoration:none;
}

.buttons a i{
    line-height:30px;
    font-size:4.5rem;
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1); 
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1); 
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1);
    transition: all 200ms ease-in;
    transform: scale(1);
}
.buttons a:hover i{
    box-shadow: 0px 0px 150px #000000;
    z-index: 2;
    -webkit-transition: all 200ms ease-in;
    -webkit-transform: scale(1.25);
    -ms-transition: all 200ms ease-in;
    -ms-transform: scale(1.25);   
    -moz-transition: all 200ms ease-in;
    -moz-transform: scale(1.25);
    transition: all 200ms ease-in;
    transform: scale(1.25);
    color: #ff0000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem;
  background: rgba(0, 0, 0, 0.85); /* Gradient background */
  box-shadow: 0 0 5px white;
  border-bottom: 1px solid white;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
}
.navbar-brand {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.3rem;
  margin-left: 2rem;
}
.navbar-brand:hover {
  color: #ffdc00;
  text-shadow: 0 0 8px rgba(255, 220, 0, 0.8);
}
.navbar-nav {
  list-style: none;
  gap: 1rem;
}
.nav-item {
  margin-left: 1rem;
}
.nav-align {
  margin-right: 2rem;
}
.nav-link {
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #ffeaa7;
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}
.nav-link i {
  margin-right: 8px;
}
.nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s;
}
.nav-link:hover::after {
  width: 100%;
}
.navbar-toggler {
  border: 2px solid #fff;
  background-color: rgba(255, 255, 255, 0.2);
}

.navbar-toggler:hover {
background-color: rgba(255, 220, 0, 0.8);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
@media (max-width: 992px) {
  .navbar-nav {
      text-align: center;
      width: 100%;
  }
  .nav-item {
      margin-left: 0;
  }
}

.notification {
  background-color: rgba(150, 150, 150, 0.2);
  color: #fff;
  padding: 10px 10px;
  text-align: center;
  border-radius: 15px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2em;
  position: absolute;
  bottom: 3em;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.join {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  padding: 0 10px;
  color: white;
  text-shadow: 2px 2px #000;
  text-transform: uppercase;
  border: solid 2px #fff;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 17px;
  background-color: rgba(88, 101, 242, 1);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all .5s ease;
  cursor: pointer;
}

.join:active {
  transform: scale(.9);
  transition: all 100ms ease;
}

.join svg {
  transition: all .5s ease;
  z-index: 2;
}

.play {
  transition: all .5s ease;
  transition-delay: 300ms;
}

.join:hover svg {
  transform: scale(1.3) translate(-40%);
}

.now {
  position: absolute;
  left: 0;
  transform: translateX(290%);
  transition: all .5s ease;
  z-index: 2;
}

.join:hover .now {
  transform: translateX(90%);
  transition-delay: 300ms;
}

.join:hover .play {
  transform: translateX(200%);
  transition-delay: 300ms;
}


@media (max-width: 500px) {
    .hero_section {
        transform: scale(0.6);
        margin-top: -5em;
    }
    .social {
        padding-top: 3em;
        transform: scale(1.1);
    }
    .notification {
      bottom: -8em;
    }
}

@media (max-height: 600px) {
    .hero_section {
        transform: scale(0.8);
        margin-top: 0em;
    }
    .notification {
      bottom: -2em;
    }

}

@media (min-width: 500px) and (max-width: 600px) {
    .hero_section {
        transform: scale(0.8);
    }
    .notification {
      bottom: -2em;
    }
}


@media (max-width: 700px) and (max-height: 390px) {
    .hero_section {
        padding-top: 4em;
        transform:scale(0.66);
    }
    .social {
        padding-top: 3em;
        margin-bottom: -5em;
    }
    .notification {
      bottom: -12em;
    }
    body {
      overflow: visible;
    }
}

@media (min-width: 700px) and (max-height: 600px) {
    .hero_section {
        padding-top: 6em;
    }
    .social {
        padding-top: 3em;
        margin-bottom: -3em;
    }
    .notification {
      bottom: -12em;
    }
    body {
      overflow: visible;
    }
}

@media (min-width: 1000px) and (min-height: 700px) and (max-height: 800px) {
    .hero_section {
        padding-top: 0em;
    }
    .notification {
      bottom: 0em;
    }
}

@media (min-width: 1150px) and (max-width: 1280px) {
  .hero_section {
      margin-top: -2.5em;
  }
  .notification {
    bottom: 0em;
  }
}

@media (min-width: 1024px) and (max-width: 1150px) and (min-height: 800px) and (max-height: 1300px) {
  .hero_section {
      margin-top: -2em;
  }
  .notification {
    bottom: -5em;
  }
}


.btn {
    --border-color: linear-gradient(-45deg, #ff0000, #ff0000, #5500ff);
    --border-width: 0.125em;
    --curve-size: 0.5em;
    --blur: 30px;
    --bg: #080312;
    --color: #ffffff;
    color: var(--color);
    cursor: pointer;
    /* use position: relative; so that BG is only for .btn */
    position: relative;
    isolation: isolate;
    display: inline-grid;
    place-content: center;
    padding: 0.5em 1.5em;
    border: 0;
    text-transform: uppercase;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.6);
    clip-path: polygon(
      /* Top-left */ 0% var(--curve-size),
      var(--curve-size) 0,
      /* top-right */ 100% 0,
      100% calc(100% - var(--curve-size)),
      /* bottom-right 1 */ calc(100% - var(--curve-size)) 100%,
      /* bottom-right 2 */ 0 100%
    );
    transition: color 250ms;
  }
  
  .btn::after,
  .btn::before {
    content: "";
    position: absolute;
    inset: 0;
  }
  
  .btn::before {
    background: var(--border-color);
    background-size: 300% 300%;
    animation: move-bg7234 5s ease infinite;
    z-index: -2;
  }
  
  @keyframes move-bg7234 {
    0% {
      background-position: 31% 0%;
    }
  
    50% {
      background-position: 70% 100%;
    }
  
    100% {
      background-position: 31% 0%;
    }
  }
  
  .btn::after {
    background: var(--bg);
    z-index: -1;
    clip-path: polygon(
      /* Top-left */ var(--border-width)
        calc(var(--curve-size) + var(--border-width) * 0.5),
      calc(var(--curve-size) + var(--border-width) * 0.5) var(--border-width),
      /* top-right */ calc(100% - var(--border-width)) var(--border-width),
      calc(100% - var(--border-width))
        calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
      /* bottom-right 1 */
        calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
        calc(100% - var(--border-width)),
      /* bottom-right 2 */ var(--border-width) calc(100% - var(--border-width))
    );
    transition: clip-path 500ms;
  }
  
  .btn:where(:hover, :focus)::after {
    clip-path: polygon(
      /* Top-left */ calc(100% - var(--border-width))
        calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
      calc(100% - var(--border-width)) var(--border-width),
      /* top-right */ calc(100% - var(--border-width)) var(--border-width),
      calc(100% - var(--border-width))
        calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5)),
      /* bottom-right 1 */
        calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
        calc(100% - var(--border-width)),
      /* bottom-right 2 */
        calc(100% - calc(var(--curve-size) + var(--border-width) * 0.5))
        calc(100% - var(--border-width))
    );
    transition: 200ms;
  }
  
  .btn:where(:hover, :focus) {
    color: #fff;
  }
  
  .social {
    display: flex;
    flex-direction: column;
    gap: 0.5em;
    padding-top: 2em;
    margin-bottom:-2em;
  }
  
  .up {
    display: flex;
    flex-direction: row;
    gap: 0.5em;
  }
  
  .down {
    display: flex;
    flex-direction: row;
    gap: 0.5em;
  }
  
  .card1 {
    width: 90px;
    height: 90px;
    outline: none;
    border: none;
    background: white;
    border-radius: 90px 5px 5px 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
      rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: 0.2s ease-in-out;
  }
  
  .gmail {
    margin-top: 1.5em;
    margin-left: 1.0em;
    fill: #E53935;
  }
  
  .card2 {
    width: 90px;
    height: 90px;
    outline: none;
    border: none;
    background: white;
    border-radius: 5px 90px 5px 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
      rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: 0.2s ease-in-out;
  }
  
  .linkedin {
    margin-top: 1.5em;
    margin-left: -1.2em;
    fill: #0077b5;
  }
  
  .card3 {
    width: 90px;
    height: 90px;
    outline: none;
    border: none;
    background: white;
    border-radius: 5px 5px 5px 90px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
      rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: 0.2s ease-in-out;
  }
  
  .github {
    margin-top: -0.6em;
    margin-left: 1.2em;
  }
  
  .card4 {
    width: 90px;
    height: 90px;
    outline: none;
    border: none;
    background: white;
    border-radius: 5px 5px 90px 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
      rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    transition: 0.2s ease-in-out;
    position:relative;
  }
  
  .discord {
    margin-top: -0.6em;
    margin-left: -1.0em;
    fill: #5865F2;
  }
  
  .card1:hover {
    cursor: pointer;
    scale: 1.1;
    background-color: #E53935;
    box-shadow: 0 0 10px white;
  }
  
  .card1:hover .gmail {
    fill: white;
  }
  
  .card2:hover {
    cursor: pointer;
    scale: 1.1;
    background-color: #0077b5;
    box-shadow: 0 0 10px white;
  }
  
  .card2:hover .linkedin {
    fill: white;
  }
  
  .card3:hover {
    cursor: pointer;
    scale: 1.1;
    background-color: black;
    box-shadow: 0 0 10px white;
  }
  
  .card3:hover .github {
    fill: white;
  }
  
  .card4:hover {
    cursor: pointer;
    scale: 1.1;
    background-color: #5865F2;
    box-shadow: 0 0 10px white;
  }
  
  .card4:hover .discord {
    fill: white;
  }

  .tooltip-text {
    font-family: "Poppins", sans-serif;
    font-size: large;
    visibility: hidden;
    width: 120px;
    background-color: #5865F2;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
  }
