@font-face {
  /*название шрифта*/
  font-family: "wimpFont"; 
  /*адрес шрифта и тип */
  src: url("/assets/fonts/wimp.ttf") format("truetype"); 
  font-style: normal; 
  font-weight: normal; 
} 
@font-face {
  /*название шрифта*/
  font-family: "bloodFont"; 
  /*адрес шрифта и тип */
  src: url("/assets/fonts/Bloodthirsty.ttf") format("truetype"); 
  font-style: normal; 
  font-weight: normal; 
} 

@font-face {
  font-family: 'PT Mono';
  src: local('PT Mono'), local('pt-mono_regular'),
    url('assets/fonts/pt-mono_regular.woff2') format('woff2'),
    url('assets/fonts/pt-mono_regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  ascent-override: 100%; //TODO fix font baseline position, this implementation does not work on safari browsers
}

@font-face {
  font-family: 'PT Mono';
  src: local('PT Mono Bold'), local('pt-mono_bold'),
    url('assets/fonts/pt-mono_bold.woff2') format('woff2'),
    url('assets/fonts/pt-mono_bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
  ascent-override: 100%;
}

* {
    margin: 0;
    padding: 0;
 }
::-webkit-scrollbar {
    width: 7px;
    background-color: rgba(0, 0, 0,0.4);
}
::-webkit-scrollbar-thumb {
    background-color: rgba(122, 122, 122,0.4);
}
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(222, 222, 222,0.8);
}

body {
    background-color: #000000;
    color: #aaa;
    font-family: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

a {
  color: #ffffff;
  text-decoration: none;
 }

.layout {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

header {
    width: 100%;
    max-width: 1500px;
    margin: 10px auto 0;
    padding: 0 20px;
    border-radius: 50px;
    background: #0c0c0e;
    min-height: 80px;
    display: grid;
    grid-template-areas: "left nav right";
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 16px;
    box-sizing: border-box;
}
.sideBlock {
    display: flex;
    align-items: center;
}

header > .sideBlock:first-child {
    grid-area: left;
    justify-content: flex-start;
}

header > .sideBlock:last-child {
    grid-area: right;
    justify-content: flex-end;
}
header > .rightUserPanel {
    grid-area: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

nav {
    grid-area: nav;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 10px;
    position: relative;
    min-width: 0;
}

nav a {
    text-decoration: none;
    color: #aaa;
    font-size: 18px;
    padding: 10px 20px;
    transition: color 0.3s;
    white-space: nowrap;
}

nav a:hover {
    color: #fff;
}

.hover-indicator {
    position: absolute;
    height: 41px;
    width: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #fff;
    border-radius: 8px;
    transition: all 0.3s ease;
    pointer-events: none;
    opacity: 0;
}

main {
    flex: 1;
    padding: 20px;
}


footer {
    min-height: 80px;
    width: min(1500px, 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background-color: #0c0c0e;
    color: #aaa;
    padding: 10px 0;
    border-radius: 50px;
    margin-bottom: 10px;
}
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.login-button {
    color: #aaa;
    text-decoration: none;
    font-size: 18px;
}

.login-button div {
    color: #aaa;
    font-size: 18px;
    padding: 8px 15px;
}

.login-button div:hover {
    color: #ffffff;
    transition: 0.5s;
}

/* ===== АДАПТИВ ===== */

/* планшеты */
@media (max-width: 992px) {
    nav a {
        font-size: 16px;
        padding: 8px 12px;
    }

    header {
        padding: 0 10px;
    }

    .sideBlock img {
        height: 50px;
    }
}

/* телефоны */
@media (max-width: 768px) {
    header {
        grid-template-areas:
          "left"
          "nav"
          "right";   /* три строки: логотип, меню, картинка */
        grid-template-columns: 1fr;
        row-gap: 10px;
        padding: 10px;
        border-radius: 20px;
        text-align: center;

        justify-items: center;  /* <<< все колонки по центру */
    }

    nav {
        justify-content: center;
    }

    nav a {
        font-size: 16px;
        padding: 6px 10px;
    }

    .sideBlock {
        justify-content: center; /* центрируем содержимое sideBlock */
    }

    .sideBlock img {
        height: 40px;
    }
}

.linkFooter {
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 20px;
}

.flex {
  display: flex;
}
.w32 {
  width: 55px;
}
.pl-6 {
  padding-left: 6px;
}
.pr-6 {
  padding-right: 6px;
}
.items-center {
  align-items: center;
  text-align: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-center {
  justify-content: center;
}
.h-full {
  height: 100%;
}
.w-full{
  width: 100%;
}
.relative{
  position: relative;
}
.topBar {
  font-size: 20px;
  color: #89898a;
  transition: all .2s linear;
}
.topBar:hover {
  border-bottom: 2px solid white;
  span {
    transition: all .2s linear;
    color: white;
  }
}
.transperent {
  border-bottom: 2px solid transparent;
}

.showDiscord{
  border: 1px solid #3f3f46;
  font-family: Impact normal, sans-serif;
  margin-top: 100px;
  margin-left: 20px;
  margin-right: 20px;
  width: 300px;
  background-color: rgba(27, 27, 30, 0.8);
  border-radius: 15px;
}

.showRef{
  border: 1px solid #3f3f46;
/*  font-family: wimpFont, sans-serif;*/
  font-family: Impact normal, sans-serif;
  margin-top: 20px;
  margin-left: 20px;
  margin-right: 20px;
  width: 300px;
  background-color: rgba(27, 27, 30, 0.8);
  border-radius: 15px;
}

.gridRef{
  display: grid;
  grid-template-columns: auto auto;
}

.input {
  margin: 30px;
  background: none;
  border: 1px solid #353535;
  outline: none;
  max-width: 200px;
  padding: 11px 23px;
  font-size: 16px;
  color: #979797;
  border-radius: 0.6em;
}

.btn1 {
  cursor: pointer;
  --color: #1BFD9C;
  font-size: 15px;
  height: 50px;
  width: 120px;
  margin-top: 15px;
  letter-spacing: 0.06em;
  position: relative;
  font-family: inherit;
  border-radius: 0.6em;
  overflow: hidden;
  transition: all 0.3s;
  line-height: 1.4em;
  border: 2px solid var(--color);
  background: linear-gradient(to right, rgba(27, 253, 156, 0.1) 1%, transparent 40%,transparent 60% , rgba(27, 253, 156, 0.1) 100%);
  color: var(--color);
  box-shadow: inset 0 0 10px rgba(27, 253, 156, 0.4), 0 0 9px 3px rgba(27, 253, 156, 0.1);
}

.btn1:hover {
  color: #82ffc9;
  box-shadow: inset 0 0 10px rgba(27, 253, 156, 0.6), 0 0 9px 3px rgba(27, 253, 156, 0.2);
}

.btn1:before {
  content: "";
  position: absolute;
  left: -4em;
  width: 4em;
  height: 100%;
  top: 0;
  transition: transform .4s ease-in-out;
  background: linear-gradient(to right, transparent 1%, rgba(27, 253, 156, 0.1) 40%,rgba(27, 253, 156, 0.1) 60% , transparent 100%);
}

.btn1:hover:before {
  transform: translateX(15em);
}


.boton-elegante {
  height: 10px;
  padding: 15px 30px;
  border: 2px solid #2c2c2c;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 30px;
  transition: all 0.4s ease;
  outline: none;
  position: relative;
  overflow: hidden;
  font-weight: bold;
}

.boton-elegante::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.25) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: scale(0);
  transition: transform 0.5s ease;
}

.boton-elegante:hover::after {
  transform: scale(4);
}

.boton-elegante:hover {
  border-color: #666666;
  background: #292929;
}
.loginFormDraw{
  border: 2px solid #3f3f46;
  font-family: Impact normal, sans-serif;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  width: 300px;
  border-radius: 15px;
  padding-bottom: 20px;
}


.createAccBtn{
  width: 150px;
  color: #2678a1;
  transition: all 0.5s linear;
}
.createAccBtn:hover {
  color: #1c8ac1;
}

.registerFormDraw{
  border: 2px solid #3f3f46;
  font-family: Impact normal, sans-serif;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  width: 300px;
  border-radius: 15px;
  padding-bottom: 20px;
}

/*Referal Links*/
.refLinks{
  width: clamp(120px, 16vw, 320px);
  height: clamp(80px, 6vh, 120px);
  margin-top: 40px;
  margin-right: 20px;
  margin-left: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  border: none;
  font-size: 18px;
  position: relative;
  transition: 500ms;
}

.refLinksSpan {
  color: gray;
  position: relative;
  transition: 500ms;
  font-size: clamp(14px, 1vw, 18px);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
.refLinks:hover .refLinksSpan {
  color: white;
}

.refLinks .divInRef {
  transition: 500ms;
  position: absolute;
  background-color: red;
  box-shadow: 0 0 10px red, 0 0 20px red, 0 0 30px red;
}

.refLinks .RefTop {
  width: 15px;
  height: 2px;
  top: 0;
  left: 0;
}

.refLinks .RefBottom {
  width: 15px;
  height: 2px;
  bottom: 0;
  right: 0;
}

.refLinks .RefLeft {
  width: 2px;
  height: 15px;
  top: 0;
  left: 0;
}

.refLinks .RefRight {
  width: 2px;
  height: 15px;
  bottom: 0;
  right: 0;
}

.refLinks:hover:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.refLinks:hover .RefTop, 
.refLinks:hover .RefBottom {
  width: 100%;
}

.refLinks:hover .RefLeft,
.refLinks:hover .RefRight {
  height: 100%;
}

.accountBTN {
  height: 40px; 
  width: 40px; 
  background-color: black; 
  border-radius: 25px; 
  border: 2px solid grey;
  transition: 0.5s;
}

.accountBTName {
  text-transform: uppercase; 
  font-size: 20px; 
  color: grey;
  transition: 0.5s;
}

.accountBTN:hover {
  border: 2px solid white;
  color: white;
  .accountBTName {
    color: white;
  }
}

.focus {
  cursor: pointer;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  background: rgba(167, 167, 167, 15%);
  border-radius: 0.2em;
  border: 0px;
  width: 230px;
  height: 45px;
}

.text-col {
  color: rgba(242, 243, 243, 1.0);
}

.text-acc {
  margin-left: 10px;
  font-size: 18px;
}

.accSVG1 {
  position: absolute;
  right: 0;
  margin-right: 10px;
  display: block;
}

.accSVG2 {
  position: absolute;
  right: 0;
  margin-right: 10px;
  display: none;
}

.dropdownAcc {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  z-index: 999;
  margin-top: 50px;
  top: 0;
  display: none;
  position: absolute;
  background-color: rgba(20, 20, 20, 1);
  width: 230px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}

.dropdown-content {
  border-radius: 0.2em;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  -webkit-column-gap: 6px;
  -moz-column-gap: 6px;
  grid-column-gap: 6px;
  column-gap: 6px;
}

.regularDropText {
  line-height: 150%;
  font-size: 16px;
}
.svgAcc{
  height: 24px;
}

.border-bottom1px {
  border-bottom: 1px solid black;
  --tw-border-opacity: 1;
  border-color: rgba(200, 200, 200, var(--tw-border-opacity));
}

.dropdown-content a:hover {
  background-color: rgba(100, 100, 100, 1);
}

.show {
  display:block;
}

.leftPanelDashboardST{
  margin-top: 20px;
  margin-right: 20px;
  margin-left: 20px;
  padding-left: clamp(5px, 1vw, 10px);
  padding-right: clamp(5px, 1vw, 10px);
  padding-top: clamp(5px, 1vw, 20px);
  padding-bottom: clamp(5px, 1vw, 20px);
  border: none;
  font-size: 18px;
  position: relative;
  transition: 500ms;
  background-color: rgba(0, 0, 0, 0.0); 
  color: white; 
  cursor: pointer;
  width: clamp(80px, 12vw, 200px);
  min-height: 40px;
}

.leftPanelDashboardST .divInRef {
  transition: 500ms;
  position: absolute;
  background-color: yellow;
  box-shadow: 0 0 10px yellow, 0 0 20px yellow, 0 0 30px yellow;
}

.leftPanelDashboardST .RefTop {
  width: 15px;
  height: 2px;
  top: 0;
  left: 0;
}

.leftPanelDashboardST .RefBottom {
  width: 15px;
  height: 2px;
  bottom: 0;
  right: 0;
}

.leftPanelDashboardST .RefLeft {
  width: 2px;
  height: 15px;
  top: 0;
  left: 0;
}

.leftPanelDashboardST .RefRight {
  width: 2px;
  height: 15px;
  bottom: 0;
  right: 0;
}

.leftPanelDashboardST:hover:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.leftPanelDashboardST:hover .RefTop, 
.leftPanelDashboardST:hover .RefBottom {
  width: 100%;
}

.leftPanelDashboardST:hover .RefLeft,
.leftPanelDashboardST:hover .RefRight {
  height: 100%;
}

.leftPanelDashboardST span {
  color: #fff;
  font-size: clamp(10px, 1vw, 18px);
}

.panelShow {
  display: none;
  color: #fff;
}

.show2 {
  display: block;
}

.show3 {
  display: block;
}

.z-index10 {
  z-index: 10;
}

.relative {
  position: relative;
}
.absolute {
  position: absolute;
}

.panelStyle {
  padding: 20px 20px;
  box-shadow: 0 0 10px green, 0 0 10px green, 0 0 20px green;
  border: 1px solid green;
}

.gird {
  display: grid;
  grid-template-columns: auto auto;
}

.demoRef{
  margin-top: 20px;
  margin-right: 20px;
  margin-left: 20px;
  padding-left: clamp(5px, 1vw, 10px);
  padding-right: clamp(5px, 1vw, 10px);
  padding-top: clamp(5px, 1vw, 20px);
  padding-bottom: clamp(5px, 1vw, 20px);
  border: none;
  font-size: 18px;
  position: relative;
  transition: 500ms;
  background-color: rgba(0, 0, 0, 0.0); 
  color: white; 
  width: clamp(260px, 18vw, 360px);
  height: 120px;
}

.demoRef .divInRef {
  transition: 500ms;
  position: absolute;
  background-color: red;
  box-shadow: 0 0 10px red, 0 0 20px red, 0 0 30px red;
}

.demoRef .RefTop {
  width: 15px;
  height: 2px;
  top: 0;
  left: 0;
}

.demoRef .RefBottom {
  width: 15px;
  height: 2px;
  bottom: 0;
  right: 0;
}

.demoRef .RefLeft {
  width: 2px;
  height: 15px;
  top: 0;
  left: 0;
}

.demoRef .RefRight {
  width: 2px;
  height: 15px;
  bottom: 0;
  right: 0;
}

.demoRef:hover:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.demoRef:hover .RefTop, 
.demoRef:hover .RefBottom {
  width: 100%;
}

.demoRef:hover .RefLeft,
.demoRef:hover .RefRight {
  height: 100%;
}

.addRefFormDraw{
  border: 1px solid #212121;
  font-family: Impact normal, sans-serif;
  margin-left: auto;
  margin-right: auto;
  width: clamp(302px, 25vw, 500px);
  border-radius: 15px;
  padding-bottom: 20px;
  box-shadow: inset 4px 4px 12px #000, inset -4px -4px 12px #1f1f1f;
}

.custom-file-upload {
  border: 1px solid #ccc;
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
  margin-top: 20px;
}

input[type="file"] {
  display: none;
}
.popup-container {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
}

.popup {
    background-color: #333;
    color: white;
    padding: 15px;
    margin-top: 10px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 1;
    transition: opacity 0.5s;
    position: relative;
    overflow: hidden;
}

.popup.hide {
    opacity: 0;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    background-color: #4caf50;
    width: 100%;
    transition: width 3s linear;
}

.form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}
.form-row label {
    margin-left: clamp(5px, 1.5vw, 30px);
}
.form-row input {
    flex: 1;
}

.inputDashboard {
  margin: clamp(5px, 1.5vw, 30px);
  background: none;
  border: 1px solid #353535;
  outline: none;
  max-width: clamp(90px, 10vw, 200px);
  padding: 11px 23px;
  font-size: 16px;
  color: #979797;
}

.inputSearch {
  background: none;
  border: 1px solid #353535;
  outline: none;
  max-width: clamp(130px, 10vw, 200px);
  padding: 6px;
  font-size: 16px;
  color: #979797;
}

.buttonSearch {
  cursor: pointer;
  border: 1px solid #353535;
  background: none;
  outline: none;
  padding: 6px;
}

.formUserSearch {
  margin-top: 20px;
  display: flex; 
  align-items: center;
}

.popup .username {
    color: greenyellow;
    font-weight: bold;
}

.dashboardShowPanel {
  border: 1px solid #212121;
  font-family: Impact normal, sans-serif;
  margin-left: auto;
  margin-right: auto;
  width: clamp(302px, 100%, 100%);
  padding-top: 20px;
  padding-bottom: 20px;
}

.mobileMenuShow {
  font-weight: bold;
  z-index: 10;
  color: white;
  position: absolute;
  background: rgba(20, 20, 20, 1.0);
  margin-top: 57px;
  right: 0;
  width: clamp(200px, 20vw, 400px);
}

.mobileMenuBTNChoice {
  font-size: 20px;
}
.mobileMenuBTNChoice div {
  height: 40px;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
}

.mobileMenuBTN {
  background: rgba(0, 0, 0, 0.0);
  border: none;
}

.borderBot1px {
  height: 1px; 
  width: 100%; 
  background: rgba(100, 100, 100, 1);
}

.refLinkEditPanel {
  border: 1px solid #212121;
  font-family: Impact normal, sans-serif;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  padding-bottom: 20px;
  width: 80%;
}

.btnRed {
  cursor: pointer;
  --color: #fd1b1b;
  font-size: 15px;
  height: 50px;
  width: 120px;
  margin-top: 15px;
  letter-spacing: 0.06em;
  position: relative;
  font-family: inherit;
  border-radius: 0.6em;
  overflow: hidden;
  transition: all 0.3s;
  line-height: 1.4em;
  border: 2px solid var(--color);
  background: linear-gradient(to right, rgba(253, 156, 27, 0.1) 1%, transparent 40%,transparent 60% , rgba(253, 156, 27, 0.1) 100%);
  color: var(--color);
  box-shadow: inset 0 0 10px rgba(253, 156, 27, 0.4), 0 0 9px 3px rgba(253, 156, 27, 0.1);
}

.btnRed:hover {
  color: #ff8282;
  box-shadow: inset 0 0 10px rgba(253, 156, 27, 0.6), 0 0 9px 3px rgba(253, 156, 27, 0.2);
}

.btnRed:before {
  content: "";
  position: absolute;
  left: -4em;
  width: 4em;
  height: 100%;
  top: 0;
  transition: transform .4s ease-in-out;
  background: linear-gradient(to right, transparent 1%, rgba(253, 156, 27, 0.1) 40%,rgba(253, 156, 27, 0.1) 60% , transparent 100%);
}

.btnRed:hover:before {
  transform: translateX(15em);
}

/*Referal Links*/
.refLinksAdmin{
  width: clamp(150px, 16vw, 320px);
  height: clamp(120px, 3vh, 70px);
  margin-top: 40px;
  margin-right: 20px;
  margin-left: 20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 15px;
  padding-bottom: 15px;
  border: none;
  font-size: 18px;
  position: relative;
  transition: 500ms;
}

.refLinksSpanAdmin {
  color: gray;
  position: relative;
  transition: 500ms;
  font-size: clamp(14px, 1vw, 18px);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}
.refLinksAdmin:hover .refLinksSpanAdmin {
  color: white;
}

.refLinksAdmin .divInRef {
  transition: 500ms;
  position: absolute;
  background-color: red;
  box-shadow: 0 0 10px red, 0 0 20px red, 0 0 30px red;
}

.refLinksAdmin .RefTop {
  width: 15px;
  height: 2px;
  top: 0;
  left: 0;
}

.refLinksAdmin .RefBottom {
  width: 15px;
  height: 2px;
  bottom: 0;
  right: 0;
}

.refLinksAdmin .RefLeft {
  width: 2px;
  height: 15px;
  top: 0;
  left: 0;
}

.refLinksAdmin .RefRight {
  width: 2px;
  height: 15px;
  bottom: 0;
  right: 0;
}

.refLinksAdmin:hover:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.refLinksAdmin:hover .RefTop, 
.refLinksAdmin:hover .RefBottom {
  width: 100%;
}

.refLinksAdmin:hover .RefLeft,
.refLinksAdmin:hover .RefRight {
  height: 100%;
}

/* ===== АДАПТИВ ===== */

/* планшеты */
@media (max-width: 992px) {
    nav a {
        font-size: 16px;
        padding: 8px 12px;
    }

    header {
        padding: 0 10px;
    }

    .sideBlock img {
        height: 50px;
    }
}

/* телефоны */
@media (max-width: 768px) {
    header {
        grid-template-areas:
          "left"
          "nav"
          "right";
        grid-template-columns: 1fr;
        row-gap: 10px;
        padding: 10px;
        border-radius: 20px;
        text-align: center;

        justify-items: center;
    }

    nav {
        justify-content: center;
    }

    nav a {
        font-size: 16px;
        padding: 6px 10px;
    }

    .sideBlock {
        justify-content: center;
    }

    .sideBlock img {
        height: 40px;
    }
}

.footer_text {
  color: #7f7f7f;
  transition: .2s;
}

.footer_text:hover {
  color: #ffffff;
}

.footer_span {
  background-image: repeating-linear-gradient(
    90deg,
    #ff0000 0,
    #006cff 50px,
    #ff0000 100px
  );
  background-size: 100px 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;

  animation: moveGradient 4s linear infinite;
}

@keyframes moveGradient {
  from {
    background-position: 0 50%;
  }
  to {
    background-position: 100px 50%;
  }
}

.login_btn {
  border: 2px solid #232323; 
  border-radius: 50px; 
  background-color: #0F0F10;
  transition: .3s;
}
.login_btn:hover {
  background-color: #000;
}