@font-face {
  font-family: "Russo One";
  src: url("/static/fonts/RussoOne-Regular.ttf");
}
@font-face {
  font-family: "Geologica";
  src: url("/static/fonts/Geologica-VariableFont_CRSV,SHRP,slnt,wght.ttf");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-height: 100%;
  max-width: 100%;
}

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

body {
  background: #393f4a;
  font-family: "Geologica", sans-serif;
  color: #f2f2f2;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900;
  font-family: "Russo One", sans-serif;
}

#mobile-open-button,
#mobile-close-button {
  display: none;
}

button {
  cursor: pointer;
}

.disabled {
  cursor: not-allowed;
  opacity: 0.8;
  pointer-events: visibleFill;
  text-decoration: line-through;
}

.fa-solid,
.fa-brands {
  color: #f2f2f2;
}

nav.nav {
  height: 7vh;
  width: 100vw;
  display: flex;
  align-content: center;
  padding: 1rem 5rem;
  position: fixed;
  top: 0;
  z-index: 10;
  background: #393f4a;
  box-shadow: 3px 0 6px rgba(0, 0, 0, 0.4);
}
nav.nav .logo {
  align-self: center;
  display: flex;
  align-items: center;
}
nav.nav .logo img {
  height: 5vh;
  margin-right: 10px;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
nav.nav .logo .logo-text {
  transform: translateX(-50px);
  transition: 0.3s ease-in-out;
}
nav.nav .menu {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}
nav.nav .menu a {
  padding: 0 2rem;
}
nav.nav .menu a i {
  margin-right: 10px;
}
nav.nav .menu .on-mobile {
  display: none;
}
nav.nav .link-status {
  position: absolute;
  right: 5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 1.5rem;
  height: 7vh;
  align-items: center;
}
nav.nav .link-status .user-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  height: 7vh;
}
nav.nav .link-status .user-profile img {
  border-radius: 50%;
  max-height: 5vh;
}
nav.nav .link-status .user-profile:hover .dropdown {
  height: auto;
  transition: height 0.2s ease-in-out;
  padding: 1rem;
}
nav.nav .link-status .user-profile .dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  background: #393f4a;
  height: 0;
  overflow: hidden;
  padding: 0;
  min-width: 10vw;
  border-radius: 0 0 5px 5px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}
nav.nav .link-status .user-profile .dropdown a {
  display: block;
  padding: 0.5rem 0;
}

.nav-open {
  height: 100dvh !important;
  transition: 0.3s ease-in-out;
}

.header {
  background: url("/static/img/header-bg.svg");
  height: 30dvh;
  margin-top: 7vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.header .content {
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10rem;
}
.header .content .header-logo .logo-image {
  height: 25dvh;
}
.header .content .header-content {
  align-self: center;
  padding: 1rem 0;
}
.header .content .header-content .title h1 {
  font-size: 5vmin;
  font-family: "Montserrat", sans-serif;
}
.header .content .header-content .slogan p {
  padding: 0.4rem 0;
  font-size: 2vmin;
}
.header .content .header-content .cta-links {
  margin-top: 2rem;
}
.header .content .header-content .cta-links a {
  margin-right: 1rem;
}

main.main {
  min-height: 55dvh;
}
main.main section {
  width: 100vw;
}
main.main section article {
  padding: 3rem 0.5rem;
  margin: 0 auto;
  max-width: 1200px;
}
main.main section article .content {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
main.main section article .content .content-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 1rem 0;
}
main.main section article .content h1 {
  font-size: 3.6vmin;
}
main.main section article .content h1 strong {
  font-size: 3.6vmin;
}
main.main section article .content h2 {
  font-size: 3.5vmin;
}
main.main section article .content h2 strong {
  font-size: 3.5vmin;
}
main.main section article .content h3 {
  font-size: 2vmin;
  color: #fff7c8;
}
main.main section article .content h4 {
  font-size: 1.8vmin;
}
main.main section article .content h5 {
  font-size: 1.7vmin;
}
main.main section article .content blockquote {
  border-left: 4px solid #c23914;
  background: rgb(68.0954198473, 75.2633587786, 88.4045801527);
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  font-size: 2vmin;
}
main.main section article .content em {
  display: block;
}
main.main section article .content p {
  font-size: 2vmin;
  margin: 1rem 0;
  display: block;
}
main.main section article .content p strong {
  color: #fff7c8;
  font-style: italic;
  font-size: 2vmin;
}
main.main section article .content strong {
  font-size: 1.5rem;
  color: #fff7c8;
  margin: 1rem 0 0.7rem 0;
  font-style: italic;
}
main.main section article .content strong a {
  text-decoration: underline;
}
main.main section article .content ul,
main.main section article .content ol {
  list-style-position: inside;
  margin: 1rem 0.3rem;
}
main.main section article .content ul li,
main.main section article .content ul strong,
main.main section article .content ol li,
main.main section article .content ol strong {
  font-size: 2vmin;
}
main.main section article .content .features {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

footer.footer {
  background: #2d323a;
}
footer.footer .content {
  padding: 1rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer.footer .content .menu a {
  padding: 0 2rem;
}
footer.footer .cookies {
  background: rgb(33.859223301, 37.6213592233, 43.640776699);
  text-align: center;
  padding: 0.8rem;
}
footer.footer .cookies p {
  font-size: 0.8rem;
}

.grid {
  display: grid;
}

.grid-2 {
  grid-template-columns: 1fr 1fr;
}

.grid-1-2 {
  grid-template-columns: 1fr 1.5fr;
}

.grid-2-1 {
  grid-template-columns: 1.5fr 1fr;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.mt-1 {
  margin-top: 1rem;
}

.text-align-center {
  text-align: center;
}

.cta {
  padding: 10px 18px;
  border-radius: 5px;
  color: #fff;
  text-align: center;
}

.cta-primary {
  background: #c23914;
  border: 2px solid #c23914;
}

.cta-secondary {
  border: 2px solid #c23914;
}

.card {
  width: 100%;
  aspect-ratio: 13/16;
  border-radius: 10px;
  box-shadow: 5px 5px 6px rgba(0, 0, 0, 0.3);
}

.card-modded {
  background: url("/static/img/electrical.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.card-modded-solo {
  background: url("/static/img/card-solo.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.card-admin {
  background: url("/static/img/admin.png");
  background-position: 30% center;
  background-repeat: no-repeat;
  background-size: cover;
}

.card-raid {
  background: url("/static/img/offline-raid.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.card-discord {
  background: url("/static/img/discord-points.svg");
  background-position: 30% center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: none;
}

.card-toxicity {
  background: url("/static/img/toxicity.png");
  background-repeat: no-repeat;
  background-size: cover;
}

.card-crate-event {
  background: url("/static/img/crate-event.png");
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
}

.card-other-features {
  background: url("/static/img/card-features.png");
  background-repeat: no-repeat;
  background-position: 45% center;
  background-size: cover;
}

.icon-feature {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.icon-feature img {
  height: 40px;
  margin-right: 1rem;
}

.login-link {
  padding: 0.6rem 1rem;
  border-radius: 5px;
  display: block;
  align-items: center;
  justify-content: center;
  width: auto;
  text-align: center;
  margin: 1rem 0;
}
.login-link i {
  margin-right: 10px;
}

.discord {
  background: rgb(88, 101, 242);
}

.steam {
  background: linear-gradient(rgb(14, 29, 73), rgb(21, 106, 162));
}

ul.player-stats {
  list-style: none;
}
ul.player-stats li.player-stats-element {
  display: grid;
  grid-template-columns: 0.4fr 1fr 0.7fr 0.7fr 0.7fr 0.7fr;
  border-bottom: 0.5px solid rgb(79.1908396947, 87.5267175573, 102.8091603053);
}

form .form-field {
  margin: 1rem 0;
}
form .form-field label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: clamp(18px, 1.05rem, 1.05rem);
}
form .form-field input,
form .form-field textarea,
form .form-field select {
  width: 100%;
  padding: 8px;
  font-family: inherit;
  font-size: clamp(16px, 1rem, 1rem);
  background: #2d323a;
  color: #f2f2f2;
  border: none;
  border-bottom: 1px solid #c23914;
  outline: none;
  transition: 0.2s ease-in-out;
}
form .form-field input:focus,
form .form-field textarea:focus,
form .form-field select:focus {
  border-top: 1px solid #c23914;
}
form .form-field textarea {
  resize: vertical;
  min-height: 100px;
}
form .form-field .checkbox {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 5px 0;
}
form .form-field .checkbox input {
  margin-right: 15px;
  width: auto;
  width: 30px;
  height: 30px;
}
form .form-button button {
  background: #8bc214;
  padding: 8px 16px;
  border: none;
  color: #000;
  border-radius: 4px;
  font-size: clamp(16px, 1rem, 1rem);
}

ul.grid-list {
  list-style: none;
}
ul.grid-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #fff7c8;
}

ul.bans-list {
  list-style: none;
}
ul.bans-list li {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  border-bottom: 1px solid #fff7c8;
}
ul.bans-list li p {
  font-size: 1.9vmin !important;
}

.chart {
  margin: 2rem 0;
  padding: 1rem;
}

dialog {
  padding: 1rem;
  border-radius: 5px;
  border: none;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  background: rgb(23.713740458, 26.2099236641, 30.786259542);
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #f2f2f2;
  min-width: 50vw;
}

.server-card {
  max-width: 600px;
  margin: 1rem auto;
  border-radius: 10px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  background: rgb(50.3427480916, 55.6419847328, 65.3572519084);
  border: 1px solid rgb(68.0954198473, 75.2633587786, 88.4045801527);
}
.server-card img {
  max-width: 100%;
}
.server-card .server-title {
  padding: 1rem;
  text-align: center;
}
.server-card .server-connect .connect {
  padding: 1rem;
  background: #c23914;
  width: 100%;
  display: block;
  text-align: center;
}
.server-card .server-details ul {
  list-style: none;
  margin: 1rem;
}
.server-card .server-details ul li {
  display: flex;
  justify-content: space-between;
  padding: 0.2rem 1rem;
  border-bottom: 1px solid #fff7c8;
}
.server-card .server-details ul li p {
  font-size: 1.9vmin !important;
}
.server-card .server-wipes {
  padding: 1rem;
  text-align: center;
}
.server-card .server-wipes .wipes {
  padding: 1rem 0 0 0;
}
.server-card .server-wipes .wipe-countdown {
  text-align: center;
  padding-top: 1rem;
}
.server-card .server-wipes .wipe-countdown strong {
  font-size: 2vmin;
}
.server-card .server-wipes .wipe-countdown p {
  margin: 1rem 0 0 0;
  font-size: 2.2vmin;
}

.player-stats {
  background: rgb(45.9045801527, 50.7366412214, 59.5954198473);
  border-radius: 5px;
  padding: 1rem;
}
.player-stats .general-stats {
  display: grid;
  grid-template-columns: 1fr 5fr;
  gap: 2rem;
}
.player-stats .general-stats .pvp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.player-stats .general-stats .pvp-stats strong {
  display: block;
}
.player-stats .resources {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.player-stats .resources .resource {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background: rgb(34.8091603053, 38.4732824427, 45.1908396947);
  margin-bottom: 1rem;
}
.player-stats .resources .resource img {
  height: 30px;
  margin-right: 1rem;
}

hr {
  margin: 1rem 0;
  border: none;
  border-bottom: 1px solid #fff7c8;
}

ul.threads {
  list-style: none;
}
ul.threads li.thread-item {
  padding: 0.4rem 0.7rem;
  background: rgb(68.0954198473, 75.2633587786, 88.4045801527);
  margin: 1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
ul.threads li.thread-item strong.thread-title {
  font-size: 1rem;
}
ul.threads li.thread-item .details {
  display: flex;
  align-items: center;
  gap: 25px;
}
ul.threads li.thread-item .details .replies {
  display: flex;
  align-items: center;
  gap: 10px;
}
ul.threads li.thread-item .details p,
ul.threads li.thread-item .details i {
  font-size: 0.9rem;
}
ul.threads .sticky {
  background: rgb(79.1908396947, 87.5267175573, 102.8091603053);
  border-left: 5px solid #c23914;
}

.thread-replies {
  margin: 2rem 0 2rem 0;
}
.thread-replies .reply {
  margin: 0.5rem 0;
  padding: 0.3rem 0.8rem;
  background: rgb(68.0954198473, 75.2633587786, 88.4045801527);
  border-left: 2px solid #fff7c8;
}

@media screen and (max-width: 900px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .not-on-mobile {
    display: none;
  }
  nav.nav {
    height: 0;
    width: 100vw;
    overflow: hidden;
    align-content: center;
    padding: 0;
    left: 0;
    background: #393f4a;
    box-shadow: 3px 0 6px rgba(0, 0, 0, 0.4);
    z-index: 10;
    flex-direction: column;
  }
  nav.nav .logo {
    align-self: center;
    display: flex;
    padding: 1rem;
    align-items: center;
  }
  nav.nav .logo img {
    opacity: 1;
  }
  nav.nav .logo .logo-text {
    transform: translateX(0);
  }
  nav.nav .menu {
    position: absolute;
    left: 50%;
    top: 10dvh;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    width: 100%;
  }
  nav.nav .menu a {
    padding: 1rem 2rem;
  }
  nav.nav .menu a i {
    margin-right: 10px;
  }
  nav.nav .menu .on-mobile {
    display: block;
  }
  nav.nav .link-status {
    right: 0;
    left: 0;
    bottom: 0;
    top: 100%;
    gap: 0;
    height: auto;
    justify-content: flex-end;
    flex-direction: column;
  }
  nav.nav .link-status .login-link {
    width: 90vw;
  }
  nav.nav .link-status .user-profile {
    padding: 0 0 2rem 0;
  }
  #mobile-open-button,
  #mobile-close-button {
    display: block;
    position: fixed;
    right: 1rem;
    top: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
  }
  #mobile-close-button {
    position: absolute;
  }
  .login-link {
    width: 90dvw;
  }
  .header {
    flex-direction: column;
    height: 40dvh;
    background-position: right;
    margin-top: 0;
  }
  .header .content {
    flex-direction: column;
    gap: 1rem;
  }
  .header .content .header-logo .logo-image {
    height: 8dvh;
  }
  .header .content .header-content .title h1 {
    font-size: 2rem;
    text-align: center;
  }
  .header .content .header-content .slogan p {
    text-align: center;
    font-size: 1rem;
  }
  .header .content .header-content .cta-links {
    margin-top: 2rem;
    flex-direction: column;
    align-items: center;
    display: flex;
  }
  .header .content .header-content .cta-links a {
    margin-right: 1rem;
  }
  main.main section article {
    padding: 1rem;
  }
  main.main section article .content h2 {
    font-size: 2rem;
  }
  main.main section article .content h2 strong {
    font-size: 2rem;
  }
  main.main section article .content p {
    font-size: 1rem;
  }
  main.main section article .content p strong,
  main.main section article .content p a {
    font-size: 1rem;
  }
  main.main section article .content ul li {
    font-size: 1rem;
  }
  footer.footer .content {
    flex-direction: column;
    padding: 1rem;
  }
  footer.footer .content .menu {
    padding: 1rem 0 0 0;
  }
  footer.footer .content .menu a {
    display: block;
    padding: 0.5rem 2rem;
  }
}

/*# sourceMappingURL=main.css.map */
