/*!************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/assets/styles/styles.sass ***!
  \************************************************************************************************************************/
@font-face {
  font-family: "Fira Code";
  font-weight: 300;
  font-style: normal;
  src: url(../fonts/a81da37f7831691b78df.woff) format("woff");
}
@font-face {
  font-family: "Fira Code";
  font-weight: 400;
  font-style: normal;
  src: url(../fonts/a25d3a54ca0de3944eb7.woff) format("woff");
}
@font-face {
  font-family: "Fira Code";
  font-weight: 500;
  font-style: normal;
  src: url(../fonts/97af194ae4a793b66f40.woff) format("woff");
}
@font-face {
  font-family: "Fira Code";
  font-weight: 600;
  font-style: normal;
  src: url(../fonts/4558fb863ac61e930234.woff) format("woff");
}
@font-face {
  font-family: "Fira Code";
  font-weight: 700;
  font-style: normal;
  src: url(../fonts/e3428b597c378e1fdcb0.woff) format("woff");
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
a,
img,
ol,
ul,
li,
fieldset,
form,
label,
article,
aside,
details,
header,
nav,
section,
summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  appearance: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body, html {
  background-color: var(--background);
  color: var(--white);
  font-family: "Fira Code", monospace;
  display: flex;
  gap: 112px;
  flex-direction: column;
  overflow-x: hidden;
}

.media-header {
  position: fixed;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  height: auto;
  width: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .media-header {
    display: none;
  }
}
.media-header::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -80px;
  height: calc(50% - 40px);
  width: 1px;
  background: var(--primary);
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0.3;
  animation: lineFlow 3s ease-in-out infinite;
}
.media-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -80px;
  height: calc(50% - 40px);
  width: 1px;
  background: var(--primary);
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0.3;
  animation: lineFlow 3s ease-in-out infinite reverse;
}
.media-header__links {
  display: flex;
  flex-direction: column;
  gap: 24px;
  pointer-events: auto;
  position: relative;
  z-index: 2;
  padding: 20px 0;
}
.media-header__links .media {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.media-header__links .media::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50%;
  z-index: -1;
}
.media-header__links .media:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 12px 30px rgba(79, 172, 254, 0.3);
  border-color: var(--primary);
}
.media-header__links .media:hover::before {
  opacity: 0.2;
}
.media-header__links .media:hover .media__icon {
  filter: brightness(0) invert(1);
  transform: scale(1.1);
}
.media-header__links .media .media__icon {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

@keyframes lineFlow {
  0% {
    opacity: 0.1;
    transform: translateX(-50%) scaleY(0.8);
  }
  50% {
    opacity: 0.4;
    transform: translateX(-50%) scaleY(1);
  }
  100% {
    opacity: 0.1;
    transform: translateX(-50%) scaleY(0.8);
  }
}
.hamburger {
  width: 32px;
  margin: 0;
  aspect-ratio: 1;
  display: none;
  appearance: none;
  position: absolute;
  cursor: pointer;
  right: 8px;
  top: 32px;
  z-index: 9999;
}
.hamburger::before, .hamburger::after {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  top: 30%;
  background-color: var(--gray);
  transition: all 0.2s ease;
}
.hamburger::after {
  width: 75%;
  top: 70%;
  right: 0;
}
@media (max-width: 1024px) {
  .hamburger {
    display: block;
  }
  .hamburger:checked::after {
    transform: translateY(-50%) rotateZ(45deg);
    width: 100%;
    top: 50%;
  }
  .hamburger:checked::before {
    transform: translateY(-50%) rotateZ(-45deg);
    top: 50%;
  }
  .hamburger:checked ~ .media-header {
    display: flex;
    top: calc(100% - 16px);
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 9999;
  }
  .hamburger:checked ~ .media-header .media {
    width: 48px;
  }
  .hamburger:checked ~ .media-header .media-header__links {
    display: flex;
    gap: 16px;
  }
  .hamburger:checked ~ .media-header .media-header__line {
    display: none;
  }
  .hamburger:checked ~ .container {
    width: 100vw;
    height: 100vh;
  }
  .hamburger:checked ~ .container .dropdown {
    display: flex;
    position: absolute;
    bottom: -16px;
    font-size: 24px;
    transform: translateY(100%);
    right: 0;
  }
  .hamburger:checked ~ .container .header__inner {
    align-items: start;
  }
  .hamburger:checked ~ .container .header__links {
    display: flex;
    position: absolute;
    flex-direction: column;
    bottom: -32px;
    transform: translateY(100%);
    font-size: 24px;
  }
}

.header {
  padding-top: 32px;
  padding-bottom: 8px;
  background-color: var(--background);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
.header__inner {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
}
.header__links {
  margin-left: auto;
  display: flex;
  align-items: flex-start;
  gap: 32px;
}
.header__link {
  color: var(--gray);
  transition: all 0.3s ease;
}
.header__link_active {
  font-weight: 600;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header__link::before {
  content: "#";
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: normal;
}
.header__link:hover {
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 1024px) {
  .header {
    padding-top: 16px;
  }
  .header__links, .header .dropdown {
    display: none;
  }
}

.footer {
  max-width: inherit;
  width: 100%;
  border-top: 1px solid var(--gray);
  padding-top: 32px;
  margin-bottom: 16px;
}
.footer__copyright {
  color: var(--gray);
  text-align: center;
}
.footer__header {
  display: flex;
  gap: 32px;
}
.footer__email {
  color: var(--gray);
}
.footer__email:hover {
  color: var(--white);
}
.footer__description {
  margin-top: 16px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 48px;
}
.footer__list {
  display: flex;
  gap: 8px;
}
.footer__title {
  font-weight: 500;
  font-size: 24px;
}

.button {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border: 1px solid transparent;
  background-clip: padding-box;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-op);
}
.button:hover::before {
  opacity: 0.1;
}
.button__secondary {
  border-color: var(--gray);
  color: var(--gray);
}
.button__secondary:hover {
  background-color: var(--gray-op);
}

.media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.media__icon {
  display: block;
  transition: all 0.3s ease;
}

.path {
  align-self: start;
  display: block;
  width: 100%;
}
.path__name {
  font-size: 32px;
  font-weight: 600;
}
.path__name::before {
  content: "/";
  color: var(--primary);
}
.path__description {
  color: var(--gray);
  margin-top: 16px;
}

.h2 {
  font-size: 32px;
  font-weight: 500;
  position: relative;
  float: none;
  clear: both;
  display: inline-block;
}
.h2::before {
  content: "#";
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.h2::after {
  content: "";
  display: block;
  width: 10vw;
  height: 1px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  position: absolute;
  transform: translate(100%, -50%);
  right: -16px;
  top: 50%;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1024px) {
  .container {
    padding: 16px;
  }
}
@media (min-width: 1025px) {
  .container {
    padding-left: 100px;
  }
}

.content {
  margin-top: 112px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 112px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}
.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(79, 172, 254, 0.3));
}
.logo__img {
  aspect-ratio: 1;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 5px rgba(79, 172, 254, 0.2));
}
.logo__img:hover {
  filter: drop-shadow(0 0 8px rgba(79, 172, 254, 0.4));
  transform: rotate(5deg);
}
.logo__name {
  font-weight: 700;
  font-size: 1.2rem;
  background: linear-gradient(135deg, #4FACFE 0%, #00F2FE 50%, #C778DD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}
.logo__name:hover {
  background: linear-gradient(135deg, #C778DD 0%, #4FACFE 50%, #00F2FE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

:root {
  --primary: hsl(250 100% 75%);
  --primary-op: hsl(250 100% 75%/0.12);
  --secondary: hsl(220 100% 70%);
  --secondary-op: hsl(220 100% 70%/0.12);
  --accent: hsl(270 80% 65%);
  --accent-op: hsl(270 80% 65%/0.12);
  --gray: hsl(220 15% 75%);
  --gray-op: hsl(220 15% 75%/0.08);
  --background: hsl(225 25% 12%);
  --surface: hsl(225 20% 16%);
  --white: hsl(0 0% 100%);
}
