:root {
  font-size: 18px;
}

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  box-sizing: border-box;
  line-height: 1.4;
  position: relative;
}

* {
  box-sizing: border-box;
  margin: 0;
}

#scrollToTop {
  position: fixed;
  bottom: 28px;
  right: 33px;
  width: 40px;
  height: 40px;
  background-color: #ee364c;
  color: white;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

#scrollToTop:hover {
  background-color: #ffffff;
  color: black;
}

ul {
  list-style-type: none;
  padding: 0;
}

header, nav, section {
  display: block;
}

a {
  text-decoration: none;
  background-color: transparent;
  cursor: pointer;
  color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

img {
  border: 0;
  display: block;
}

ol, ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
  font-size: 16px;
}

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

button {
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  outline: 0;
  width: fit-content;
}

body {
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  -webkit-tap-highlight-color: transparent;
}

body::-webkit-scrollbar {
  width: 0px;
  opacity: 0;
  background-color: transparent;
  display: none;
}

body::-webkit-scrollbar-track {
  opacity: 0;
  background: transparent;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: transparent;
}

body::-webkit-scrollbar-thumb {
  background: transparent;
  opacity: 0;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: transparent;
}

body::-webkit-scrollbar-thumb:hover {
  background: transparent;
  opacity: 0;
}

body {
  background-color: #030305;
  color: #fff;
  font-family: "Jura", sans-serif;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

@media (max-width: 1024px) {
  body {
    font-size: 16px;
  }
}

.container {
  max-width: calc(1280px + 16px);
  padding: 0 16px;
  margin: auto;
  width: 100%;
}

.particles-js-canvas-el {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: 100vw;
  position: fixed;
}

.section__title {
  font-size: 52px;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-family: "Tektur", sans-serif;
  margin-bottom: 24px;
}

.section {
  padding: 80px 0;
  max-width: 100vw;
}

.button {
  background: #e91932;
  color: #fff;
  position: relative;
  isolation: isolate;
  border-radius: 7px;
  padding: 0 36px;
  font-variation-settings: "wght" 600;
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  height: 65px;
  background: #e91932;
  transition: 200ms ease-out;
  letter-spacing: 0.05em;
  border: 2px solid #e91932;
}

.button:hover {
  background: transparent;
  border: 2px solid #e91932;
  filter: drop-shadow(0 0 2px #e91932);
}

.page-fade {
  position: fixed;
  inset: 0;
  background: #030305;
  z-index: 9999;
  animation: fadeout 1.5s ease forwards;
}

@keyframes fadeout {
  0%   { opacity: 1; }
  10%   { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

@media (max-width: 1024px) {
  .section__title {
    font-size: 34px;
    margin-bottom: 24px;
  }
  .section {
    padding: 60px 0;
  }
  .button {
    font-size: 18px;
    height: 48px;
    padding: 0 24px;
  }
}