@import url("../fonts/stylesheet.css");
.btn-primary {
  position: relative;
  border-radius: 8px;
  padding: 14px 18px;
  color: #ccd9e0;
  white-space: nowrap;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 19px;
  outline: 3px solid #816632;
  transition: ease-in-out;
  transition-duration: 150ms;
  text-align: center;
  background: linear-gradient(to bottom, #262d35, #121519);
  box-shadow: inset 0 0 0 2px #060b11, inset 0 0 0 3px rgba(127, 100, 49, 0.3);
}
.btn-primary.cta {
  background: linear-gradient(to bottom, #c5a83c, #8b5e22);
}

.btn-primary.cta::before {
  content: "";
  position: absolute;
  z-index: 100;
  top: 2px;
  bottom: 2px;
  left: 2px;
  width: 28%;
  height: auto;
  background: linear-gradient(to right, rgb(62 51 18 / 34%), rgba(35, 45, 65, 0));
}

.btn-primary.cta::after {
  content: "";
  position: absolute;
  z-index: 100;
  top: 2px;
  bottom: 2px;
  right: 2px;
  width: 28%;
  height: auto;
  background: linear-gradient(to left, rgb(62 51 18 / 34%), rgba(35, 45, 65, 0));
}
.btn-primary.cta:hover::after {
  background: linear-gradient(to left, rgba(62, 51, 18, 0.181), rgba(35, 45, 65, 0));
}
.btn-primary.cta:hover::before {
  background: linear-gradient(to right, rgba(62, 51, 18, 0.181), rgba(35, 45, 65, 0));
}
.btn-primary.cta:hover {
  box-shadow: inset 0 0 0 2px #060b11, inset 0 0 0 3px rgb(255 255 255 / 58%);
  background: linear-gradient(to bottom, #c5a83c, #8b5e22);
  transform: scale(1.03);
}
.btn-primary:hover {
  transform: translateY(-1.5px);
  box-shadow: inset 0 0 0 2px #060b11, inset 0 0 0 3px rgba(127, 100, 49, 0.3), 0px 0px 20px 2px rgb(127 100 49 / 40%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08)), linear-gradient(to bottom, #262d35, #121519);
}
.btn-primary:hover::before {
  content: "";
  position: absolute;
  z-index: 100;
  top: 2px;
  bottom: 2px;
  left: 2px;
  width: 28%;
  height: auto;
  background: linear-gradient(to right, rgba(35, 45, 65, 0.7), rgba(35, 45, 65, 0));
}
.btn-primary:hover::after {
  content: "";
  position: absolute;
  z-index: 100;
  top: 2px;
  bottom: 2px;
  right: 2px;
  width: 28%;
  height: auto;
  background: linear-gradient(to left, rgba(35, 45, 65, 0.7), rgba(35, 45, 65, 0));
}

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

body {
  color: #705c5a;
  font-family: "Open Sans", sans-serif;
  /* min-height: 2307px; */
  /* max-width: 2560px; */
  background: url("../img/Header.webp") no-repeat top center/cover;
}

.custom-scroll::-webkit-scrollbar-track, .news::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: rgba(90, 85, 69, 0.702);
}

.custom-scroll::-webkit-scrollbar, .news::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 14px;
  background-color: rgba(10, 10, 10, 0.702);
}

.custom-scroll::-webkit-scrollbar-thumb, .news::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  background-color: #705c5a;
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  transition: scroll-behavior 0.3s ease;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #705c5a;
}

a:hover {
  cursor: pointer;
  text-decoration: underline;
}

button {
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  color: #fff;
}

input {
  border: none;
  outline: none;
}

img {
  width: 100%;
  object-fit: contain;
}

#wrapper {
  /* max-width: 2560px; */
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

/*-- -----[TOPBAR]----- -- */
.topbar {
  padding: 15px 20px;
  background-color: #1c0f0e;
}
.topbar-wrapper {
  max-width: 1300px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 650px) {
  .topbar-wrapper {
    gap: 10px;
    flex-direction: column;
    text-align: center;
  }
}
.topbar p,
.topbar span,
.topbar select {
  font-size: 13px;
  font-weight: normal;
  color: #705c5a;
}
.topbar a {
  color: #beae8b;
}
.topbar a:hover {
  text-decoration: underline;
}
.topbar select {
  color: #beae8b;
  border: none;
  outline: none;
  font-family: inherit;
  background-color: #1c0f0e;
}
.topbar-language {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 1100px) {
  .topbar-language {
    display: none;
  }
}

/*-- -----[NAVBAR]----- -- */
.navbar {
  padding: 10px;
  position: relative;
  z-index: 10;
  background-color: rgba(18,18,18,.4);
}
@media (max-width: 1100px) {
  .navbar {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1300px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.navbar ul {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 12px;
}
.navbar-item a {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  padding: 10px 20px;
  color: #705c5a;
}
.navbar-item a span,
.navbar-item a strong {
  display: block;
  transition: all 0.25s;
}
.navbar-item a strong {
  font-family: "PenumbraSerifStd", serif;
  font-weight: bold;
  font-size: 15px;
  text-shadow: 0 0 10px rgba(255, 166, 38, 0.4);
  letter-spacing: 0.02em;
  position: relative;
  background: linear-gradient(#e6d48a, #e19f27);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  color: #ecbc62;
  padding-bottom: 5px;
  transition: all .3s ease-in-out;
  line-height: 1.5;
}

.navbar-item a.active strong {
  text-shadow: 0 0 22px rgba(255, 166, 38, 2.55);
}

@media (max-width: 1100px) {
  .navbar ul {
    display: none;
  }
  
  .navbar-item a strong::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: .5em;
    background: url(/img/arrow-right.svg) 0 0 no-repeat;
    background-size: contain;
    vertical-align: -1px;
  }

  .navbar-item a strong {
    font-size: 20px;
  }

  .navbar-item a.active strong {
    background: linear-gradient(#cfccc2, #e4c386) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
  }

  .navbar-item a.active::before {
    display: none !important;
  }
}

.navbar-item a:hover strong {
  text-shadow: 0 0 14px rgba(255, 166, 38, 1.55);
  transform: translateY(-3px);
}
.redesign-btn-download {
  border: 1px solid #C8A951;
  border-radius: 12px;
  padding: 14px 18px;
  color: #C8A951;
  white-space: nowrap;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 16px;
  background: #5A2328;
  background: linear-gradient(90deg, rgba(90, 35, 40, 1) 0%, rgba(117, 48, 54, 0.8) 100%);
  transition: ease-in-out;
  transition-duration: 150ms;
}
.redesign-btn-download:hover {
  -webkit-box-shadow: 0px 0px 24px 2px rgba(200, 169, 81, 0.34);
  box-shadow: 0px 0px 24px 2px rgba(200, 169, 81, 0.34);
  text-decoration: none;
}
.userpanel-content-signup span {
  font-weight: bold;
  color: #BEAE8B;
}
.navbar-buttons {
  display: flex;
  gap: 15px;
  position: relative;
}
.redesign-btn-lang {
  border: 1px solid #facc47b3;
  border-radius: 6px;
  background: #424c2061;
  padding: 8px;
  color: #C8A951;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 10px;
  width: 47px;
  height: 47px;
  position: relative;
}
.redesign-btn-lang img {
  border-radius: 20px;
  width: 70%;
}
.language-menu {
  position: absolute;
  right: 0;
  top: 55px;
  margin-top: 4px;
  padding: 8px;
  border: 1px solid #48561c;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background: #5A2328;
  background: linear-gradient(#232323 10%, #431615 100%);
}

.language-menu button {
  display: flex;
  width: 100%;
  gap: 10px;
  padding: 8px 12px;
  align-items: center;
  background: none;
  border: none;
  color: #C8A951;
  text-align: center;
  cursor: pointer;
  margin-top: 5px;
}

.language-menu button:hover {
  color: #deb950;
  background: rgba(0, 0, 0, .1);
  border-radius: 8px;
}

.hidden {
  display: none;
}
.navbar-item a:hover span {
  color: #b39646;
}
.navbar-item a:hover {
  text-decoration: none;
}
.navbar-item a.active {
  position: relative;
}
.navbar-item a:hover strong {
  color: #b19033;
}
.navbar-item a.active::before {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  background-image: linear-gradient(#CDB161, #C8A951);
  background-blend-mode: hard-light;
  display: block;
  bottom: -2px;
  left: 0;
  right: 0;
}
.navbar-logo {
  padding-right: 15px;
}
@media (max-width: 1100px) {
  .navbar-logo {
    padding: 10px;
  }
  .navbar-buttons .btn-primary.cta {
    display: none;
  }
}
.btn-toggle svg {
  fill: #C8A951;
}
.navbar-logo a {
  display: block;
  width: 116px;
  height: auto;
}
.navbar-logo a img {
  max-width: 80px;
  aspect-ratio: 1/1;
  object-fit: contain;
}
@media (max-width: 1100px) {
  .navbar-logo a {
    width: 80px;
  }
}
.navbar .btn-toggle {
  display: none;
}
@media (max-width: 1100px) {
  .navbar .btn-toggle {
    display: block;
    font-size: 20px;
  }
  .navbar .btn-toggle svg {
    width: 30px;
    height: 30px;
    fill: #C8A951;
  }
}

.sidemenu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #1c0f0e;
  background: linear-gradient(rgba(28, 15, 14, 0.7), rgba(28, 15, 14, 0.8));
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 50px;
  height: 100vh;
  filter: brightness(50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow: auto;
  transition: opacity 0.3s ease, filter 0.7s linear;
}
@media (max-width: 1100px) {
  .sidemenu {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
}
.sidemenu.show-sidemenu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  filter: brightness(100%);
}
@media (max-width: 900px) {
  .sidemenu {
    background: linear-gradient(rgba(28, 15, 14, 0.7), rgba(28, 15, 14, 0.8));
  }
}
@media (max-width: 700px) {
  .sidemenu {
    padding: 40px 25px;
  }
}
.sidemenu .navbar-list {
  padding-bottom: 90px;
}
.sidemenu .navbar-item:not(:last-child) {
  margin-bottom: 40px;
}
.sidemenu .navbar-item a {
  text-align: left;
  width: fit-content;
  padding-left: 0;
  padding-right: 0;
}
.sidemenu .topbar-language {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
  margin-top: auto;
  align-self: center;
}
.sidemenu .topbar-language svg,
.sidemenu .topbar-language span {
  color: #beae8b;
  font-weight: 600;
}
.sidemenu .topbar-language ul {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-left: 30px;
}
.sidemenu .topbar-language ul:hover {
  color: #beae8b;
  text-decoration: underline;
}
@media (max-width: 400px) {
  .sidemenu .topbar-language ul {
    padding-left: 10px;
  }
}
.sidemenu-close {
  width: 40px;
  height: 40px;
  background-color: #a0906d;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  right: 20px;
}
.sidemenu-close svg {
  width: 20px;
  height: 20px;
  fill: white;
}

/*-- -----[HEADER]----- -- */
.header {
  height: 400px;
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  max-width: 1300px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 750px) {
  .header {
    height: 300px;
  }
}
.loader {
  position: fixed;
  width: 100dvw;
  height: 100dvh;
  z-index: 9999;
  background: #151313;
  transition: all .4s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader img {
  -webkit-animation-name: logo;
  animation-name: logo;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  width: 40%;
}
.main {
  position: relative;
}

body.dark .main {
  background-color: #131212;
}

.header-overlay {
  position: absolute;
  display: none; /* TEST */
  z-index: -2;
  top: 10%;
  width: 100dvw;
  left: 50%;
  transform: translateX(-50%);
}

body.dark .header-overlay {
  display: unset;
}

@media (max-width: 1300px) {
  .header-overlay {
    top: 60%;
  }
}
.header-logo {
  position: absolute;
  top: 88%;
  left: 50%;
  z-index: -1;
  transform: translateX(-50%) translateY(-70%);
  pointer-events: none;
  max-width: 880px;
  width: 100%;
}
@media (max-width: 1100px) {

  .navbar-logo {
    order: 2;
  }

  .navbar-buttons {
    order: 3;
  }

  .btn-toggle {
    order: 1;
  }

}
@media (max-width: 500px) {
  .header-logo {
    width: 120%;
    top: 72%;
  }
}
.header-logo img {
  width: 100%;
  object-fit: contain;
  -webkit-animation-name: logo;
  animation-name: logo;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
.header-players {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 450px;
  width: 100%;
  padding-bottom: 60px;
  margin-left: 10%;
  margin-top: auto;
}
@media (max-width: 750px) {
  .header-players {
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
}
.header-players-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 190px;
  text-align: center;
  padding-right: 24px;
  height: 171px;
  background: url("../img/player-bg.webp") no-repeat center center/contain;
}
@media (max-width: 750px) {
  .header-players-box {
    width: 140px;
    height: 140px;
  }
}
.header-players-box strong {
  font-weight: bold;
  color: #beae8b;
  font-size: 30px;
  line-height: 40px;
}
@media (max-width: 750px) {
  .header-players-box strong {
    font-size: 20px;
    line-height: 30px;
  }
}
.header-players-box span {
  color: #705c5a;
  font-size: 14px;
  line-height: 20px;
}
@media (max-width: 750px) {
  .header-players-box span {
    font-size: 10px;
  }
}

/*-- -----[MAIN LAYOUT]----- -- */

.main-content {
  max-width: 1300px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(250px, 312px) 1fr minmax(250px, 312px);
  align-items: flex-start;
}

@media (max-width: 1100px) {

  .main-content {
    max-width: 700px;
  }

}

@media (max-width: 768px) {

  .main-content {
    padding-left: 15px;
    padding-right: 15px;
  }

}

.main-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.main-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1100px) {
  .main-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 650px) {
  .main-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.main-header {
  height: 53px;
  background: url("../img/main-header-bg.webp") no-repeat left center/contain, linear-gradient(rgba(6, 6, 6, 0.18), rgba(6, 6, 6, 0.18));
  background-blend-mode: overlay;
  display: flex;
  align-items: center;
  padding: 10px;
}
.main-header-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-header-heading img {
  width: 36px;
  height: auto;
  object-fit: contain;
}
.main-header-heading h2 {
  font-family: "Cinzel", serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  text-shadow: 0.5px 0.87px 1px rgba(0, 0, 0, 0.53);
  color: #e5e5bd;
  letter-spacing: 0.02em;
}
@media (max-width: 1100px) {
  .main-center {
    grid-column: 1/-1;
    order: -1;
  }
}

/*-- -----[REDESIGNED PANEL]----- -- */
.panel {
  background: linear-gradient(#232323 10%, #431615 100%);
  background-blend-mode: overlay;
  border-radius: 12px;
  border: 1px solid #fff;
  outline: 1px solid #ffbd00;
  position: relative;
}

.panel.with-decorations {
  border: 1px solid #facc47b3;
  outline: unset;
}

.panel .panel-header {
  height: 53px;
  display: flex;
  align-items: center;
  padding: 10px;
  justify-content: center;
  background-color: rgba(6, 6, 6, .18);
}

.panel .panel-header h2 {
  font-family: "PenumbraSerifStd", serif;
  font-weight: bold;
  font-size: 18px;
  text-shadow: 0 0 10px rgba(255, 166, 38, 0.4);
  letter-spacing: 0.02em;
  position: relative;
  background: linear-gradient(#e6d48a, #e19f27);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  color: #ecbc62;
  line-height: 1.5;
  padding-top: 2px;
}

.panel .panel-body {
  padding: 10px;
  padding-bottom: 25px;
}

/*-- -----[USER PANEL]----- -- */
.userpanel {
  background: linear-gradient(#501918, #501918), linear-gradient(rgba(6, 6, 6, 0.18), rgba(6, 6, 6, 0.18));
  background-blend-mode: overlay;
}
.userpanel-content {
  padding: 27px 20px;
}
.userpanel-content-head {
  text-align: center;
  margin-bottom: 10px;
}
.userpanel-content-head strong,
.userpanel-content-head p {
  font-size: 13px;
  line-height: 17px;
}
.userpanel-content-head p {
  color: #705c5a;
}
.userpanel-content-head strong {
  font-weight: bold;
  display: block;
  color: #beae8b;
}
.userpanel-content-form {
  max-width: 400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.userpanel-content-form input,
.userpanel-content-form button {
  display: block;
  width: 100%;
}
.userpanel-content-form input {
  padding: 8px 14px;
  font-size: 13px;
  color: #beae8b;
  background-color: #251515;
  border: none;
}
.userpanel-content-form input:not(:first-child) {
  margin-top: 9px;
}
.userpanel-content-form input:focus {
  outline: 1px solid #beae8b;
}
.userpanel-content-form input::placeholder {
  color: #705c5a;
}
.userpanel-content-form button {
  margin-top: 25px;
  margin-bottom: 20px;
}
.userpanel-content-forgot {
  text-align: center;
  margin-bottom: 10px;
}
.userpanel-content-forgot p,
.userpanel-content-forgot a {
  font-size: 13px;
  font-weight: normal;
  line-height: 15.5px;
  letter-spacing: 0.02em;
}
.userpanel-content-forgot a {
  color: #beae8b;
}
.userpanel-content-signup a {
  padding: 10px 20px;
  display: block;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 15.6px;
  text-align: center;
  color: #999494;
  background: linear-gradient(to bottom, #333b44, #1c1f24);
  border-radius: 8px;
  box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
}
.userpanel-content-signup a strong {
  font-weight: 700;
  color: #beae8b;
}
.userpanel-content-signup a:hover {
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(217, 177, 103, 0.25);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.08)), linear-gradient(to bottom, #262d35, #121519);
}
.userpanel-logged .btn-primary {
  display: block;
  margin-bottom: 20px;
}
.userpanel-logged .btn-primary:not(:last-child) {
  margin-bottom: 10px;
}

/*-- -----[TRAILER]----- -- */
.trailer {
  position: relative;
}
.trailer img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.trailer p {
  position: absolute;
  top: 14px;
  left: 18px;
  font-weight: bold;
  font-size: 13px;
  line-height: 15.6px;
  text-align: center;
  color: #cebe98;
  text-shadow: 0.5px 0.87px 2px rgba(0, 0, 0, 0.37);
}
.trailer button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.25s;
}
.trailer button:hover {
  filter: brightness(80%);
}

/*-- -----[UPDATE CONTENT]----- -- */
.update-content {
  background: url("../img/update-bg.webp") no-repeat center center/cover;
  min-height: 333px;
  display: flex;
  border-radius: 12px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  flex-direction: column;
  justify-content: flex-end;
}
.update-content .update-content-title {
  padding-left: 20px;
  padding-right: 30px;
  padding-bottom: 20px;
}
.update-content .update-content-text h2,
.update-content .update-content-text h1 {
  font-weight: bold;
  font-size: 28px;
  letter-spacing: 0.02em;
  line-height: 33.6px;
  text-align: left;
  text-shadow: 1px 1.73px 9px #000;
  color: #fff;
  margin-bottom: 5px;
}
.update-content .update-content-text h2 {
  color: #d7c69f;
  font-weight: normal;
}
.update-content-text {
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
}
.update-content-text h5,
.update-content-text p {
  font-weight: bold;
  letter-spacing: 0.02em;
  text-align: left;
  font-size: 13px;
}
.update-content-text h5 {
  line-height: 18px;
  font-size: 15px;
  color: #d7c69f;
  margin-bottom: 16px;
}
.update-content-text p {
  font-weight: normal;
  line-height: 18px;
}
.update-content-text a {
  font-weight: bold;
  color: #beae8b;
}

/*-- -----[NEWS]----- -- */
.news {
  padding: 10px;
  height: 960px;
  overflow: auto;
}
.news::-webkit-scrollbar {
  width: 10px;
}
.news-box {
  margin-bottom: 20px;
  background: rgba(0, 0, 0, .2);
  border-radius: 12px;
}
.news-update {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}
.news-date {
  color: rgba(206, 190, 152, .8);
  font-size: 13px;
  font-weight: bold;
}
@media (max-width: 500px) {
  .news-update {
    background-size: cover;
  }
}
.news-update button {
  border-radius: 50px;
  font-weight: bold;
  font-size: 10px;
  letter-spacing: 0.02em;
  line-height: 12px;
  text-align: center;
  color: #fff;
  width: 100px;
  height: 25px;
  background: #63251f;
}
.news-update p {
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.02em;
  position: relative;
  line-height: 18px;
  text-align: left;
  color: #cebe98;
}
.news-update p::after {
  content: "";
  position: absolute;
  width: 65%;
  height: 3px;
  background-color: #CDB161;
  bottom: -12px;
  left: 0;
}
@media (max-width: 500px) {
  .news-update p {
    font-size: 12px;
  }
}
.news-content {
  padding: 20px;
}
.news-content,
.news-content h5,
.news-content p {
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 15.6px;
  text-align: left;
  color: #999494;
}
.news-content h5,
.news-content p {
  margin-bottom: 30px;
}
.news-content h5 {
  font-weight: bold;
  text-transform: uppercase;
}
.news-content span {
  color: #beae8b;
}
.news-written {
  display: flex;
  align-items: center;
  margin-top: 40px;
  justify-content: space-between;
  background: linear-gradient(rgba(64, 40, 40, 0.44), rgba(64, 40, 40, 0.44)), url("../img/news-written.webp") no-repeat left center/contain;
  gap: 20px;
  padding: 10px 10px 10px 20px;
}
.news-written h5,
.news-written p {
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 15.6px;
  text-align: left;
}
.news-written h5 {
  color: #beae8b;
}
.news-written .btn-primary {
  width: 160px;
}

/*-- -----[SOCIAL]----- -- */
.social-box {
  padding: 17px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: all 0.25s;
  background-color: #341616;
  border: 1px solid #fff;
  outline: 1px solid #ffbd00;
  border-radius: 12px;
  position: relative;
}
.social-box.with-decorations {
  border: 1px solid #facc47b3;
  outline: unset;
}
.social {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 500px) {
  .social-box {
    gap: 14px;
    padding: 14px 20px;
  }
}
.social-box span {
  font-weight: bold;
  font-size: 19px;
  letter-spacing: 0.02em;
  text-align: left;
  color: #beae8b;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.35);
}
.social-box a {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  transition: all 0.25s;
}
.social a:hover {
  color: #beae8b;
  text-decoration: none;
}

.social-box img {
  height: 77px;
  width: auto;
  object-fit: contain;
}
.social-box:hover {
  filter: brightness(120%);
}

/*-- -----[SERVER STATUS]----- -- */
.server-status {
  padding-bottom: 15px;
}

.server-status-box {
  white-space: nowrap;
  padding-top: 15px;
}
.server-status-title {
  text-align: center;
}
.server-status-title p,
.server-status-title strong {
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 15.6px;
  text-align: center;
}
.server-status-title strong {
  color: #cebe98;
  font-weight: bold;
}
.server-status-values {
  text-align: center;
  background: #321515;
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 15px;
  border: 1px solid rgba(205, 177, 97, 0.6) !important;
  margin-bottom: 15px;
  box-shadow: 0px 0px 1px 1px #0000001a;
}
.server-status-values strong {
  font-weight: bold;
  font-size: 14px;
  color: #beae8b;
}
.server-status-values p {
  font-size: 13px;
  line-height: 18px;
}
.server-status-values a {
  text-decoration: underline;
}
.server-status-channel .server-status-values {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.server-status-channel .server-status-values div {
  flex: 1;
}
.server-status-channel .server-status-values div p {
  font-size: 11px;
  color: #649b3f;
}
.server-status-statics .server-status-values {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.server-status-statics .server-status-values div {
  flex: 1;
}
.server-status-statics .server-status-values div p {
  font-size: 11px;
}
.server-status-full {
  padding: 37px 20px;
  text-align: center;
}
.server-status-full a {
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 15.6px;
  text-align: center;
  color: #cebe98;
}
.server-status-full a:hover {
  text-decoration: underline;
}

.changedata-title {
  display: flex;
  justify-content: center;
}

.changedata-title p {
  font-weight: bold;
  font-size: 20px;
  color: #C8A951;
}

/*-- -----[REGISTER PAGE]----- -- */
.register-box .userpanel-content-form {
  margin-top: 30px;
}

.agree-box {
  margin-top: 18px;
  /* margin-bottom: 30px; */
}
.agree-box label {
  font-weight: normal;
  font-size: 13px;
  line-height: 20px;
  text-align: left;
  display: -webkit-box;
  align-items: center;
  gap: 10px;
}
.agree-box label span {
  width: 22px;
  height: 22px;
  background: #251515;
  display: flex;
  align-items: center;
  justify-content: center;
}
.agree-box label span svg {
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}
.agree-box input {
  width: 22px;
  height: 22px;
  margin-bottom: -38px;
  margin-top: 0px !important;
  opacity: 0;
}
.agree-box input:checked + label span svg {
  opacity: 1;
  transform: scale(1);
}

/*-- OVERVIEW -- */
.overview {
  padding-left: 20px;
  padding-bottom: 30px;
  padding-top: 30px;
  padding-right: 20px;
}
.overview-detail {
  padding: 20px;
  background: #321515;
  border-radius: 12px;
  border: 1px solid rgba(205, 177, 97, 0.6) !important;
  color: #999494;
}
.overview-detail-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-right: 24px;
}
.overview-detail-box:not(:last-child) {
  margin-bottom: 20px;
}
@media (max-width: 385px) {
  .overview-detail-box {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}
.overview-detail-prop {
  font-size: 14px;
  text-align: left;
}
.overview-detail-value {
  font-size: 14px;
  text-align: right;
  color: #cebe98;
  position: relative;
}
.overview-detail-value .btn-edit {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  transform: translateX(150%);
}

.overview-detail-value .btn-edit svg {
  width: 16px;
  height: 16px;
  fill: #C8A951;
}

/*-- -----[HELLO BOX]----- -- */
.hello-box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  color: #999494;
  font-size: 12px;
  padding: 20px 17px;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
  line-height: 23px;
  margin-top: 22px;
  text-align: center;
}
.hello-box .text-typo-light {
  color: #beae8b;
}
.hello-box img {
  width: 28px;
  height: 28px;
}
.hello-box .buy-coin {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 23px;
  text-align: center;
  color: #cebe98;
  width: 74px;
  height: 25px;
  border: 1px solid #4d3f3d;
  background: linear-gradient(rgba(60, 27, 27, 0.42) 0%, rgba(60, 27, 27, 0.42) 100%, rgba(159, 143, 114, 0.42) 100%);
}
.hello-box div {
  display: flex;
  align-items: center;
  gap: 10px;
}

/*-- -----[BUY COINS]----- -- */
.buy-coins {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 22px;
  padding-bottom: 40px;
}
.buy-coins-bar {
  padding: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  background: #321515;
  border-radius: 12px;
  border: 1px solid rgba(205, 177, 97, 0.6) !important;
  color: #999494;
  margin-top: 20px;
}
.buy-coins-bar p {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 23px;
  text-align: left;
  color: #cebe98;
}
.buy-coins-currency {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.buy-coins-currency button {
  border: 1px solid #432a2a;
  position: relative;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 23px;
  text-align: center;
  color: #705c5a;
  transition: all 0.3s;
  background: #5A2328;
  border-radius: 8px;
}
.buy-coins-currency button img {
  filter: brightness(0.5);
}
.buy-coins-currency button.active {
  color: #d7c69f;
}
.buy-coins-currency button.active img {
  filter: brightness(1);
}
.buy-coins-currency button:hover {
  filter: brightness(110%)
}
.buy-coins-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin-top: 15px;
}
.buy-coins-card {
  position: relative;
  text-align: center;
  padding-top: 20px;
  background: linear-gradient(90deg, rgba(90, 35, 40, 1) 0%, rgba(117, 48, 54, 0.8) 100%);
  border: 1px solid #C8A951;
  border-radius: 12px;
  padding: 20px;
  transition: all .3s ease-in-out
}
.buy-coins-card .btn-primary:hover {
  transform: scale(1.03);
}
.buy-coins-card .btn-primary:hover::before {
  background: unset;
}
.buy-coins-card .btn-primary:hover::after {
  background: unset;
}
.buy-coins-card:hover {
  -webkit-box-shadow: 0px 0px 24px 2px rgba(200, 169, 81, 0.34);
  box-shadow: 0px 0px 24px 2px rgba(200, 169, 81, 0.34);
  text-decoration: none;
}
.buy-coins-card h2 {
  font-family: OpenSans-Bold;
  font-weight: bold;
  font-size: 32px;
  color: #C8A951;
}
.buy-coins-card p {
  font-size: 14px;
  color: #cebe98;
  line-height: 18px;
  margin-bottom: 5px;
}
.buy-coins-card img {
  width: 84px;
  height: 70px;
  object-fit: contain;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  transition: all .3s ease-in-out;
}
.buy-coins-card:hover img {
  transform: translateY(-3px);
}
.buy-coins-card .btn-primary {
  width: 100%;
}

.bonus-row {
  margin-top: 15px;
  margin-bottom: 30px;
  display: flex;
  font-size: 14px;
  color: #aa9f84;
  justify-content: center;
}

.bonus-row .bonus {
  color: #58ff67;
  font-weight: 600;
  margin-right: 5px;
  text-shadow: 0 0 12px rgba(255, 166, 38, 0.6);
}

.ranking {
  position: relative;
  height: 61rem;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: linear-gradient(#501918, #501918), linear-gradient(rgba(6, 6, 6, 0.18), rgba(6, 6, 6, 0.18));
  background-blend-mode: overlay;
}
.ranking__title {
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 23px;
  text-align: center;
  margin-top: 20px;
}
.ranking__table {
  margin-top: 20px;
}
.ranking__table table {
  width: 100%;
  font-size: 1.3rem;
  display: none;
  table-layout: auto;
  border-collapse: collapse;
  animation: tab 0.3s;
}
.ranking__table table.fullrank {
  border: 1px solid rgba(205, 177, 97, 0.6) !important;
  border-radius: 12px;
  border-spacing: 0;
  border-collapse: separate;
  background: rgba(0, 0, 0, .2);
}

.ranking__table table.fullrank thead {
  background: rgba(0, 0, 0, .2);
}

.ranking__table table.fullrank td {
  white-space: nowrap;
  color: #beae8b;
}

.ranking__table table td.playername {
  text-shadow: 0 0 20px rgba(255, 166, 38, 0.6);
  color: #ecbc62;
}

.ranking__table table.fullrank tr:nth-child(even) {
  background-color: rgba(43, 43, 43,.2);
}

.ranking__table table.fullrank td:first-child {
  padding-left: 15px;
}

.ranking__table table.fullrank td:last-child {
  padding-left: 15px;
}

.ranking__table table.fullrank th {
  white-space: nowrap;
  padding-top: 15px;
  padding-bottom: 10px
}

.ranking__table table.fullrank tr:last-child td {
  padding-bottom: 15px;
}

.ranking__table table tr {
  width: 100%;
  transition: all .3s ease-in-out;
}
.ranking__table table th {
  color: #beae8b;
  font-size: 12px;
  text-align: left;
  padding: 5px 10px;
  font-weight: bold;
}
.ranking__table table th:first-child {
  width: 20px;
}

.ranking__table table tr.with-leaderboard:nth-child(1) td:first-child,
.ranking__table table tr.with-leaderboard:nth-child(2) td:first-child,
.ranking__table table tr.with-leaderboard:nth-child(3) td:first-child {
  font-family: "PenumbraSerifStd", serif;
  font-weight: bold;
  font-size: 16px;
  text-shadow: 0 0 10px rgba(255, 166, 38, 0.4);
  letter-spacing: 0.02em;
  position: relative;
  background: linear-gradient(#e6d48a, #e19f27);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  color: #ecbc62;
  line-height: 1.5;
}

.ranking__table table tr.with-leaderboard:nth-child(2) td:first-child {
  background: linear-gradient(#8ae6e3, #27e1d8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ranking__table table tr.with-leaderboard:nth-child(3) td:first-child {
  background: linear-gradient(#e36d6d, #e16527);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ranking__table table th:last-child {
  width: 60px;
  text-align: left;
}
.ranking__table table td {
  padding: 4px 9px;
  border-top: 1px solid transparent;
  transition: all 0.25s;
  color: #beae8b;
}
.ranking__table table td:first-child {
  padding: 5px 6px;
  text-align: left;
}
@media (max-width: 470px) {
  .ranking__table {
    max-width: 320px;
    overflow: auto;
  }
}
.ranking__table table td .player-dp {
  width: 26px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  filter: drop-shadow(0px 0px 1px rgba(255, 255, 255, 0.21));
  border-radius: 50%;
}
.ranking__table table td .name {
  color: #cebe98;
}
.ranking__table table td .badge {
  width: 24px;
  height: auto;
  object-fit: contain;
  /* display: block; */
  margin-left: auto;
  margin-right: auto;
}
.ranking__table table tbody tr:hover {
  background-color: #331f1f;
  box-shadow: 0px 0px 10px 2px rgb(127 100 49 / 20%), inset 0px 0px 10px 2px rgb(127 100 49 / 20%);
  transform: translateY(-3px);
}
/* .ranking__table table tbody tr:hover td {
  border-top: 1px solid #432a2a;
} */
.ranking__table table#player-table {
  display: table;
  table-layout: fixed;
}
.ranking__table table#player-table .name {
  overflow: hidden;
  color: #BEAE8B;
  font-size: 16px;
}
.ranking__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.ranking__btn button {
    position: relative;
    min-width: 10rem;
    padding: 0.2rem 0.9rem;
    height: auto;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.02em;
    line-height: 23px;
    text-align: center;
    color: #705c5a;
    transition: all 0.3s;
    background: #5A2328;
    border-radius: 8px;
}
.ranking__btn button:hover {
  transform: translateY(-1.5px);
  filter: brightness(110%);
}
.ranking__btn button.active {
  color: #d7c69f;
}
.ranking__full {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 25px;
  margin-top: auto;
}
.ranking__full a {
  font-weight: bold;
  color: #beae8b;
}

.center-ranking-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 15px;
  border-radius: 12px;
  background: rgba(0, 0, 0, .2);
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.center-ranking-bar .ranking__btn {
  margin-top: 0;
}
@media (max-width: 600px) {
  .center-ranking-bar {
    flex-direction: column;
  }
}
.center-ranking-search {
  align-self: flex-end;
  position: relative;
}
@media (max-width: 600px) {
  .center-ranking-search {
    width: 100%;
  }
}
.center-ranking-search input {
  background-color: transparent;
  width: 120px;
  min-height: fit-content;
  background: #241616;
  border: 1px solid #311f1f;
  padding: 5px 10px;
  color: #beae8b;
}
@media (max-width: 600px) {
  .center-ranking-search input {
    width: 100%;
  }
}
.center-ranking-search input::placeholder {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 23px;
  text-align: left;
  color: #402e2e;
}
.center-ranking-search input:focus {
  border-color: #beae8b;
}
.center-ranking-search button {
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
}
.center-ranking .ranking__table {
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .center-ranking .ranking__table {
    overflow: auto;
    width: 100vw;
  }
}
.center-ranking .ranking__table table {
  white-space: nowrap;
  overflow: auto;
}
.center-ranking .ranking__table table th {
  width: auto;
}
.center-ranking .ranking__table table th:first-child {
  width: 35px;
}
.center-ranking .ranking__table table td img {
  margin: 0;
  margin-left: 10px;
}
@media (max-width: 600px) {
  .center-ranking .ranking__table table {
    table-layout: auto;
  }
  .center-ranking .ranking__table table td img {
    margin-left: 0;
  }
}

.ranking-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.ranking-pagination button.page {
  font-size: 13px;
  line-height: 15.6px;
  text-align: center;
  color: #705c5a;
  width: 65px;
  height: 28px;
  background: #2d1d1d;
  border: 1px solid #432a2a;
}
.ranking-pagination button.active {
  color: #d7c69f;
}

.ranking-pagination button.disabled {
  opacity: 0.3;
}
.ranking-pagination button.page::-webkit-inner-spin-button, .ranking-pagination button.page::-webkit-outer-spin-button {
  display: none;
}

/*-- -----[DOWNLOAD PAGE]----- -- */
.download-content {
  padding-left: 20px;
  padding-right: 20px;
}

.download-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 25px;
   margin-top: 22px;
  border: 1px solid rgba(205, 177, 97, 0.6) !important;
  gap: 15px;
  flex-wrap: wrap;
}
.download-bar-btn {
  display: flex;
  align-items: center;
  gap: 23px;
}
.download-bar-btn p {
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 15.6px;
  text-align: left;
  color: #cebe98;
}
.download-bar-info {
  width: fit-content;
  margin-left: auto;
  font-weight: bold;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 15.6px;
  text-align: center;
  color: #ccd9e0;
  border-radius: 8px;
  padding: 10px 25px;
  background-color: #433b3b;
}

.download-btns {
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
}
.download-btns a:hover {
  text-decoration: none;
}
.download-btns .btn-primary {
  display: flex;
  align-items: center;
  width: 223px;
  padding: 10px 38px;
  gap: 24px;
  height: 63px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.38);
}
.download-btns .btn-primary strong {
  font-weight: bold;
  font-size: 17px;
  text-align: center;
}
.download-btns .btn-primary p {
  font-size: 12px;
  font-style: italic;
  color: #cebe98;
}
.download-btns .btn-download {
  height: 63px;
  width: 223px;
  padding: 5px 26px;
  background: #412020;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.38);
  transition: all 0.25s ease;
  border-bottom: 2px solid #572c2c;
}
.download-btns .btn-download strong {
  font-weight: bold;
  font-size: 17px;
  text-align: center;
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.64);
  color: #c2ad85;
}
.download-btns .btn-download p {
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.64);
  color: #ad5555;
}
.download-btns .btn-download:hover {
  box-shadow: none;
  background-color: #301818;
}

.self-stretch {
  align-self: stretch;
  /* min-height: 1014px; */
}

.minimum-req h5::after {
  content: "";
  position: absolute;
  width: 25%;
  height: 3px;
  background-color: #CDB161;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
}

.minimum-req h5 {
  padding: 18px 30px;
  font-weight: bold;
  position: relative;
  font-size: 18px;
  letter-spacing: 0.02em;
  line-height: 15.6px;
  text-align: center;
  color: #ecbc62;
}
.minimum-req-detail {
  background: rgba(64, 40, 40, 0);
  font-weight: 600;
  font-size: 13px;
  line-height: 17px;
  text-align: left;
  padding: 20px 24px;
  color: #999494;
}
@media (max-width: 500px) {
  .minimum-req-detail {
    padding: 30px 20px;
  }
}
.minimum-req-detail ul {
  max-width: 512px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.minimum-req-detail ul li {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 30px;
}
@media (max-width: 500px) {
  .minimum-req-detail ul li:not(:last-child) {
    margin-bottom: 14px;
  }
}

/*-- -----[FOOTER]----- -- */
.footer {
  padding-top: 100px;
}
body.dark .footer {
  background-color: #131212;
}
.footer .navbar {
  margin-bottom: 20px;
}
@media (max-width: 1100px) {
  .footer .navbar .navbar-wrapper {
    justify-content: center;
  }
}
.footer-copyright {
  background: #170b0b;
  border: 1px solid #2a1515;
  padding: 20px 30px;
}
.footer-copyright-wrap {
  max-width: 1300px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  text-align: center;
}
@media (max-width: 650px) {
  .footer-copyright-wrap {
    flex-direction: column;
    gap: 10px;
  }
}
.footer-copyright-wrap p {
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 16.8px;
}
.footer-copyright-wrap p a {
  color: #d7c69f;
}
.footer-social {
  max-width: 1300px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 750px) {
  .footer-social {
    flex-direction: column;
    gap: 25px;
  }
}
.footer-social ul {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 750px) {
  .footer-social ul {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
}
.footer-social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #d7c69f;
  transition: all 0.3s ease;
  border-radius: 50px;
}
.footer-social-icons a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.footer-social-icons a:hover {
  background-color: white;
}/*# sourceMappingURL=style.css.map */

.error {
	width: 100%;
	/* height: 40px; */
	background-color: #730000;
	padding: 10px;
	font-size: 15px;
	color: #fff;
	text-align: center;
  border-radius: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
.success {
	width: 100%;
	/* height: 40px; */
	background-color: #007319;
	padding: 10px;
	font-size: 15px;
	color: #fff;
	text-align: center;
  border-radius: 12px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
.warning {
  width: 100%;
  background-color: #a26900;
  padding: 10px;
  font-size: 15px;
  color: #fff;
  border-radius: 12px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}

/* .g-recaptcha {
  transform:scale(0.85);
  -webkit-transform:scale(0.85);
  transform-origin:0 0;
  -webkit-transform-origin:0 0;
} */

.main-left .g-recaptcha {
  transform:scale(0.9);
  -webkit-transform:scale(0.9);
  transform-origin:0 0;
  -webkit-transform-origin:0 0;
}

@media screen and (max-width: 1100px){
  .main-left .g-recaptcha {
    transform:scale(1.0);
    -webkit-transform:scale(1.0);
    transform-origin:0 0;
    -webkit-transform-origin:0 0;
  }
}

p.user-name {
  font-size: 18px;
  color: #beae8b;
}

.user-name span {
  font-weight: bold;
  color: #C8A951;
}

p.user-coins {
  margin-top: 10px;
  color: #999494;
}

.user-coins span {
  color: #beae8b;
  font-weight: bold;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(#501918 10%, #431615 100%);
  padding: 20px;
  text-align: center;
  border-top: 2px solid #C8A951;
  font-size: large;
  z-index: 99999;
}

.cookie-banner p {
  color: white;
}

#cookie-accept {
  border: none;
  padding: 10px 20px;
  margin: 0 10px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  background-color: #4CAF50;
  color: white;
}

#cookie-reject {
  border: none;
  padding: 10px 20px;
  margin: 0 10px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
  background-color: #f44336;
  color: white;
}

.server-selector {
  display: flex;
  width: 100%;
  /* height: 5vh; */
}

.server-selector a {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: white;
  background-color: #291716;
  transition: background-color 0.3s, transform 0.3s;
}

.server-selector a:hover {
  background-color: #581615!important;
  /* transform: scale(1.02);  */
}

.server-selector a.selected {
  background-color: #421514;
}

.server-selector .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  overflow: hidden;
}

.server-selector .logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.server-selector .name {
  font-size: 2rem;
}

input {
  background-color: #341616 !important;
  border: 1px solid rgba(205, 177, 97, 0.6) !important;
  border-radius: 8px !important;
  min-height: 45px;
}

input::-webkit-input-placeholder { /* Chrome */
  color: #a69878b6 !important;
}
input:-ms-input-placeholder { /* IE 10+ */
  color: #a69878b6 !important;
}
input::-moz-placeholder { /* Firefox 19+ */
  color: #a69878b6 !important;
  opacity: 1;
}
input:-moz-placeholder { /* Firefox 4 - 18 */
  color: #a69878b6 !important;
  opacity: 1;
}
input.icon-user {
  padding-left: 40px;
  background-position: 10px 10px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23a69878b6" d="M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512l388.6 0c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304l-91.4 0z"/></svg>');
}

input.icon-email {
  padding-left: 40px;
  background-position: 10px 10px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23a69878b6" d="M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48L48 64zM0 176L0 384c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-208L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z"/></svg>');
}

input.icon-password {
  padding-left: 40px;
  background-position: 10px 10px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23a69878b6" d="M144 144l0 48 160 0 0-48c0-44.2-35.8-80-80-80s-80 35.8-80 80zM80 192l0-48C80 64.5 144.5 0 224 0s144 64.5 144 144l0 48 16 0c35.3 0 64 28.7 64 64l0 192c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 256c0-35.3 28.7-64 64-64l16 0z"/></svg>');
}

input.icon-otp {
  padding-left: 40px;
  background-position: 10px 10px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path fill="%23a69878b6" d="M336 352c97.2 0 176-78.8 176-176S433.2 0 336 0S160 78.8 160 176c0 18.7 2.9 36.8 8.3 53.7L7 391c-4.5 4.5-7 10.6-7 17l0 80c0 13.3 10.7 24 24 24l80 0c13.3 0 24-10.7 24-24l0-40 40 0c13.3 0 24-10.7 24-24l0-40 40 0c6.4 0 12.5-2.5 17-7l33.3-33.3c16.9 5.4 35 8.3 53.7 8.3zM376 96a40 40 0 1 1 0 80 40 40 0 1 1 0-80z"/></svg>');
}

@-webkit-keyframes logo {
	0% {
		-webkit-transform: scale(0.93);
		        transform: scale(0.93);
	}
	50% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	100% {
		-webkit-transform: scale(0.93);
		        transform: scale(0.93);
	}
}

@keyframes logo {
	0% {
		-webkit-transform: scale(0.93);
		        transform: scale(0.93);
	}
	50% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	100% {
		-webkit-transform: scale(0.93);
		        transform: scale(0.93);
	}
}

.pulse {
  animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(205, 177, 97, 0.25);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(205, 177, 97, 0);
  }
}

.not-found-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.not-found-wrapper>span {
  font-size: 18px;
  font-weight: 600;
  color: #cebe98;
  text-align: center;
}

.not-found-wrapper>a {
  padding: 10px 20px;
  display: block;
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 15.6px;
  text-align: center;
  font-weight: bold;
  color: #beae8b;
  background: #5A2328;
  border-radius: 8px;
  box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.15);
  transition: all 0.25s;
}

.news-pagination {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.news-pagination .pagination-item {
  background: linear-gradient(to bottom, #333b44, #1c1f24);
  color: #ccd9e0;
  border-radius: 8px;
  box-shadow: 0px 12px 16px rgba(0, 0, 0, 0.15);
  text-align: center;
  padding: 12px;
  font-weight: bold;
  font-size: 14px;
  transition: all .3s ease-in-out;
}

.news-pagination .btn-prev {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: .5em;
  background: url(/img/arrow-right.svg) 0 0 no-repeat;
  background-size: contain;
  vertical-align: -1px;
  transform: rotate(180deg);
  filter: grayscale(2);
  transition: all .3s ease-in-out;
}

.news-pagination .btn-next {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: .5em;
  background: url(/img/arrow-right.svg) 0 0 no-repeat;
  background-size: contain;
  vertical-align: -1px;
  filter: grayscale(2);
  transition: all .3s ease-in-out;
}

.news-pagination .btn-prev.disabled, .news-pagination .btn-next.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.news-pagination .pagination-item.active {
  background: linear-gradient(to bottom, #44484c, #2b2d31);
}

.news-pagination .pagination-item:hover, .news-pagination .btn-next:hover {
  transform: translateY(-2.5px);
  text-decoration: none;
}

.news-pagination .btn-prev:hover {
  transform: translateY(-2.5px) rotate(180deg);
}

.news-pagination .pagination-btn {
  font-weight: bold;
  color: #beae8b;
  font-size: 12px;
}

.news-pagination .pagination-btn.disabled {
  color: #705c5a;
  cursor: not-allowed;
}

a.btn-primary:hover {
  text-decoration: none;
}

.ranking-avatar-wrapper {
  border: 1px solid #CDB161;
  padding: 5px;
  display: flex;
  width: max-content;
  border-radius: 12px;
  background: rgba(0, 0, 0, .2);
  position: relative;
  margin-left: 10px;
}


.ranking-level {
  position: absolute;
  bottom: -1px;
  transform: translateX(-50%);
  left: 94%;
  background: #3E1312;
  padding: 3px 6px;
  border-radius: 8px;
  border: 1px solid #CDB161;
  z-index: 1;
  font-size: 10px;
  font-weight: 600;
  color: #C8A951;
}

h5.logout-message {
  padding: 20px;
  font-size: 20px;
  text-align: center;
  color: #BEAE8B;
}

.download-content .download-bar {
  background: rgba(0, 0, 0, .2);
  border-radius: 12px;
}

.minimum-req {
  background: rgba(0, 0, 0, .2);
  border-radius: 12px;
}

.social-box:hover {
  transform: translateY(-3px);
}

.language-menu img {
  width: 24px;
  border-radius: 24px;
}

.decorations-top::after {
  position: absolute;
  content: "";
  display: block;
  width: 14px;
  top: 0;
  right: 0px;
  height: 14px;
  background: url(/img/container-corner-gold.png) no-repeat 0 0;
  background-size: 14px;
  transform: rotate(-90deg);
}

.decorations-top::before {
  position: absolute;
  content: "";
  display: block;
  width: 14px;
  top: 0;
  left: 0px;
  height: 14px;
  background: url(/img/container-corner-gold.png) no-repeat 0 0;
  background-size: 14px;
  transform: rotate(180deg);
}

.decorations-bottom::after {
  position: absolute;
  content: "";
  display: block;
  width: 14px;
  bottom: 0;
  right: 0px;
  height: 14px;
  background: url(/img/container-corner-gold.png) no-repeat 0 0;
  background-size: 14px;
  transform: rotate(0deg);
}

.decorations-bottom::before {
  position: absolute;
  content: "";
  display: block;
  width: 14px;
  bottom: 0;
  left: 0px;
  height: 14px;
  background: url(/img/container-corner-gold.png) no-repeat 0 0;
  background-size: 14px;
  transform: rotate(-270deg);
}

.active-day {
  color: #ecbc62 !important;
  border: 1px solid #C8A951;
  border-bottom: 0;
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  border-radius: 12px;
  font-family: "PenumbraSerifStd", serif;
  text-transform: uppercase;
}

.minimum-req-detail.active {
  border: 1px solid #C8A951;
  border-top: 0;
  border-radius: 12px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.minimum-req-detail li>span:first-child {
  color: #beae8b;
}

input.input-error {
  border: 1px solid rgb(237 45 45 / 60%) !important;
  color: #f44848;
}

span.text-error {
  padding: 5px 0px 0px 5px;
  display: inline-block;
  color: #f44848;
}

.password-toggle {
  position: absolute;
  right: 15px;
  height: 20px;
  width: 20px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  transform: translateY(-50%);
  top: 50%;
  cursor: pointer;
}

.password-toggle.show {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><path fill="%23beae8b" d="M288 32c-80.8 0-145.5 36.8-192.6 80.6C48.6 156 17.3 208 2.5 243.7c-3.3 7.9-3.3 16.7 0 24.6C17.3 304 48.6 356 95.4 399.4C142.5 443.2 207.2 480 288 480s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C433.5 68.8 368.8 32 288 32zM144 256a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-64c0 35.3-28.7 64-64 64c-7.1 0-13.9-1.2-20.3-3.3c-5.5-1.8-11.9 1.6-11.7 7.4c.3 6.9 1.3 13.8 3.2 20.7c13.7 51.2 66.4 81.6 117.6 67.9s81.6-66.4 67.9-117.6c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3z"/></svg>');
}

.password-toggle.hide {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><path fill="%23beae8b" d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L525.6 386.7c39.6-40.6 66.4-86.1 79.9-118.4c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C465.5 68.8 400.8 32 320 32c-68.2 0-125 26.3-169.3 60.8L38.8 5.1zM223.1 149.5C248.6 126.2 282.7 112 320 112c79.5 0 144 64.5 144 144c0 24.9-6.3 48.3-17.4 68.7L408 294.5c8.4-19.3 10.6-41.4 4.8-63.3c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3c0 10.2-2.4 19.8-6.6 28.3l-90.3-70.8zM373 389.9c-16.4 6.5-34.3 10.1-53 10.1c-79.5 0-144-64.5-144-144c0-6.9 .5-13.6 1.4-20.2L83.1 161.5C60.3 191.2 44 220.8 34.5 243.7c-3.3 7.9-3.3 16.7 0 24.6c14.9 35.7 46.2 87.7 93 131.1C174.5 443.2 239.2 480 320 480c47.8 0 89.9-12.9 126.2-32.5L373 389.9z"/></svg>');
}

.password-wrapper {
  position: relative;
  width: 100%;
  height: 45px;
  margin-top: 9px;
}

.password-wrapper input {
  padding-right: 40px
}

.tooltip {
  position: relative;
  cursor: help;
}

.tooltip::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(50%);
  background-color: #2f2a2a;
  border: 1px solid rgba(205, 177, 97, 0.6);
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 1000;
}

.tooltip:hover::after {
  opacity: 1;
}

.dark-mode-toggle svg {
  height: 20px;
  width: 20px;
  fill: #ecbc62;
}

svg.sun {
  display: none;
}

.dark svg.sun {
  display: unset;
}

svg.moon {
  display: unset;
}

.dark svg.moon {
  display: none;
}

.ribbon {
  width: 100px;
  height: 100px;
  overflow: hidden;
  position: absolute;
}
.ribbon::before,
.ribbon::after {
  position: absolute;
  z-index: -1;
  content: '';
  display: block;
  border: 3px solid #1eb5ff;
}
.ribbon span {
  position: absolute;
  display: block;
  width: 165px;
  padding: 5px 0;
  background-color: #C8A951;
  font-weight: 800;
  color: #a03838;
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
}

.ribbon-top-right {
  top: -3px;
  right: -3px;
}
.ribbon-top-right::before,
.ribbon-top-right::after {
  border-top-color: transparent;
  border-right-color: transparent;
}
.ribbon-top-right::before {
  top: 0;
  left: 0;
}
.ribbon-top-right::after {
  bottom: 0;
  right: 0;
}
.ribbon-top-right span {
  left: -22px;
  top: 30px;
  transform: rotate(45deg);
}


.news-content strong, .news-content b {
  color: #d7c69f;
}

.news-content h2 {
  color: #ecbc62;
}

.news-content h3 {
  color: #d7c69f;
}

tr.found {
    outline: 2px solid #ecbc62bd;
    background-color: rgb(0 0 0 / 40%) !important;
}