@charset "UTF-8";
@import "/css/vendor/fonts/montserrat.css";
@import "/css/vendor/fonts/rubik.css";
@import "/css/vendor/fonts/strait.css";
.btn-gradient {
  width: 200px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  margin: 20px;
  height: 55px;
  text-align: center;
  border: none;
  background-size: 300% 100%;
  border-radius: 90px;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.btn-gradient:hover {
  background-position: 100% 0;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.btn-gradient:focus {
  outline: none;
}
.btn-gradient.color-1 {
  background-image: linear-gradient(to right, #25aae1, #40e495, #30dd8a, #2bb673);
}
.btn-gradient.color-2 {
  background-image: linear-gradient(to right, #f5ce62, #e43603, #fa7199, #e85a19);
}
.btn-gradient.color-3 {
  background-image: linear-gradient(to right, #667eea, #764ba2, #6B8DD6, #8E37D7);
}
.btn-gradient.color-4 {
  background-image: linear-gradient(to right, #fc6076, #ff9a44, #ef9d43, #e75516);
}
.btn-gradient.color-5 {
  background-image: linear-gradient(to right, #0ba360, #3cba92, #30dd8a, #2bb673);
}
.btn-gradient.color-6 {
  background-image: linear-gradient(to right, #009245, #FCEE21, #00A8C5, #D9E021);
}
.btn-gradient.color-7 {
  background-image: linear-gradient(to right, #6253e1, #852D91, #A3A1FF, #F24645);
}
.btn-gradient.color-8 {
  background-image: linear-gradient(to right, #29323c, #485563, #2b5876, #4e4376);
}
.btn-gradient.color-9 {
  background-image: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);
}
.btn-gradient.color-10 {
  background-image: linear-gradient(to right, #ed6ea0, #ec8c69, #f7186a, #FBB03B);
}
.btn-gradient.color-11 {
  background-image: linear-gradient(to right, #eb3941, #f15e64, #e14e53, #e2373f);
  box-shadow: 0 5px 15px rgba(242, 97, 103, 0.4);
}

.text-no-select {
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
}

@keyframes mousedown {
  0% {
    top: 0;
  }
  50% {
    top: 10px;
  }
  100% {
    top: 0;
  }
}
@keyframes drop-mobile-menu {
  0% {
    transform: translateY(-150%);
  }
  100% {
    transform: translateY(0);
  }
}
.gradient-underline {
  position: relative;
  display: table;
  margin: auto;
}
.gradient-underline.green::after {
  background: linear-gradient(90deg, #00bf8f 0%, #288d2e 100%);
}
.gradient-underline::after {
  content: "";
  display: block;
  margin: 1vh auto 0;
  height: 8px;
  max-width: 2em;
  border-radius: 20px;
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  background: #253f54;
}

body::-webkit-scrollbar-thumb {
  background-color: #6497be;
  border-radius: 20px;
}

.gradient-text {
  color: transparent;
  -webkit-background-clip: text;
}
.gradient-text.orange {
  background-image: linear-gradient(300deg, #F37335 0%, #FDC830 100%);
}
.gradient-text.green {
  background-image: linear-gradient(90deg, #00bf8f 0%, #288d2e 100%);
}

hr.light-horizontal {
  max-width: 45%;
  margin: 0 auto;
  height: 4px;
  background: radial-gradient(#00ccff, rgba(0, 0, 0, 0.4784313725));
  opacity: 0.6;
  border: none;
  border-radius: 15px;
}

.numbered-list {
  list-style: none;
  width: 600px;
  max-width: 90%;
  margin: 0 auto;
}
.numbered-list .item {
  --item-size: 3rem;
  display: block;
  clear: both;
  counter-increment: list;
  padding-bottom: 6vh;
  font-size: 1.1rem;
  line-height: 1.375;
  position: relative;
  min-height: var(--item-size);
}
.numbered-list .item .ip-address {
  cursor: copy;
}
.numbered-list .item:before {
  font-size: 2rem;
  content: counter(list);
  width: var(--item-size);
  height: var(--item-size);
  float: left;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  shape-outside: unset;
  z-index: 1;
  background: rgba(81, 100, 116, 0.2901960784);
  border-radius: 4px;
  box-shadow: 0 0 14px 0 rgba(20, 36, 49, 0.2901960784);
  margin-right: 1rem;
  color: #00bf8f;
}
.numbered-list .item:after {
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  z-index: -1;
  border-top-left-radius: 3px;
}
.numbered-list .item > span {
  display: table-row;
}
.numbered-list .headline {
  margin: 0 0 1rem 0;
}

@media (max-width: 576px) {
  .numbered-list .item {
    --item-size: 2.5rem !important;
  }
  .numbered-list .item:before {
    margin-right: 10px !important;
  }
}
.text-shadow {
  filter: drop-shadow(0px 4px 6px rgba(32, 38, 60, 0.7));
}

.tippy-box[data-theme~=dark-transparent] {
  background-color: rgba(0, 0, 0, 0.5882352941);
  color: white;
}
.tippy-box[data-theme~=dark-transparent] .tippy-arrow {
  color: rgba(0, 0, 0, 0.5882352941);
}

.dashed-text {
  color: white;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.6705882353);
}

.main-paragraph {
  font-weight: bold;
  padding-left: 1rem;
}

.preloader {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  height: 100%;
  text-align: center;
  background-color: #1E394E;
  z-index: 999;
}
.preloader:before {
  height: 100%;
  content: "";
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}
.preloader-container {
  display: inline-block;
  outline: 0;
  padding: 20px;
  position: relative;
  max-width: 700px;
  min-width: 320px;
  vertical-align: middle;
}
.preloader-inner {
  margin: 0 auto;
  display: block;
}
.preloader-icon {
  width: 170px;
  height: 170px;
  -webkit-animation: spinner-self 2s linear infinite;
  animation: spinner-self 2s linear infinite;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}
.preloader-icon-circle {
  fill: none;
  stroke: #d8d8d8;
  -webkit-animation: spinner-status 1.5s ease-in-out infinite;
  animation: spinner-status 1.5s ease-in-out infinite;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 89, 200;
  stroke-dashoffset: 0;
}

@keyframes spinner-self {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner-status {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124;
  }
}
.long-dropdown-button {
  width: 100%;
  height: 62px;
  background-color: rgba(48, 95, 133, 0.85);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  font-size: 18px;
  cursor: pointer;
}
.long-dropdown-button__content {
  display: flex;
  justify-content: space-between;
  padding: 0 15px 0 15px;
}
.long-dropdown-button__content-title {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
}
.long-dropdown-button__content-title i {
  color: #00bf8f;
  font-size: 8px;
}
.long-dropdown-button__content-chevron i {
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.long-dropdown-button.open i {
  transform: rotate(180deg);
}
.long-dropdown-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms ease;
}
.long-dropdown-list.show {
  max-height: 500px;
}

.texture-table {
  display: flex;
  flex-direction: column;
}
.texture-table[aria-colcount="3"] .grid-row {
  grid-template-columns: [name] 1fr [versions] 1fr [size] 1fr [updated] 1fr [download] 40px;
  grid-template-columns: [name] 1fr [versions] 1fr [size] 1fr [download] 40px;
  grid-template-columns: [name] 1fr [versions] 1fr [download] 40px;
}
.texture-table[aria-colcount="3"] .grid-cell[aria-colindex="4"] {
  display: none;
}
.texture-table[aria-colcount="3"] .grid-cell[aria-colindex="3"] {
  display: none;
}
.texture-table[aria-colcount="4"] .grid-row {
  grid-template-columns: [name] 1fr [versions] 1fr [size] 1fr [updated] 1fr [download] 40px;
  grid-template-columns: [name] 1fr [versions] 1fr [size] 1fr [download] 40px;
}
.texture-table[aria-colcount="4"] .grid-cell[aria-colindex="4"] {
  display: none;
}
.texture-table[aria-colcount="5"] .grid-row {
  grid-template-columns: [name] 1fr [versions] 1fr [size] 1fr [updated] 1fr [download] 40px;
}
.texture-table .grid-cell__download {
  text-align: center;
}

.grid-row {
  display: grid;
  padding: 4px 15px 4px 15px;
  align-items: center;
  background-color: rgba(40, 78, 108, 0.85);
  margin-top: 10px;
  border-radius: 8px;
}

.grid-cell {
  flex: 1;
  padding: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.35;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 400px;
  max-width: calc(100% - 48px);
  background-color: rgba(42, 70, 92, 0.9803921569);
  border-radius: 16px;
  padding: 20px 25px;
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  border: 1px solid rgba(42, 70, 92, 0.9803921569);
  border-left: 2px solid #FDC830;
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner__text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}
.cookie-banner .btn-gradient {
  margin: 0;
  width: 100%;
  height: 42px;
  font-weight: normal;
}
.cookie-banner a {
  color: inherit;
}
@media (max-width: 600px) {
  .cookie-banner {
    width: calc(100% - 32px);
    max-width: 100%;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(20px);
    bottom: 16px;
    padding: 24px;
    border-radius: 14px;
  }
  .cookie-banner.is-visible {
    transform: translateX(-50%) translateY(0);
  }
}

.text-yellow {
  color: #FDC830;
}
.text-cyan {
  color: #00bf8f;
}

.dashed-underline-white {
  border-bottom: 1px dashed #fff;
}
.dashed-underline-yellow {
  border-bottom: 1px dashed #FDC830;
}
.dashed-underline-cyan {
  border-bottom: 1px dashed #00bf8f;
}

@media (max-width: 992px) {
  .navbar {
    justify-content: space-between;
    padding: 0 6% 0 6%;
    border-bottom: unset;
  }
  .navbar.filled {
    background-color: rgba(26, 50, 68, 0.768627451) !important;
  }
  .navbar .mobile-menu-button {
    display: block !important;
  }
  .navbar-menu {
    display: none !important;
  }
  .navbar-social-media {
    display: none !important;
  }
  video#video_content {
    transform: scale(2.1) !important;
  }
  .navbar-container .dayzcraft-logo {
    font-size: 40px !important;
  }
}
@media (max-width: 1230px) {
  .navbar-menu {
    font-size: 14px;
  }
  .navbar-social-media {
    font-size: 30px !important;
    gap: 18px !important;
  }
  .navbar .navbar-container {
    gap: 25px;
  }
  .navbar .navbar-container .dayzcraft-logo {
    font-size: 30px;
  }
}
@media (max-width: 1030px) {
  .navbar .navbar-container {
    gap: 18px;
  }
}
@media (hover: none) and (pointer: coarse), (hover: none) and (pointer: fine) {
  .mouse-icon i {
    display: none;
  }
  .mouse-container {
    bottom: 6% !important;
  }
  .mouse-container .mouse-down i {
    font-size: 2.5rem !important;
  }
}
@media (max-height: 450px) {
  .btn-gradient {
    height: 14vh !important;
  }
}
@media (max-width: 576px) {
  .video-block {
    padding: 10px;
  }
  .video-button-container {
    flex-wrap: wrap;
  }
  .video-button-container a {
    display: block;
    width: 100%;
  }
  .video-button-container .btn-gradient {
    height: 9vh;
    width: 100% !important;
  }
  .video-button-container .btn-gradient {
    font-size: 3vh;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 2.8vh !important;
  }
}
@media (max-width: 1170px) {
  .container {
    padding: 3.5vh;
  }
}
@media (min-width: 768px) {
  .adaptive-container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .adaptive-container {
    max-width: 100%;
  }
}
@media (min-width: 1170px) {
  .adaptive-container {
    max-width: 1170px;
  }
}
@media (max-width: 992px) {
  .navbar {
    justify-content: unset !important;
    width: 100%;
    box-sizing: border-box;
    align-items: unset !important;
    border-bottom: unset !important;
  }
  .navbar.filled {
    backdrop-filter: blur(5px);
  }
  .navbar-container {
    display: block !important;
    width: 100%;
  }
  .navbar .navbar-main-elements {
    display: flex !important;
    justify-content: space-between !important;
    height: 72px;
    align-items: center;
  }
  .active-mobile-menu .navbar {
    height: 100%;
    position: fixed;
    background: rgba(26, 50, 68, 0.768627451);
    backdrop-filter: blur(20px);
    overflow-y: auto;
    overflow-x: hidden;
  }
  .active-mobile-menu .navbar-social-media {
    display: flex !important;
    justify-content: center;
    font-size: 3em;
    opacity: 0.4;
  }
  .active-mobile-menu .navbar-menu {
    display: block !important;
  }
  .active-mobile-menu .navbar-menu ul.list {
    display: block !important;
    padding: 2vh 0 2vh 0;
  }
  .active-mobile-menu .navbar-menu li {
    background: rgba(125, 157, 186, 0.1294117647);
    border-radius: 6px;
    margin-bottom: 10px;
  }
  .active-mobile-menu .navbar-menu li:last-child {
    margin-bottom: 0 !important;
  }
  .active-mobile-menu .navbar-menu li a {
    width: 100%;
    display: flex;
    padding: 16px;
    margin: 0;
    font-size: 18px;
  }
  .active-mobile-menu .navbar-container {
    flex-direction: column !important;
  }
}
@media (max-width: 1200px) {
  #game-features-block .game-features-cards {
    gap: 3vh !important;
    grid-template: repeat(1, auto)/repeat(3, 1fr) !important;
  }
  #game-features-block .game-features-cards .card .card-icon:first-child {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  #game-features-block .card {
    border-radius: 4% !important;
  }
  #game-features-block .game-features-cards {
    grid-template: repeat(1, auto)/repeat(2, 1fr) !important;
  }
}
@media (max-width: 576px) {
  #game-features-block .game-features-cards {
    grid-template: repeat(1, auto)/repeat(1, 1fr) !important;
  }
}
@media (max-width: 576px) {
  .online-container .online-counter-word {
    display: none !important;
  }
  .online-container .online-counter-icon {
    display: inline-block !important;
  }
}
@media (max-width: 992px) {
  #up-button {
    display: none !important;
  }
}
@media (max-width: 992px) {
  .page-description {
    width: 100% !important;
  }
}
.warning-icon-secondary-yellow {
  --fa-secondary-color: #FDC830;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

html, body {
  width: 100%;
  min-height: 100%;
}

html {
  position: relative;
  height: auto !important;
  min-height: 100% !important;
}

body {
  position: static;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#main-container {
  overflow: hidden;
}

.background-scratches {
  background: url(../img/design/background/scratches.jpg);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
  opacity: 1;
}
.background-color {
  background: #1E394E;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 2;
  opacity: 0.95;
}
.background-video {
  z-index: 2;
  width: 100%;
  position: absolute;
  opacity: 0.5;
  height: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.67) 71%, rgba(255, 255, 255, 0) 100%), radial-gradient(#fff, rgba(0, 0, 0, 0) 50%);
}
.background-video video#video_content {
  min-width: 100%;
  position: absolute;
  transform: translate(-50%, -50%) !important;
  left: 50%;
  top: 50%;
}

.container {
  color: white;
  z-index: 2;
  position: relative;
  margin: 0 !important;
}

.dayzcraft-logo {
  font-family: "Strait", cursive; /* TODO загрузить шрифт в fonts */
  text-transform: uppercase;
  font-weight: 900;
  font-size: 40px;
  color: white;
  margin: 0;
  text-decoration: none;
}

.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 85px;
  z-index: 99;
  border-bottom: solid 1px rgba(106, 139, 156, 0.2509803922);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.35s;
}
.navbar-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}
.navbar.filled {
  height: 72px;
  background-color: #1f2c40;
  border-bottom: unset !important;
}
.navbar a.nav-link {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  white-space: nowrap;
  cursor: pointer;
}
.navbar a.nav-link:hover {
  color: #FDC830;
  transition: 0.8s;
}
.navbar .mobile-menu-button {
  display: none;
  font-size: 2.5rem;
  color: white;
  opacity: 80%;
}
.navbar-menu .list {
  list-style: none;
  display: flex;
  align-items: center;
}
.navbar-social-media {
  display: flex;
  gap: 20px;
  font-size: 40px;
}
.navbar-social-media a {
  color: white;
}
.navbar-social-media a:hover {
  color: #FDC830;
  transition: 0.8s;
}

.active-mobile-menu .navbar.filled {
  height: 100% !important;
}

.adaptive-container {
  margin: 0 auto;
  width: 100%;
}

.home-screen {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}

.video-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5vh;
}
.video-text {
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  filter: drop-shadow(0px 4px 6px rgba(32, 38, 60, 0.7));
  font-family: "Rubik", sans-serif;
}
.video-text {
  font-size: 30px;
}
@media screen and (min-width: 250px) {
  .video-text {
    font-size: calc(30px + calc(8px / (8px * 0 + 1)) * ((100vw - 250px) / calc(950px / (950px * 0 + 1))));
  }
}
@media screen and (min-width: 1200px) {
  .video-text {
    font-size: 38px;
  }
}
.video-button-container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 2vh;
}
.video-button-container .btn-gradient {
  height: 60px;
  width: 150px;
  margin: 0;
}

.online-container {
  font-size: 16px;
}
@media screen and (min-width: 250px) {
  .online-container {
    font-size: calc(16px + calc(4px / (4px * 0 + 1)) * ((100vw - 250px) / calc(950px / (950px * 0 + 1))));
  }
}
@media screen and (min-width: 1200px) {
  .online-container {
    font-size: 20px;
  }
}
.online-container.hidden {
  display: none;
}
.online-container .online-counter-icon {
  display: none;
}

.mouse-container {
  bottom: 4%;
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.mouse-container .mouse-icon i {
  font-size: 2.2rem;
  --fa-primary-color: #00bf8f;
  --fa-secondary-color: white;
  --fa-secondary-opacity: 0.25;
}
.mouse-container .mouse-down i {
  color: #00bf8f;
  font-size: 1.8rem;
  text-shadow: 0 0 30px #00bf8f;
  animation: mousedown infinite linear 1s;
}

.active-mobile-menu .mobile-menu-button i:first-child {
  display: none;
}
.active-mobile-menu .mobile-menu-button i:last-child {
  display: block !important;
}

.block-description {
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1vh;
  padding: 5vh 0 5vh 0;
  filter: drop-shadow(0px 4px 6px rgba(32, 38, 60, 0.7));
}
.block-description .title {
  line-height: 1;
}
.block-description .title .gradient-text {
  font-family: "Rubik", sans-serif;
}
.block-description .title {
  font-size: 30px;
}
@media screen and (min-width: 250px) {
  .block-description .title {
    font-size: calc(30px + calc(8px / (8px * 0 + 1)) * ((100vw - 250px) / calc(950px / (950px * 0 + 1))));
  }
}
@media screen and (min-width: 1200px) {
  .block-description .title {
    font-size: 38px;
  }
}
.block-description .subtitle {
  color: #e4e4e4;
  font-size: 13px;
}

.container {
  padding-bottom: 5vh;
}

#game-features-block .game-features-cards {
  display: grid;
  grid-template: repeat(1, auto)/repeat(4, 1fr);
  gap: 2em;
  padding: 10px;
}
#game-features-block .game-features-cards .card {
  background-color: rgba(81, 100, 116, 0.2901960784);
  width: 100%;
  box-sizing: border-box;
  padding: 1em;
  overflow: hidden;
  border-radius: 8%;
  box-shadow: 0 0 14px 0 rgba(20, 36, 49, 0.2901960784);
  transition: all 0.15s linear;
}
#game-features-block .game-features-cards .card:hover {
  transform: translateY(-3.26pt);
  box-shadow: 0 8px 10px 0 rgba(20, 36, 49, 0.631372549) !important;
}
#game-features-block .game-features-cards .card .card-icon {
  display: flex;
  justify-content: center;
}
#game-features-block .game-features-cards .card .card-icon i {
  opacity: 0.6;
  font-size: 8rem;
  border-radius: 12px;
}
#game-features-block .game-features-cards .card .card-icon img {
  height: 12em;
}
#game-features-block .game-features-cards .card p {
  padding-bottom: 0 !important;
}
#game-features-block .game-features-cards .card .card-title {
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 5px 0;
}
#game-features-block .game-features-cards .card .card-title {
  font-size: 16px;
}
@media screen and (min-width: 250px) {
  #game-features-block .game-features-cards .card .card-title {
    font-size: calc(16px + calc(8px / (8px * 0 + 1)) * ((100vw - 250px) / calc(950px / (950px * 0 + 1))));
  }
}
@media screen and (min-width: 1200px) {
  #game-features-block .game-features-cards .card .card-title {
    font-size: 24px;
  }
}
#game-features-block .game-features-cards .card .card-subtitle {
  color: #fff;
  text-align: center;
  padding: 10px 0;
  margin: 0 auto;
}
#game-features-block .game-features-cards .card .card-subtitle {
  font-size: 13px;
}
@media screen and (min-width: 250px) {
  #game-features-block .game-features-cards .card .card-subtitle {
    font-size: calc(13px + calc(1px / (1px * 0 + 1)) * ((100vw - 250px) / calc(950px / (950px * 0 + 1))));
  }
}
@media screen and (min-width: 1200px) {
  #game-features-block .game-features-cards .card .card-subtitle {
    font-size: 14px;
  }
}

#about-game-block .about-game {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  #about-game-block .about-game {
    grid-template-columns: 1fr;
  }
}
#about-game-block .about-game-title {
  font-family: Rubik, sans-serif;
  text-transform: uppercase;
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  z-index: 2;
  text-align: center;
}
#about-game-block .about-game-image {
  width: 100%;
  height: auto;
  border-radius: 40px;
  object-fit: cover;
  box-shadow: 0 0 14px 0 rgba(20, 36, 49, 0.2901960784);
}
#about-game-block .about-game-image-block {
  position: relative;
  display: flex;
  margin-bottom: 7px;
}
#about-game-block .about-game-text {
  font-size: 16px;
  text-align: center;
  filter: drop-shadow(0px 4px 6px rgba(32, 38, 60, 0.7));
}

#footer-group .footer-top {
  background: none;
  border-top: solid 1px rgba(106, 139, 156, 0.2705882353);
  padding: 40px 0;
  position: relative;
  z-index: 2;
  margin-top: auto;
}
#footer-group .footer-top .adaptive-container {
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 10%;
  flex-wrap: wrap;
  row-gap: 25px;
}
#footer-group .footer-top .adaptive-container .dayzcraft-logo {
  opacity: 0.55;
}
#footer-group .footer-top .adaptive-container .footer-links {
  list-style: none;
}
#footer-group .footer-top .adaptive-container .footer-links a {
  text-decoration: none;
  font-size: 15px;
  line-height: 32px;
  color: #FDC830;
  font-weight: bold;
  transition: color 0.3s;
}
#footer-group .footer-top .adaptive-container .footer-links a:hover {
  color: #F37335;
}
#footer-group .footer-top .adaptive-container .footer-support {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
#footer-group .footer-top .adaptive-container .footer-support .footer-support-icon {
  font-size: 2.5em;
  color: #00bf8f;
}
#footer-group .footer-top .adaptive-container .footer-support .footer-support-text {
  color: white;
}
#footer-group .footer-top .adaptive-container .footer-support .footer-support-text .footer-support-title {
  color: #00bf8f;
  font-weight: bold;
}
#footer-group .footer-top .adaptive-container .footer-support .footer-support-text .support-links {
  list-style: none;
}
#footer-group .footer-top .adaptive-container .footer-support .footer-support-text .support-links li {
  line-height: 24px;
}
#footer-group .footer-bottom {
  padding: 1.4em 0;
  background: rgba(17, 29, 40, 0.3019607843);
  color: #7D9DBA;
  font-size: 14px;
  text-align: center;
  position: relative;
  z-index: 2;
}

#up-button {
  opacity: 1;
  display: none;
  bottom: 40px;
  right: 40px;
  cursor: pointer;
  position: fixed;
  z-index: 99;
  transition: transform 0.3s;
}
#up-button i {
  color: #00bf8f;
  font-size: 4.5em;
}
#up-button:hover {
  transform: scale(1.1);
}

.page-description {
  line-height: 1.4;
  margin-top: 10px;
  width: 50%;
}
.page-description p {
  padding: 0;
}
.page-description p + p {
  margin-top: 10px;
}

#textures .long-dropdown + .long-dropdown {
  margin-top: 20px;
}

#rules p, #offer p, #privacy p {
  padding-bottom: 1rem;
}

.swiper-pagination-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.swiper-pagination-custom {
  display: block;
  position: relative;
  bottom: 0 !important;
  --swiper-pagination-bullet-size: 22px;
}
.swiper-pagination-custom .swiper-pagination-bullet-active {
  background-image: linear-gradient(300deg, #F37335 0%, #FDC830 100%);
}
