@import url("/styles/reset.css");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");

:root {
  --font: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --text-color: #ffffff;
  --text-reverse: #202020;
  --body-color: #222222;
  --header-color: #111111;
  --header-section-color: rgba(97, 37, 37, 0.5);
  --accent-color: #aa0b2d;
  --success-color: #1eaa0b;
}

body {
  font-family: var(--font);
  color: var(--text-color);
  background-color: var(--body-color);
}
header {
  background-color: var(--header-color);
  height: 8rem;
  display: flex;
  justify-content: center;
}
header img {
  height: 100%;
}

section {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

section.main {
  /* box-shadow: 0 0 4rem 0 var(--header-section-color); */
  /* background-color: var(--header-section-color); */
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.aside {
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-wrap: wrap;
}
.aside > div {
  flex-grow: 1;
  flex-basis: 400px;
}

h1 {
  font-size: 3em;
}
h1.main {
  margin-bottom: 2rem;
}
h2 {
  font-size: 2em;
  font-weight: 600;
}
h2.detectfor {
  font-size: 1.4em;
}

h3 {
  font-weight: 700;
  font-size: 1.2em;
}
.feat-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
.feat-wrapper h3 {
  background-color: var(--accent-color);
  width: max-content;
  padding: 0.2rem 0.5rem;
  margin: 0.3rem 0;
}
.features {
  background-color: var(--header-section-color);
  border-radius: 1rem;
  padding: 1rem;
  flex-grow: 1;
}
.features li::before {
  content: "✦";
  margin-right: 0.5rem;
}

span.hl {
  background-color: var(--accent-color);
  padding: 0 0.4rem;
}
img.showcase {
  border-radius: 2rem;
  width: 100%;
}
.detect {
  opacity: 0.5;
}
.detect-card {
  border-radius: 1rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 0.2rem solid var(--success-color);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 0 2rem 0 var(--success-color);
}
.detect-card svg {
  fill: var(--success-color);
}
a.dl {
  background-color: var(--accent-color);
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-size: 1.5em;
  opacity: 1;
  transition: opacity 0.2s ease;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
a.dl:hover {
  opacity: 0.7;
}
footer {
  background-color: var(--header-color);
  color: #aaa;
  text-align: center;
  padding: 1rem 2rem;
}

p {
  margin: 1rem 0;
}
b {
  font-weight: 900;
  color: white;
}

a.mlnt {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 0.5rem;
  border-radius: 0.4rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  width: max-content;
  cursor: pointer;
  transition: background-color 0.1s ease;
  margin: 1rem auto 0;
}

a.mlnt:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

a.mlnt img {
  border-radius: 0.2rem;
  height: 1.5rem;
}

.modal_wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 10;
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal_content {
  background-color: var(--header-color);
  padding: 2rem;
  border-radius: 0.8rem;
  max-width: 500px;
  margin: 1rem;
}

.modal_content .buttons {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
}

.modal_content .buttons button {
  background-color: #202020;
  padding: 0.4rem 0.8rem;
  opacity: 1;
  transition: opacity 0.1s ease;
  border-radius: 0.4rem;
  flex-grow: 1;
  text-align: center;
  cursor: pointer;
  font-size: 1.1em;
}

.modal_content .buttons button.yes {
  background-color: var(--accent-color);
  font-weight: 900;
}
.modal_content .buttons button:hover {
  opacity: 0.7;
}

.modal_content p {
  font-size: 0.7em;
}

.hidden {
  display: none;
}

.disable_scroll {
  overflow: hidden;
}

video.lol {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
video.lol.hidethatshit {
  width: 0;
  height: 0;
}

body.hide_cursor {
  cursor: none;
}
