:root {
    --primary-clr: #FF8000;
    --secondary-clr: #FF5900;
    --accent-clr: #FF4000;
    --body-clr: #000F08;
    /* --body-2: #FF2600; */
    --body-2: #FF4000;
    --body-lt: #faf6f1;
    --font-light: #FFFFFF;
    --font-dark: #191919;
    --x: 45deg;
    --shadow: 0 0.5rem 0.5rem rgba(0,0,0,0.65);
    --reverse-shadow:0 -0.5rem 0.5rem rgba(0,0,0,0.65);
    --shadow-color: rgba(0,0,0,0.65);
    --strong-shadow: 0.1rem 0.1rem 0.1rem var(--shadow-color),
                    0.1rem 0.2rem 0.1rem var(--shadow-color),
                    0.1rem 0.3rem 0.1rem var(--shadow-color),
                    0.1rem 0.4rem 0.1rem var(--shadow-color);
    --radius: 1rem;
    --small-raius: 0.5rem;
    --border: 0.1rem solid rgba(255, 255, 255, 0.3);
    --border-red: 0.1rem solid #f26629;
    --border-white: 0.1rem solid #FFFFFF;
    --border-dark: 0.1rem solid #1d1c1a; 
    --bg-light-tp: rgba(255, 255, 255, 0.1);
    --bg-dark-tp: rgba(0,0,0,0.1);
    --bg-darker-tp: rgba(0, 0, 0, 0.5);
    --dt-primary: #a5f9c5;
    --dt-secondary: #fb4a4f;
    --reflect: below 0.25rem linear-gradient(transparent, #000);
    --reflect2: below 0.25rem linear-gradient(transparent, transparent, transparent, #0005);
    --reflect3: below 0rem linear-gradient(transparent, transparent, transparent, #000);
    --reflect4: below 0rem linear-gradient(transparent, transparent, transparent, #0005);
}

@font-face {
    font-family: Headers;
    src: url(headers.ttf);
}

@font-face {
    font-family: General;
    src: url(gen2.otf);
}

@font-face {
    font-family: DevTom;
    src: url(/static/Store/fonts/DT.otf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: General;
    font-size: 10px;
}

body {
    position: relative;
    color: var(--font-dark);
    width: 100%;
    background: var(--body-lt);
    overflow-x: hidden;
    overflow-y: hidden;
}

::-webkit-scrollbar {
    width: 1rem;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(transparent, var(--primary-clr), var(--accent-clr));
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(transparent, var(--secondary-clr));
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
small {
    pointer-events: none;
    user-select: none;
    font-weight: 300;
    letter-spacing: 0.1rem;
}

a {
    text-decoration: none;
    user-select: none;
}

img,
button {
    user-select: none;
}

span {
    user-select: none;
    pointer-events: none;
}

ul {
    list-style: none;
}

/* loader */
#circle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(225deg, var(--font-dark), var(--body-2));
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 2rem;
    gap: 2rem;
    transition: 1.5s;
    z-index: 20000;
}

#circle-container .gen-cnt img {
    width: 20rem;
    height: 20rem;
}

#loader-2 span {
    display: inline-block;
    height: 35px;
    width: 35px;
    background: var(--primary-clr);
    border-radius: 0px;
    -webkit-box-reflect: var(--reflect);
    border-radius: var(--small-raius);
}

#loader-2 span:nth-child(1) {
    -webkit-animation: rotateY 2s 0.3s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
    animation: rotateY 2s 0.3s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
}
#loader-2 span:nth-child(2) {
    -webkit-animation: rotateY 2s 0.6s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
    animation: rotateY 2s 0.6s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
}
#loader-2 span:nth-child(3) {
    -webkit-animation: rotateY 2s 0.9s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
    animation: rotateY 2s 0.9s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
}
#loader-2 span:nth-child(4) {
    -webkit-animation: rotateY 2s 1.2s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
    animation: rotateY 2s 1.2s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
}
#loader-2 span:nth-child(5) {
    -webkit-animation: rotateY 2s 1.5s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
    animation: rotateY 2s 1.5s infinite cubic-bezier(0.65, 0.03, 0.735, 0.045);
}

@keyframes rotateY {
    0% {
      transform: rotateY(0deg);
    }
    50% {
      transform: rotateY(90deg);
      background: #ffa54b;
    }
    100% {
      transform: rotateY(0deg);
    }
  }

  .gen-cnt {
    position: relative;
    width: 90%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    padding: 4rem 0;
    z-index: 10;
}

.gen-cnt.columned {
    justify-content: center;
    flex-direction: column;
}

.icons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 4rem;
}

.back-soon {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1.5rem
}

  .back-soon h1 {
    position: relative;
    color: var(--font-light);
    font-size: 3.5rem;
    font-weight: 100;
    text-align: center;
    letter-spacing: 0.1rem;
    width: fit-content;
  }

  .back-soon h1::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.1rem;
    background: var(--font-light);
  }

  .back-soon h2 {
    font-size: 2rem;
    color: var(--font-light);
    letter-spacing: 0.1rem;
    opacity: 0.5;
    font-weight: 300;
  }

  .footer-sci {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.footer-sci li {
    position: relative;
    width: 3rem;
    height: 3rem;
    border: var(--border-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-reflect: var(--reflect2);
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.footer-sci li:hover {
    border: var(--border);
    background: var(--bg-light-tp);
}

.footer-sci li a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    color: var(--font-light);
    text-align: center;
}