@charset "UTF-8";
body {
  /* font-family: var(--main-font); */
  font-family: var(--minecraft-font);
  background-color: var(--background-color);
  background-image: url("../images/header-background.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
:root {
  --main-font: 'Inter', sans-serif;
  --minecraft-font: 'minecraft_1.1regular', sans-serif;
  --fallback-font: 'Inter', sans-serif;
  --main-color: #4e9eff;
  --background-color: #1B1B1B;
  --background-color-transparent: #1b1b1be1;
  --white-color: #D8D0C1;
  --white-color-2: #ffffff;
  --black-color: #0E0E0E;
  --description-color: #c7c7c7;
  --green-color: #4A734D;
  --ip-copied-background: rgba(74, 115, 77, 0.17);
  --ip-copied-icon-background: rgba(74, 115, 77, 0.5);
  --rules-bcg-color: rgba(0, 200, 0, 0.1);
  --copy-ip-button-background: rgb(0, 108, 180);
  --how-to-join-button-background: rgba(116, 106, 90, 0.2);
  --stats-background: rgba(116, 106, 90, 0.05);
  --stat-icon-background-2: rgba(0, 76, 143, 0.766);
  --stat-icon-background-3: rgb(0, 119, 179);
  --scroll-bar: rgba(116, 106, 90, 0.3);
  --scroll-bar-hover: #5B534A;
  --red-color: #C72C41;
  --warning-background: rgba(0, 110, 143, 0.766);
  --warning-icon-background: #ff7c7c7a;
  --warning-color: #ff002641;
  /* Admin-Team rank colors */
  --default-rank-color: rgba(210, 208, 208, 0.3);
}

.orb-container--hero {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
  transition: 500ms;
  box-sizing: border-box;
}
@media (min-width: 723px) {
  .orb-container--hero {
    max-width: 723px;
  }
}
@media (min-width: 933px) {
  .orb-container--hero {
    max-width: 933px;
  }
}
@media (min-width: 1200px) {
  .orb-container--hero {
    max-width: 1200px;
  }
}
@media screen and (min-width: 1600.98px), screen and (max-width: 1600px) {
  .orb-container--hero {
    max-width: 1600px;
  }
}

.orb-hero {
  background: transparent;
  z-index: 0;
  display: flex;
  align-items: center;
  overflow-x: hidden;
  width: 100%;
  margin: 0px 0px 0px 0px;
}
.orb-hero,
.orb-hero * {
  box-sizing: border-box;
}
.orb-hero__content {
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  position: relative;
  padding: 90px 0;
}
.orb-hero__content > * {
  min-width: 0;
}
.orb-hero__left {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: left;
  min-width: 0;
}
.orb-hero__server-name {
  display: flex;
  flex-direction: column;
}
.orb-hero__name {
  color: var(--white-color);
  font-family: var(--minecraft-font);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
}
.orb-hero__server-ip {
  color: var(--main-color);
  font-family: var(--minecraft-font);
  text-transform: uppercase;
  font-weight: 900;
  width: 100%;
  font-size: 30px;
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
}
.orb-hero__description {
  color: var(--description-color);
  font-size: 14px;
  font-weight: 400;
  width: 100%;
  max-width: 700px;
  line-height: 1.6;
  min-width: 0;
}
.orb-hero__description b {
  font-family: var(--minecraft-font);
}
.orb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
  min-width: 0;
}
.orb-hero__btn-copy {
  background: var(--copy-ip-button-background);
  font-family: var(--main-font);
  border: none;
  border-radius: 10px;
  padding: 10px 15px;
  color: white;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.orb-hero__btn-copy:hover {
  opacity: 0.8;
}
.orb-hero__btn-more {
  background: var(--how-to-join-button-background);
  font-family: var(--main-font);
  border: none;
  border-radius: 10px;
  padding: 10px 15px;
  color: var(--description-color);
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
  width: 100%;
}
.orb-hero__btn-more:hover {
  opacity: 0.8;
}
.orb-hero__ip-copied {
  color: var(--green-color);
  background: var(--ip-copied-background);
  padding: 10px 20px;
  width: fit-content;
  max-width: 100%;
  border-radius: 5px;
  font-size: 17px;
  display: none;
}
.orb-hero__ip-copied.active {
  display: flex;
}
.orb-hero__ip-copied.error {
  background: var(--warning-background);
  color: var(--red-color);
}
.orb-hero__right {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: fit-content;
  gap: 30px;
  min-width: 0;
}
.orb-hero__logo {
  display: none;
  max-width: 240px;
  transform: translatey(0px);
  animation: float 4s ease-in-out infinite;
  opacity: 0.85;
}
.orb-hero__stats {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--stats-background);
  padding: 20px;
  border-radius: 5px;
  justify-content: space-between;
  align-items: flex-start;
  min-width: 0;
}
.orb-hero__stat {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: center;
  align-items: center;
  min-width: 0;
}
.orb-hero__stat:hover .orb-hero__stat-icon {
  transform: scale(1);
}
.orb-hero__stat-icon {
  border-radius: 5px;
  background: var(--stat-icon-background-2);
  padding: 10px;
  transition: 0.2s ease-in-out;
  flex: 0 0 auto;
}
.orb-hero__stat-icon i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 20px;
  position: relative;
  background: var(--stat-icon-background-3);
  color: var(--white-color-2);
  border-radius: 5px;
}
.orb-hero__stat-link {
  text-decoration: none;
}
.orb-hero__stat-texts {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.orb-hero__stat-texts p {
  color: var(--description-color);
  font-size: 15px;
  font-weight: 400;
  width: 100%;
  overflow-wrap: anywhere;
  min-width: 0;
}
.orb-hero__stat-title {
  color: var(--white-color);
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 700;
}
.orb-hero__stat-number {
  font-family: var(--minecraft-font);
  color: var(--green-color);
  font-weight: 800;
}
@media (min-width: 723px) {
  .orb-hero__content {
    align-items: center;
    gap: 52px;
  }
  .orb-hero__server-ip {
    font-size: 40px;
  }
  .orb-hero__description {
    font-size: 16px;
  }
  .orb-hero__btn-copy {
    padding: 10px 30px;
  }
  .orb-hero__btn-more {
    padding: 10px 30px;
  }
  .orb-hero__stats {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }
}
@media (min-width: 933px) {
  .orb-hero__name {
    font-size: 18px;
  }
  .orb-hero__server-ip {
    font-size: 65px;
  }
  .orb-hero__description {
    font-size: 18px;
  }
  .orb-hero__right {
    width: auto;
    align-items: center;
  }
  .orb-hero__logo {
    display: block;
    margin: 50px 0 0 0;
  }
  .orb-hero__stats {
    width: fit-content;
    gap: 50px;
    flex-direction: row;
    align-items: center;
  }
  .orb-hero__stat:hover .orb-hero__stat-icon {
    transform: scale(1.1);
  }
  .orb-hero__stat-title {
    font-size: 17px;
  }
}
@media (min-width: 1200px) {
  .orb-hero__content {
    flex-direction: column-reverse;
    justify-content: space-between;
    margin: 0px auto;
    align-items: center;
    gap: 28px;
  }
  .orb-hero__left {
    width: auto;
    gap: 20px;
  }
  .orb-hero__server-ip {
    width: 1000px;
  }
  .orb-hero__right {
    height: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 0;
  }
  .orb-hero__logo {
    margin: 0;
  }
}
@media (min-width: 1201px) {
  .orb-hero {
    width: 100vw;
    margin: 0px calc(50% - 50vw) 0px calc(50% - 50vw);
  }
  .orb-hero__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
  }
}

.orb-about__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.orb-about__left {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  gap: 40px;
}
.orb-about__title {
  font-family: var(--minecraft-font);
  font-size: 30px;
  font-weight: 700;
  color: var(--white-color);
  position: relative;
}
.orb-about__title::before {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 150px;
  height: 1px;
  border-radius: 5px;
  background: var(--description-color);
}
.orb-about__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  border-radius: 5px;
  background: var(--main-color);
}
.orb-about__text {
  color: var(--description-color);
  font-size: 17px;
  max-width: 80%;
  line-height: 1.6;
}
.orb-about__right {
  display: flex;
  justify-content: end;
  align-items: center;
  height: 100%;
  position: relative;
  width: 100%;
}
.orb-about__image {
  width: auto;
  max-height: 250px;
  position: relative;
  z-index: 1;
  right: 100px;
}
.orb-about__image-bg {
  position: absolute;
  width: 210px;
  height: calc(100% - 40px);
  border-radius: 40px 3px;
  background: var(--main-color);
  z-index: 0;
  bottom: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .orb-about__content {
    flex-direction: column;
    gap: 40px;
  }
  .orb-about__text {
    max-width: 100%;
  }
  .orb-about__right {
    justify-content: center;
  }
  .orb-about__image {
    margin: auto;
    right: 0;
  }
  .orb-about__image-bg {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .orb-about__content {
    flex-direction: column;
    gap: 40px;
  }
  .orb-about__text {
    max-width: 100%;
  }
  .orb-about__right {
    justify-content: center;
  }
  .orb-about__image {
    margin: auto;
    right: 0;
  }
  .orb-about__image-bg {
    width: 100%;
  }
}
@media screen and (max-width: 767.98px) {
  .orb-about__content {
    flex-direction: column;
    gap: 40px;
  }
  .orb-about__text {
    max-width: 100%;
  }
  .orb-about__right {
    justify-content: center;
  }
  .orb-about__image {
    margin: auto;
    right: 0;
  }
  .orb-about__image-bg {
    width: 100%;
  }
}

.orb-minigames {
  padding: 66px 0px;
}
.orb-minigames__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
}
.orb-minigames__game {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.orb-minigames__game:nth-child(even) .orb-minigames__image {
  order: 1;
}
.orb-minigames__game:nth-child(even) .orb-minigames__image:hover {
  transform: rotate(2deg);
}
.orb-minigames__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 40px 3px;
  transition: 0.2s;
}
.orb-minigames__image:hover {
  transform: rotate(-1deg);
}
.orb-minigames__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.orb-minigames__title {
  font-family: var(--minecraft-font);
  font-size: 30px;
  font-weight: 700;
  color: var(--white-color);
  position: relative;
}
.orb-minigames__title::before {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 150px;
  height: 1px;
  border-radius: 5px;
  background: var(--description-color);
}
.orb-minigames__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  border-radius: 5px;
  background: var(--main-color);
}
.orb-minigames__description {
  color: var(--description-color);
  font-size: 17px;
  line-height: 1.6;
}
.orb-minigames__description ul {
  padding: 10px 0 0 40px;
}
.orb-minigames__description li a {
  color: var(--white-color);
  font-weight: 600;
  text-decoration: underline;
  transition: 250ms;
}
.orb-minigames__description li a:hover {
  color: var(--white-color-2);
  opacity: 0.9;
}
@media only screen and (min-width: 992px) and (max-width: 1199.98px) {
  .orb-minigames__game {
    flex-direction: column;
    gap: 40px;
  }
  .orb-minigames__game:nth-child(even) .orb-minigames__image {
    order: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .orb-minigames__game {
    flex-direction: column;
    gap: 40px;
  }
  .orb-minigames__game:nth-child(even) .orb-minigames__image {
    order: 0;
  }
}
@media screen and (max-width: 767.98px) {
  .orb-minigames__game {
    flex-direction: column;
    gap: 40px;
  }
  .orb-minigames__game:nth-child(even) .orb-minigames__image {
    order: 0;
  }
}

.orb-discord {
  background: url("../images/header-background.jpg") no-repeat fixed center;
  min-width: 100%;
  height: 100%;
  background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  z-index: 0;
  display: flex;
  align-items: center;
}
.orb-discord__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 40px;
}
.orb-discord__title {
  font-family: var(--minecraft-font);
  font-size: 30px;
  font-weight: 700;
  color: var(--white-color);
  position: relative;
  text-align: center;
}
.orb-discord__accent {
  color: var(--main-color);
}
.orb-discord__link {
  text-decoration: none;
  color: var(--white-color);
}
.orb-discord__btn {
  background: var(--copy-ip-button-background);
  font-family: var(--main-font);
  border: none;
  border-radius: 10px;
  padding: 10px 30px;
  color: white;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.orb-discord__btn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767.98px) {
  .orb-discord {
    background-attachment: scroll;
  }
}
.orb-vote {
  padding: 82px 0px;
}
.orb-vote__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.orb-vote__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
  margin: 0 0 0 clamp(0px, 100vw - 1313px, 75px);
}
.orb-vote__title {
  font-family: var(--minecraft-font);
  font-size: 30px;
  font-weight: 700;
  color: var(--white-color);
  position: relative;
}
.orb-vote__title::before {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 150px;
  height: 1px;
  border-radius: 5px;
  background: var(--description-color);
}
.orb-vote__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  border-radius: 5px;
  background: var(--main-color);
}
.orb-vote__description {
  color: var(--description-color);
  font-size: 17px;
  max-width: 80%;
  line-height: 1.6;
}
.orb-vote__links {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  margin: 0 clamp(0px, 100vw - 1313px, 75px) 0 0;
}
.orb-vote__url {
  text-decoration: none;
}
.orb-vote__url:hover .orb-vote__icon {
  transform: scale(1.1);
}
.orb-vote__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--stats-background);
  padding: 20px;
  border-radius: 5px;
  max-width: 400px;
}
.orb-vote__card-title {
  color: var(--white-color);
  text-transform: uppercase;
  font-size: 17px;
  font-weight: 700;
}
.orb-vote__card-desc {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
}
.orb-vote__card-text {
  color: var(--description-color);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}
.orb-vote__icon {
  border-radius: 5px;
  background: var(--stat-icon-background-2);
  padding: 10px;
  transition: 0.2s ease-in-out;
}
.orb-vote__icon i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 20px;
  position: relative;
  border-radius: 5px;
  background: var(--stat-icon-background-3);
  color: var(--white-color-2);
  color: white;
  padding: 10px;
  transition: 0.2s ease-in-out;
}
@media screen and (max-width: 767.98px) {
  .orb-vote__content {
    flex-direction: column;
    gap: 40px;
    margin: 0;
  }
  .orb-vote__description {
    max-width: 100%;
  }
  .orb-vote__links {
    margin: 0;
  }
  .orb-vote__card {
    max-width: 100%;
  }
  .orb-vote__card-desc {
    flex-wrap: wrap;
  }
  .orb-vote__icon {
    margin: 0 auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991.98px) {
  .orb-vote__content {
    flex-direction: column;
    gap: 40px;
    margin: 0;
  }
  .orb-vote__description {
    max-width: 100%;
  }
  .orb-vote__links {
    flex-wrap: wrap;
    margin: 0;
  }
  .orb-vote__card {
    max-width: 100%;
  }
}
.orb-faq__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.orb-faq__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.orb-faq__title {
  font-family: var(--minecraft-font);
  font-size: 30px;
  font-weight: 700;
  color: var(--white-color);
  position: relative;
}
.orb-faq__title::before {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 150px;
  height: 1px;
  border-radius: 5px;
  background: var(--description-color);
}
.orb-faq__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  border-radius: 5px;
  background: var(--main-color);
}
.orb-faq__accent {
  color: var(--main-color);
}
.orb-faq__subtitle {
  color: var(--description-color);
  font-size: 17px;
  line-height: 1.6;
  max-width: 70%;
}
.orb-faq__accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.orb-faq__item {
  background: var(--stats-background);
  border-radius: 5px;
}
.orb-faq__item:nth-child(3) .orb-faq__header::after {
  display: none;
}
.orb-faq__header {
  padding: 20px 50px 20px 20px;
  line-height: 1.6;
  font-weight: 600;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  color: var(--white-color);
  font-size: 17px;
}
.orb-faq__header::after {
  content: "+";
  font-size: 20px;
  position: absolute;
  right: 20px;
}
.orb-faq__header.active::after {
  content: "−";
}
.orb-faq__header--link {
  text-decoration: none;
}
.orb-faq__body {
  max-height: 0;
  overflow: hidden;
  transition: 0.2s ease-in-out;
}
.orb-faq__body-content {
  padding: 20px;
  line-height: 1.6;
  border-top: 1px solid var(--stats-background);
  color: var(--description-color);
}
@media screen and (max-width: 767.98px) {
  .orb-faq__subtitle {
    max-width: 100%;
  }
}

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