/*/ Fonts /*/
/*/ Buttons /*/
/*/ Box shadow  /*/
ul,
ol,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bg-body-tertiary {
  background-color: #0c0f14 !important;
  color: #fff !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show,
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.78);
}

.dropdown-menu {
  background: rgba(14, 11, 12, 0.98);
  color: #e8edf2;
  border-radius: 10px;
  border: 1px solid rgba(94, 184, 230, 0.18);
}
.dropdown-menu .dropdown-item {
  color: rgba(255, 255, 255, 0.78);
}
.dropdown-menu .dropdown-item:hover {
  color: #fff;
  background: rgba(94, 184, 230, 0.12);
}

p {
  margin-bottom: 0;
}

.badge {
  max-width: 90px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0;
}

.list-group {
  --bs-list-group-bg: transparent;
}
.list-group .list-group-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  border: none;
  border-bottom: 1px solid rgba(94, 184, 230, 0.06);
  font-size: 0.86rem;
  padding-left: 0;
  padding-right: 0;
}

.form-check-input[type=checkbox] {
  border-radius: 4px;
}

.form-check-input {
  -webkit-appearance: none;
  appearance: none;
  width: 1.25em;
  height: 1.25em;
  margin-top: 0.125em;
  vertical-align: top;
  background-color: rgba(10, 14, 20, 0.9);
  border: 1px solid rgba(94, 184, 230, 0.2);
  border-radius: 4px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.form-check-input:checked {
  background-color: rgba(10, 14, 20, 0.9);
  border-color: #5eb8e6;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%235eb8e6' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.form-check-input:focus {
  border-color: #5eb8e6;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(94, 184, 230, 0.15);
}
.form-check-input:disabled {
  pointer-events: none;
  filter: none;
  opacity: 0.5;
}

.form-check-label {
  cursor: pointer;
}

button.btn {
  text-decoration: none;
}

.btn {
  padding: 10px 22px !important;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 0.82rem;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.btn:hover, .btn:focus {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary,
.btn-success {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent), linear-gradient(135deg, #2a7aa8, rgb(11.6705882353%, 33.900280112%, 46.6823529412%));
  border: 1px solid rgba(94, 184, 230, 0.3);
  color: #fff;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus,
.btn-success:hover,
.btn-success:active,
.btn-success:focus {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent), linear-gradient(135deg, #5eb8e6, #2a7aa8) !important;
  border-color: rgba(168, 220, 244, 0.4) !important;
  box-shadow: 0 10px 30px rgba(94, 184, 230, 0.25) !important;
  color: #fff !important;
}

.btn-outline-light,
.btn-secondary {
  border: 1px solid rgba(94, 184, 230, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}
.btn-outline-light:hover, .btn-outline-light:focus,
.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(94, 184, 230, 0.08);
  border-color: rgba(94, 184, 230, 0.35);
  color: #fff;
}

.breadcrumb {
  margin: 0;
  padding-left: 25px;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.85);
}
.breadcrumb-item + .breadcrumb-item::before {
  width: 10px;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
  background: url(../images/white-arrow.svg) no-repeat center center;
  opacity: 0.4;
  content: "";
  background-size: 10px 10px;
  margin: 0 12px;
  padding-left: 0;
}
.breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}
@media screen and (max-width: 576px) {
  .breadcrumb-item.active {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

.form-select {
  min-height: 44px;
  background-color: rgba(8, 12, 18, 0.9);
  color: #fff;
  border: 1px solid rgba(94, 184, 230, 0.18);
  border-radius: 8px;
  padding: 8px 15px;
  transition: border-color 0.2s ease;
}
.form-select:hover, .form-select:focus {
  background-color: rgba(14, 10, 10, 0.96);
  border-color: rgba(94, 184, 230, 0.4);
  box-shadow: 0 0 0 0.25rem rgba(94, 184, 230, 0.15);
}
.form-select option {
  background-color: #0a0d12;
  color: #fff;
}

.width--30 {
  width: 30px !important;
}
.width--40 {
  width: 40px !important;
}
.width--50 {
  width: 50px !important;
}
.width--60 {
  width: 60px !important;
}
.width--70 {
  width: 70px !important;
}
.width--80 {
  width: 80px !important;
}
.width--100 {
  width: 100px !important;
}
.width--150 {
  width: 150px !important;
}
.width--200 {
  width: 200px !important;
}
.width--250 {
  width: 250px !important;
}
.width--300 {
  width: 300px !important;
}
.width--350 {
  width: 350px !important;
}
.width--400 {
  width: 400px !important;
}
.width--500 {
  width: 500px !important;
}
.width--600 {
  width: 600px !important;
}
.width--700 {
  width: 700px !important;
}
.width--800 {
  width: 800px !important;
}
.width--900 {
  width: 900px !important;
}
.width--1000 {
  width: 1000px !important;
}
.width--1100 {
  width: 1100px !important;
}
.width--1200 {
  width: 1200px !important;
}

.min-width--150 {
  min-width: 150px !important;
}
.min-width--200 {
  min-width: 200px !important;
}
.min-width--250 {
  min-width: 250px !important;
}
.min-width--300 {
  min-width: 300px !important;
}
.min-width--350 {
  min-width: 350px !important;
}
.min-width--400 {
  min-width: 400px !important;
}
.min-width--500 {
  min-width: 500px !important;
}
.min-width--600 {
  min-width: 600px !important;
}
.min-width--700 {
  min-width: 700px !important;
}
.min-width--800 {
  min-width: 800px !important;
}
.min-width--900 {
  min-width: 900px !important;
}
.min-width--1000 {
  min-width: 1000px !important;
}
.min-width--1100 {
  min-width: 1100px !important;
}
.min-width--1200 {
  min-width: 1200px !important;
}

.max-width--150 {
  max-width: 150px !important;
}
.max-width--200 {
  max-width: 200px !important;
}
.max-width--250 {
  max-width: 250px !important;
}
.max-width--300 {
  max-width: 300px !important;
}
.max-width--350 {
  max-width: 350px !important;
}
.max-width--400 {
  max-width: 400px !important;
}
.max-width--500 {
  max-width: 500px !important;
}
.max-width--600 {
  max-width: 600px !important;
}
.max-width--700 {
  max-width: 700px !important;
}
.max-width--800 {
  max-width: 800px !important;
}
.max-width--900 {
  max-width: 900px !important;
}
.max-width--1000 {
  max-width: 1000px !important;
}
.max-width--1100 {
  max-width: 1100px !important;
}
.max-width--1200 {
  max-width: 1200px !important;
}

.mw-content {
  max-width: max-content !important;
}

.text-green-emphasis {
  color: #3dd68c !important;
}

.text-red-emphasis {
  color: #e04848 !important;
}

.text-yellow-emphasis {
  color: #5eb8e6 !important;
}

.text-gold {
  color: #5eb8e6 !important;
}

.text-gold-light {
  color: #a8dcf4 !important;
}

.bg-glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), rgba(15, 12, 12, 0.82);
  border: 1px solid rgba(94, 184, 230, 0.12);
  border-radius: 10px;
}

.img-contrast {
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.5));
}

.custom__select__wrapper {
  position: relative;
  min-width: 200px;
  color: #fff;
}
.custom__select__wrapper select {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  appearance: none;
  cursor: pointer;
}

.custom__select__trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  min-height: 44px;
  background-color: rgba(8, 12, 18, 0.9);
  border: 1px solid rgba(94, 184, 230, 0.18);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.custom__select__trigger::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%235eb8e6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
}

.custom__select__options {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background-color: rgba(12, 10, 11, 0.96);
  border: 1px solid rgba(94, 184, 230, 0.18);
  border-radius: 8px;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.custom__select__option {
  padding: 10px 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid rgba(94, 184, 230, 0.08);
}
.custom__select__option:last-child {
  border-bottom: none;
}
.custom__select__option:hover {
  background-color: rgba(94, 184, 230, 0.1);
}
.custom__select__option.is-selected {
  background-color: rgba(94, 184, 230, 0.1);
}

.custom__select__wrapper.is-open .custom__select__trigger {
  border-color: rgba(94, 184, 230, 0.35);
}
.custom__select__wrapper.is-open .custom__select__trigger::after {
  transform: rotate(180deg);
}
.custom__select__wrapper.is-open .custom__select__options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.form__check__list .form-check {
  display: flex;
  padding-left: 0;
  justify-content: space-between;
}
.form__check__list .form-check:not(:last-child) {
  margin-bottom: 7px;
}

.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input[type=radio]:checked {
  background-image: radial-gradient(#5eb8e6 40%, transparent 45%);
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=search],
textarea,
.form-control {
  min-height: 44px;
  background-color: rgba(8, 12, 18, 0.9);
  border: 1px solid rgba(94, 184, 230, 0.18);
  color: #fff;
  border-radius: 8px;
  padding: 10px 14px;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
input[type=number]::placeholder,
input[type=search]::placeholder,
textarea::placeholder,
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=search]:focus,
textarea:focus,
.form-control:focus {
  background-color: rgba(14, 10, 10, 0.96);
  border: 1px solid rgba(94, 184, 230, 0.4);
  color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(94, 184, 230, 0.15);
}

label {
  color: #e8edf2;
  font-size: 0.88rem;
  font-weight: 600;
}

.form__remember label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

.modal .modal-dialog .modal-content,
.modal.modal_login .modal-dialog .modal-content {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(94, 184, 230, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), rgba(15, 12, 12, 0.97);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  color: #fff;
}
.modal .modal-dialog .modal-content .modal-body,
.modal.modal_login .modal-dialog .modal-content .modal-body {
  padding: 20px 25px;
}
.modal .modal-dialog .modal-content .modal-body .form-check,
.modal.modal_login .modal-dialog .modal-content .modal-body .form-check {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal .modal-dialog .modal-content .modal-body .form-check a,
.modal.modal_login .modal-dialog .modal-content .modal-body .form-check a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}
.modal .modal-dialog .modal-content .modal-body .btn__enter,
.modal.modal_login .modal-dialog .modal-content .modal-body .btn__enter {
  padding: 12px !important;
  font-size: 0.95rem;
  font-weight: 800;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.modal .modal-dialog .modal-content .modal-body .form__text,
.modal.modal_login .modal-dialog .modal-content .modal-body .form__text {
  margin-top: 15px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}
.modal .modal-dialog .modal-content .modal-body .form__text a,
.modal.modal_login .modal-dialog .modal-content .modal-body .form__text a {
  color: #5eb8e6;
  text-underline-offset: 3px;
  text-decoration: underline;
}
.modal .modal-dialog .modal-content .modal-body .social__network__content,
.modal.modal_login .modal-dialog .modal-content .modal-body .social__network__content {
  display: flex;
  flex-direction: column;
  row-gap: 0.7rem;
}
.modal .modal-dialog .modal-content .modal-body .social__network__content a.social__btn,
.modal.modal_login .modal-dialog .modal-content .modal-body .social__network__content a.social__btn {
  display: flex;
  align-items: center;
  width: 100%;
  background-color: rgba(14, 18, 26, 0.9);
  border-radius: 8px;
  border: 1px solid rgba(94, 184, 230, 0.1);
  transition: border-color 0.2s ease;
}
.modal .modal-dialog .modal-content .modal-body .social__network__content a.social__btn:hover,
.modal.modal_login .modal-dialog .modal-content .modal-body .social__network__content a.social__btn:hover {
  border-color: rgba(94, 184, 230, 0.25);
}
.modal .modal-dialog .modal-content .modal-body .social__network__content a.social__btn .social__btn__content,
.modal.modal_login .modal-dialog .modal-content .modal-body .social__network__content a.social__btn .social__btn__content {
  height: 100%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  text-indent: 1rem;
}
.modal .modal-dialog .modal-content .modal-body .social__network__content a.social__btn .social__label,
.modal.modal_login .modal-dialog .modal-content .modal-body .social__network__content a.social__btn .social__label {
  width: 60px;
  height: 49px;
  padding: 5px;
  background-color: rgba(8, 12, 18, 0.9);
  color: white;
  font-size: 1.5rem;
  text-align: center;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.modal .modal-header,
.modal.modal_login .modal-header {
  background: linear-gradient(90deg, rgba(94, 184, 230, 0.2), rgba(94, 184, 230, 0.05));
  text-align: center;
  color: white;
  border: none;
  border-bottom: 1px solid rgba(94, 184, 230, 0.12);
}
.modal .modal-header h5,
.modal.modal_login .modal-header h5 {
  width: 100%;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.modal .modal-content,
.modal.modal_login .modal-content {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), rgba(15, 12, 12, 0.97);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

::selection {
  background: rgba(94, 184, 230, 0.3);
  color: #fff;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #0a0d12;
}

::-webkit-scrollbar-thumb {
  background: rgba(94, 184, 230, 0.2);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #5eb8e6;
}

body {
  min-height: 100vh;
  background: radial-gradient(ellipse at 50% 0%, rgba(30, 80, 120, 0.2), transparent 50rem), radial-gradient(ellipse at 20% 20%, rgba(20, 60, 100, 0.1), transparent 40rem), radial-gradient(ellipse at 80% 15%, rgba(40, 90, 140, 0.08), transparent 35rem), linear-gradient(180deg, rgba(8, 11, 16, 0.1), #0a0d12 70rem), url("../images/main_background.png") no-repeat center top/1920px auto, #0a0d12;
  color: #e8edf2;
  overflow-x: hidden;
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(90deg, rgba(8, 11, 16, 0.88), rgba(8, 11, 16, 0.15), rgba(8, 11, 16, 0.88)), linear-gradient(180deg, rgba(8, 11, 16, 0), #0a0d12 90%);
}

.app {
  position: relative;
  overflow: hidden;
}

a,
a.nav-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: color 0.2s ease;
}
a:hover,
a.nav-link:hover {
  color: #a8dcf4;
  text-decoration: none;
}

.img-contrast {
  filter: drop-shadow(0 10px 25px rgba(94, 184, 230, 0.15));
}

.sparkles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

table,
.table {
  min-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(94, 184, 230, 0.12);
  border-collapse: separate;
  border-spacing: 0;
  color: rgba(255, 255, 255, 0.78);
}
table thead tr,
.table thead tr {
  background: rgba(8, 7, 8, 0.95);
}
table thead th,
.table thead th {
  font-weight: 700;
  padding: 10px 12px;
  color: #a8dcf4;
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(94, 184, 230, 0.12);
}
table tr,
.table tr {
  border-color: rgba(94, 184, 230, 0.08);
  transition: 0.3s ease-in-out;
}
table tr:not(thead tr):hover,
.table tr:not(thead tr):hover {
  background: rgba(94, 184, 230, 0.1);
}
table tr td,
table tr th,
.table tr td,
.table tr th {
  border: 1px solid rgba(94, 184, 230, 0.08);
  padding: 8px 12px;
  font-size: 0.85rem;
  vertical-align: middle;
}
table.ranking__table tr:first-of-type td:first-child,
.table.ranking__table tr:first-of-type td:first-child {
  color: rgb(255, 215, 0);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
  font-weight: 800;
}
table.ranking__table tr:nth-of-type(2) td:first-child,
.table.ranking__table tr:nth-of-type(2) td:first-child {
  color: rgb(192, 192, 192);
  text-shadow: 0 0 6px rgba(192, 192, 192, 0.4);
  font-weight: 700;
}
table.ranking__table tr:nth-of-type(3) td:first-child,
.table.ranking__table tr:nth-of-type(3) td:first-child {
  color: rgb(205, 127, 50);
  text-shadow: 0 0 6px rgba(205, 127, 50, 0.4);
  font-weight: 700;
}

.badge__text,
.badge {
  color: #e8edf2;
  background: rgba(94, 184, 230, 0.1);
  border: 1px solid rgba(94, 184, 230, 0.13);
  border-radius: 999px;
  padding: 3px 14px;
  min-width: 80px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
}

.list-group,
.list-group-flush {
  background: transparent;
}

.list-group-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(94, 184, 230, 0.08);
  color: rgba(255, 255, 255, 0.78);
  padding: 0.65rem 0;
  font-size: 0.86rem;
}
.list-group-item p {
  margin: 0;
}

.card {
  border-radius: 10px;
  border: 1px solid rgba(94, 184, 230, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), rgba(15, 12, 12, 0.82);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  color: #e8edf2;
  overflow: hidden;
}
.card .card-header {
  background: linear-gradient(90deg, rgba(94, 184, 230, 0.16), rgba(94, 184, 230, 0.04));
  border-bottom: 1px solid rgba(94, 184, 230, 0.12);
  color: #a8dcf4;
}
.card .card-header h1, .card .card-header h2, .card .card-header h3, .card .card-header h4, .card .card-header h5, .card .card-header h6 {
  margin: 0;
  color: inherit;
  font-weight: 800;
  text-transform: uppercase;
}
.card .card-body,
.card .card-footer {
  background: transparent;
  border-color: rgba(94, 184, 230, 0.1);
}

.alert {
  border-radius: 8px;
  border-color: rgba(94, 184, 230, 0.18) !important;
  background: rgba(94, 184, 230, 0.07) !important;
  color: rgba(255, 255, 255, 0.82);
}

.accordion-item {
  background: rgba(15, 12, 12, 0.86);
  border: 1px solid rgba(94, 184, 230, 0.14);
  color: rgba(255, 255, 255, 0.78);
}

.accordion-button {
  background: rgba(94, 184, 230, 0.12);
  color: #fff;
}
.accordion-button:not(.collapsed), .accordion-button:focus {
  color: #a8dcf4;
  background: rgba(94, 184, 230, 0.2);
  box-shadow: none;
}

.nav-tabs,
.nav-custom {
  border-bottom-color: rgba(94, 184, 230, 0.15);
  gap: 0.5rem;
}
.nav-tabs .nav-link,
.nav-custom .nav-link {
  border: 1px solid rgba(94, 184, 230, 0.14);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.03);
}
.nav-tabs .nav-link.active, .nav-tabs .nav-link:hover,
.nav-custom .nav-link.active,
.nav-custom .nav-link:hover {
  color: #fff;
  background: rgba(94, 184, 230, 0.18);
  border-color: rgba(94, 184, 230, 0.3);
}

.pagination {
  gap: 0.35rem;
}
.pagination .page-link {
  border-radius: 8px;
  border-color: rgba(94, 184, 230, 0.14);
  background: rgba(15, 12, 12, 0.86);
  color: rgba(255, 255, 255, 0.72);
}
.pagination .active .page-link,
.pagination .page-link:hover {
  background: rgba(94, 184, 230, 0.25);
  border-color: rgba(94, 184, 230, 0.3);
  color: #fff;
}

.breadcrumb {
  margin: 0;
  align-items: center;
}
.breadcrumb .breadcrumb-item {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
}
.breadcrumb .breadcrumb-item a {
  color: #a8dcf4;
}
.breadcrumb .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.72);
}

.reveal-on-scroll {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-range::-webkit-slider-thumb {
  background: #5eb8e6;
  box-shadow: 0 0 0 4px rgba(94, 184, 230, 0.16);
}

.form-range::-moz-range-thumb {
  background: #5eb8e6;
  box-shadow: 0 0 0 4px rgba(94, 184, 230, 0.16);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  height: 56px;
  background: linear-gradient(180deg, rgba(12, 16, 22, 0.98), rgba(8, 11, 16, 0.97)) !important;
  border-bottom: 1px solid rgba(94, 184, 230, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
}
.navbar > .container {
  height: 100%;
  display: flex;
  align-items: center;
}
.navbar > .container .navbar-brand {
  flex: 0 0 auto;
  padding: 0;
  margin-right: 1rem;
}
.navbar > .container .navbar-brand img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 4px 10px rgba(94, 184, 230, 0.2));
}
.navbar > .container .navbar-nav {
  gap: 0.15rem;
}
.navbar > .container .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.7rem;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: 0.3s ease-in-out;
  white-space: nowrap;
}
.navbar > .container .navbar-nav .nav-link.active {
  color: #fff;
  background: rgba(94, 184, 230, 0.15);
  border-color: rgba(94, 184, 230, 0.3);
}
.navbar > .container .navbar-nav .nav-link:hover, .navbar > .container .navbar-nav .nav-link:focus {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(94, 184, 230, 0.1);
  text-decoration: none;
}
.navbar > .container .dropdown[data-dropdown] {
  position: relative;
  z-index: 2;
}
.navbar > .container .dropdown[data-dropdown] .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.navbar > .container .dropdown[data-dropdown] .dropdown-toggle::after {
  content: "";
  border: none;
  width: 8px;
  height: 5px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%235eb8e6' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.2s ease;
}
.navbar > .container .dropdown[data-dropdown] .dropdown-toggle.arrow-rotated::after {
  transform: rotate(180deg);
}
.navbar > .container .dropdown[data-dropdown] .dropdown-menu {
  display: block;
  position: absolute;
  z-index: 999;
  min-width: 220px;
  background: rgba(10, 14, 20, 0.98);
  border: 1px solid rgba(94, 184, 230, 0.12);
  border-radius: 8px;
  padding: 8px;
  margin-top: 12px !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-origin: top center;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  left: 50%;
  top: 100%;
  transform: translateX(-50%) translateY(-5px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.5);
}
.navbar > .container .dropdown[data-dropdown] .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid rgba(10, 14, 20, 0.98);
}
.navbar > .container .dropdown[data-dropdown] .dropdown-menu.menu-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.navbar > .container .dropdown[data-dropdown] .dropdown-menu .dropdown-item {
  color: rgba(255, 255, 255, 0.72);
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 0.15s ease;
}
.navbar > .container .dropdown[data-dropdown] .dropdown-menu .dropdown-item:hover, .navbar > .container .dropdown[data-dropdown] .dropdown-menu .dropdown-item:focus {
  background: rgba(94, 184, 230, 0.1);
  color: #fff;
  text-decoration: none;
}
.navbar > .container .dropdown[data-dropdown] .dropdown-menu .dropdown_menu_profile {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(94, 184, 230, 0.08);
  padding: 12px;
}
.navbar > .container .dropdown[data-dropdown] .dropdown-menu .dropdown_menu_profile .user-avatar-profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(94, 184, 230, 0.25);
}
.navbar > .container .dropdown[data-dropdown] .dropdown-menu .dropdown_details_profile {
  margin-left: 10px;
}
.navbar > .container .dropdown[data-dropdown] .dropdown-menu .dropdown_details_profile .dropdown_profile_name {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar > .container .dropdown[data-dropdown] .dropdown-menu .dropdown_details_profile .dropdown_profile_name p {
  font-size: 0.85rem;
  font-weight: 600;
  max-width: 90px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.navbar > .container .dropdown[data-dropdown] .dropdown-menu .dropdown_details_profile .dropdown_profile_email {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
}
.navbar > .container .dropdown[data-dropdown] .dropdown-menu .dropdown_menu_profile_content {
  padding: 12px;
}
.navbar > .container .dropdown[data-dropdown] .dropdown-menu .dropdown_menu_profile_content ul.dropdown_list_service {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.navbar > .container .dropdown[data-dropdown] .dropdown-menu .dropdown_menu_profile_content ul.dropdown_list_service li {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
}
.navbar > .container .dropdown[data-dropdown] .dropdown-menu .dropdown_menu_profile_content ul.dropdown_list_service li a {
  color: inherit;
}
.navbar > .container .dropdown[data-dropdown] .dropdown-menu .dropdown_menu_profile_content ul.dropdown_list_service li a:hover {
  color: #fff;
}
.navbar > .container .dropdown[data-dropdown] .dropdown-menu .dropdown_menu_profile_content ul.dropdown_list_service .logout-link, .navbar > .container .dropdown[data-dropdown] .dropdown-menu .dropdown_menu_profile_content ul.dropdown_list_service .logout-link a {
  color: rgb(198, 60, 60);
}
.navbar > .container .navbar-toggler {
  width: 26px;
  height: auto;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.navbar > .container .navbar-toggler:focus {
  box-shadow: none;
}
.navbar > .container .navbar-toggler span {
  background-color: #5eb8e6;
  display: block;
  height: 3px;
  width: 100%;
  margin-bottom: 4px;
  border-radius: 2px;
}
.navbar > .container .navbar-toggler span:last-child {
  margin-bottom: 0;
}
.navbar > .container .offcanvas {
  width: min(86vw, 340px);
  background: rgba(10, 14, 20, 0.98);
  border-right: 1px solid rgba(94, 184, 230, 0.1);
}
@media screen and (max-width: 576px) {
  .navbar > .container .offcanvas {
    width: 100%;
    border-right: 0;
  }
}
.navbar > .container .offcanvas .offcanvas-header {
  padding: 0.9rem 1rem;
  color: #fff;
  border-bottom: 1px solid rgba(94, 184, 230, 0.1);
}
.navbar > .container .offcanvas .offcanvas-header .offcanvas-title {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 800;
}
.navbar > .container .offcanvas .offcanvas-body {
  color: #fff;
}
.navbar > .container .offcanvas .offcanvas-body .navbar-nav .nav-link {
  padding: 0.75rem 0.8rem;
  font-size: 0.85rem;
}
.navbar > .container .offcanvas .offcanvas-body .navbar-nav .dropdown-menu {
  border: 0;
  background: rgba(0, 0, 0, 0.3);
  margin: 0.15rem 0 0.3rem;
  padding: 0.2rem 0 0.2rem 0.6rem;
}
.navbar > .container .offcanvas .offcanvas-body .user__area__mobile {
  margin: 0 0 1rem;
  padding: 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(94, 184, 230, 0.1);
  border-radius: 10px;
}
.navbar > .container .offcanvas .offcanvas-body .user__area__mobile .user__area__logout {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}
.navbar > .container .offcanvas .offcanvas-body .user__area__mobile .user__area__logout > span {
  display: none;
}
.navbar > .container .offcanvas .offcanvas-body .user__area__mobile .user__area__logout > a[data-bs-toggle=modal] {
  display: block;
  width: 100%;
  padding: 0.65rem;
  text-align: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  border: 1px solid rgba(94, 184, 230, 0.2);
  border-radius: 6px;
  background: rgba(94, 184, 230, 0.05);
}
.navbar > .container .offcanvas .offcanvas-body .user__area__mobile .user__area__logout > a[data-bs-toggle=modal]:hover {
  background: rgba(94, 184, 230, 0.12);
}
.navbar > .container .offcanvas .offcanvas-body .user__area__mobile .user__area__logout > a.btn {
  width: 100%;
}
.navbar > .container .offcanvas .offcanvas-body .user__area__mobile .user__area__logout .nav-toolbar {
  padding: 0;
  background: transparent;
  border: 0;
}
.navbar > .container .offcanvas .offcanvas-body .user__area__mobile .user__area__logout .nav-toolbar .container {
  padding: 0;
}
.navbar > .container .offcanvas .offcanvas-body .user__area__desktop {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.navbar > .container .offcanvas .offcanvas-body .user__area__desktop .user__area__logout {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.navbar > .container .offcanvas .offcanvas-body .user__area__desktop .user__area__logout a {
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.navbar > .container .offcanvas .offcanvas-body .user__area__desktop .user__area__logout span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}
.navbar > .container .offcanvas .offcanvas-body .user__area__desktop .user__area__logout .nav-toolbar {
  padding: 0;
  background: transparent;
  border: 0;
}
.navbar > .container .offcanvas .offcanvas-body .user__area__desktop .user__area__logout .nav-toolbar .container {
  padding: 0;
}
.navbar > .container .offcanvas .offcanvas-body .user__area__desktop .user__area__logout .nav-toolbar .navbar-language button {
  font-size: 0.72rem !important;
  padding: 0.3rem 0.5rem;
}
.navbar > .container .offcanvas .offcanvas-body .user__area__desktop .dropdown[data-dropdown=profile] a {
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.navbar > .container .offcanvas .offcanvas-body .user__area__desktop .dropdown[data-dropdown=profile] img.user-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(94, 184, 230, 0.2);
}
.navbar > .container .offcanvas .offcanvas-body .user__area__desktop .dropdown[data-dropdown=profile] span {
  max-width: 90px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

body:has(.offcanvas.show) .navbar-toggler {
  visibility: hidden;
}

.nav-toolbar {
  padding: 0.35rem 0;
  background: rgba(8, 11, 16, 0.95);
  border-bottom: 1px solid rgba(94, 184, 230, 0.06);
}

.user__area__logout {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.user__area__logout span {
  color: rgba(255, 255, 255, 0.4);
}

.navbar-auth {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 0 0 auto;
}
.navbar-auth .navbar-lang {
  position: relative;
}
.navbar-auth .navbar-lang__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: all 0.2s ease;
}
.navbar-auth .navbar-lang__btn img {
  width: 18px;
  height: auto;
  border-radius: 2px;
}
.navbar-auth .navbar-lang__btn::after {
  display: none;
}
.navbar-auth .navbar-lang__btn:hover {
  border-color: rgba(94, 184, 230, 0.2);
  background: rgba(94, 184, 230, 0.06);
}
.navbar-auth .navbar-lang .dropdown-menu {
  min-width: 160px;
  padding: 6px;
}
.navbar-auth .navbar-lang .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 6px 10px;
  font-size: 0.78rem;
  border-radius: 5px;
}
.navbar-auth .navbar-lang .dropdown-menu .dropdown-item img {
  width: 18px;
  border-radius: 2px;
}
.navbar-auth__login {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.navbar-auth__login i {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
}
.navbar-auth__login:hover {
  color: #fff;
  border-color: rgba(94, 184, 230, 0.25);
  background: rgba(255, 255, 255, 0.03);
}
.navbar-auth__login:hover i {
  color: #5eb8e6;
}
.navbar-auth__register {
  padding: 0.4rem 1rem !important;
  font-size: 0.76rem !important;
  min-height: 34px !important;
  white-space: nowrap;
}

.user__area__desktop {
  display: flex;
  align-items: center;
}
.user__area__desktop .dropdown[data-dropdown=profile] a.nav-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}
.user__area__desktop .dropdown[data-dropdown=profile] a.nav-link:hover {
  border-color: rgba(94, 184, 230, 0.15);
  background: rgba(255, 255, 255, 0.02);
}
.user__area__desktop .dropdown[data-dropdown=profile] img.user-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(94, 184, 230, 0.2);
}
.user__area__desktop .dropdown[data-dropdown=profile] span {
  max-width: 85px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.85);
}

.site-hero {
  position: relative;
  padding: 60px 0 40px;
  text-align: center;
  isolation: isolate;
  overflow: hidden;
}
.site-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 10%, rgba(94, 184, 230, 0.12), transparent 45%), radial-gradient(ellipse at 30% 30%, rgba(30, 80, 140, 0.08), transparent 35%);
}
.site-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(180deg, transparent, #0a0d12);
  z-index: -1;
}
.site-hero .hero__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.site-hero .hero__brand-logo img {
  max-width: 380px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 40px rgba(94, 184, 230, 0.25));
  animation: heroFloat 3.5s ease-in-out infinite, heroGlow 2.5s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes heroGlow {
  0%, 100% {
    filter: drop-shadow(0 15px 40px rgba(94, 184, 230, 0.2)) drop-shadow(0 0 20px rgba(94, 184, 230, 0.1));
  }
  50% {
    filter: drop-shadow(0 15px 40px rgba(94, 184, 230, 0.4)) drop-shadow(0 0 40px rgba(94, 184, 230, 0.25));
  }
}
.site-hero .hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 0.5rem;
}
.site-hero .hero__actions .btn {
  min-width: 160px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}
.site-hero .hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 1rem;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(94, 184, 230, 0.1);
  border-bottom: 1px solid rgba(94, 184, 230, 0.1);
  width: 100%;
  max-width: 700px;
}
.site-hero .hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.5rem;
}
.site-hero .hero__stat-value {
  color: #a8dcf4;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.2;
}
.site-hero .hero__stat-label {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.site-hero .hero__stat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3dd68c;
  box-shadow: 0 0 10px rgba(61, 214, 140, 0.7);
  margin-bottom: 2px;
}
.site-hero .hero__stat--online {
  flex-direction: row;
  gap: 0.5rem;
}
.site-hero .hero__stat-divider {
  width: 1px;
  height: 35px;
  background: rgba(94, 184, 230, 0.15);
}

.countdowns__mobile {
  display: none !important;
}

.page {
  width: calc(100% - 2rem);
  max-width: 1320px;
  margin: 0 auto;
  min-height: calc(100vh - 80px);
  margin-bottom: 30px;
  overflow: hidden;
  padding-bottom: 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(94, 184, 230, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), rgba(15, 12, 12, 0.84);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}
.page > .container, .page > .container-fluid {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.page-header {
  min-height: 100px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(90deg, rgba(94, 184, 230, 0.28), rgba(94, 184, 230, 0.06)), rgba(9, 7, 8, 0.94);
  border-bottom: 1px solid rgba(94, 184, 230, 0.18);
}
.page-header > .container {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0;
  justify-content: space-between;
  gap: 1rem;
}
.page-header h1.page-title,
.page-header h1,
.page-header h2,
.page-header h3,
.page-header .page-title {
  margin: 0;
  color: #e8edf2;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.page-content {
  padding: 20px;
  font-size: 0.9rem;
}

.page-container {
  width: calc(100% - 2rem);
  max-width: 1320px;
  min-height: calc(100vh - 80px);
  margin: 0 auto 30px;
  padding: 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(94, 184, 230, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), rgba(15, 12, 12, 0.84);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.page-container .title,
.page-container .page-title h1 {
  color: #e8edf2;
  font-weight: 900;
  text-transform: uppercase;
}

.page-header__lead {
  max-width: 520px;
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  line-height: 1.5;
}

.home-landing {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.home-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 1.25rem;
  align-items: start;
}

.home-main {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.home-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 72px;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  margin-bottom: 0.8rem;
  background: linear-gradient(90deg, rgba(94, 184, 230, 0.08), transparent);
  border-left: 3px solid #5eb8e6;
  border-radius: 0 6px 6px 0;
}
.section-header i {
  color: #5eb8e6;
  font-size: 1rem;
}
.section-header h3 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
}

.home-banners {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(94, 184, 230, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.home-banners .principal__slide {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-news .news-list .post__container .post__heading {
  display: none;
}

.home-market .market__offers .market__card {
  min-height: auto;
  padding: 12px;
}

.home-castle .castle__siege {
  height: 250px;
}

.sidebar-widget {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), rgba(15, 12, 12, 0.85);
  border: 1px solid rgba(94, 184, 230, 0.12);
  border-radius: 10px;
  overflow: hidden;
}
.sidebar-widget .widget-header {
  padding: 0.7rem 1rem;
  background: linear-gradient(90deg, rgba(94, 184, 230, 0.08), rgba(77, 212, 230, 0.02));
  border-bottom: 1px solid rgba(94, 184, 230, 0.08);
}
.sidebar-widget .widget-header h4 {
  margin: 0;
  color: #a8dcf4;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sidebar-widget .widget-header h4 i {
  font-size: 0.9rem;
  color: #5eb8e6;
}
.sidebar-widget .widget-body {
  padding: 0.85rem;
}
.sidebar-widget .widget-countdown {
  padding: 0;
}
.sidebar-widget .widget-countdown .countdowns {
  position: relative;
  right: auto;
  bottom: auto;
  max-width: 100%;
  height: auto;
  min-height: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.sidebar-widget .widget-countdown .countdowns .countdown-title {
  height: 40px;
  font-size: 0.78rem;
}
.sidebar-widget .widget-countdown .countdowns .countdown-timer {
  padding: 0.8rem 0;
}
.sidebar-widget .widget-countdown .countdowns .countdown-timer div span {
  min-width: 48px;
  height: 48px;
  font-size: 1rem;
}

.server-rooms {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.server-room__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.3rem;
}
.server-room__name {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 600;
}
.server-room__status {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: lowercase;
}
.server-room__status--on {
  color: #3dd68c;
}
.server-room__status--off {
  color: rgba(255, 255, 255, 0.3);
}
.server-room__bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}
.server-room__fill {
  height: 100%;
  background: linear-gradient(90deg, #3dd68c, rgb(40.4322069253%, 87.4109303296%, 64.6891948269%));
  border-radius: 3px;
  transition: width 0.5s ease;
  min-width: 4px;
}
.server-room__players {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
}

.server-rooms__total {
  margin-top: 0.7rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(94, 184, 230, 0.06);
  text-align: center;
}
.server-rooms__total a {
  color: #5eb8e6;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
}
.server-rooms__total a:hover {
  color: #a8dcf4;
}

.server-status-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.server-status-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(94, 184, 230, 0.06);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}
.server-status-list li:last-child {
  border-bottom: 0;
}
.server-status-list li .status-value {
  color: #a8dcf4;
  font-weight: 700;
  font-size: 0.78rem;
  background: rgba(94, 184, 230, 0.1);
  border: 1px solid rgba(94, 184, 230, 0.12);
  padding: 2px 10px;
  border-radius: 4px;
}

.team-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.team-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(94, 184, 230, 0.05);
  font-size: 0.8rem;
}
.team-list li:last-child {
  border-bottom: 0;
}
.team-list .team-name {
  color: rgba(255, 255, 255, 0.75);
}
.team-list .team-status {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
}
.team-list .team-status--online {
  color: #3dd68c;
  background: rgba(38, 184, 122, 0.12);
  border: 1px solid rgba(38, 184, 122, 0.2);
}
.team-list .team-status--offline {
  color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-why {
  margin-top: 3rem;
  text-align: center;
}
.home-why__title {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 2rem;
}
.home-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-card {
  padding: 1.5rem 1.2rem;
  border-radius: 10px;
  border: 1px solid rgba(94, 184, 230, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), rgba(15, 12, 12, 0.8);
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 184, 230, 0.3);
}
.why-card--featured {
  border-color: rgba(94, 184, 230, 0.25);
  background: linear-gradient(135deg, rgba(94, 184, 230, 0.08), transparent), linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), rgba(12, 16, 22, 0.85);
}
.why-card__img {
  width: 100%;
  height: 140px;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
}
.why-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.why-card h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.why-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
  line-height: 1.5;
}

.home__heading {
  width: 100%;
  min-height: 70px;
  background: linear-gradient(90deg, rgba(94, 184, 230, 0.15), transparent);
  border-left: 3px solid #5eb8e6;
  border-radius: 0 10px 10px 0;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  margin-bottom: 1rem;
}
.home__heading span {
  color: #5eb8e6;
  font-weight: normal;
  font-size: 0.78rem;
}
.home__heading h2 {
  font-weight: 800;
  font-size: 1.2rem;
  margin-left: 0.5rem;
}

.column__box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), rgba(15, 12, 12, 0.82);
  border: 1px solid rgba(94, 184, 230, 0.12);
  border-radius: 10px;
  overflow: hidden;
}
.column__box .heading__column__box {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  background: linear-gradient(90deg, rgba(94, 184, 230, 0.18), rgba(94, 184, 230, 0.03));
  border-bottom: 1px solid rgba(94, 184, 230, 0.1);
}
.column__box .heading__column__box h4 {
  margin: 0;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.8rem;
  color: #a8dcf4;
}
.column__box .content__column__box {
  padding: 0.85rem;
}

.aside:not(.home-sidebar) {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.aside:not(.home-sidebar) > * {
  flex: 0 0 auto;
}

.hallfame {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), rgba(12, 16, 22, 0.88);
  border: 1px solid rgba(94, 184, 230, 0.12);
  border-radius: 10px;
  overflow: hidden;
}
.hallfame__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid rgba(94, 184, 230, 0.08);
}
.hallfame__header i {
  color: #5eb8e6;
  font-size: 1.1rem;
}
.hallfame__header h3 {
  margin: 0;
  color: #a8dcf4;
  font-size: 0.9rem;
  font-weight: 800;
}
.hallfame__tabs {
  display: flex;
  border-bottom: 1px solid rgba(94, 184, 230, 0.08);
  overflow-x: auto;
}
.hallfame__tab {
  flex: 1;
  min-width: 0;
  padding: 0.7rem 0.5rem;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}
.hallfame__tab:hover {
  color: rgba(255, 255, 255, 0.65);
  background: rgba(94, 184, 230, 0.03);
}
.hallfame__tab--active {
  color: #5eb8e6;
  border-bottom-color: #5eb8e6;
}
.hallfame__panel {
  display: none;
  padding: 1rem 1.2rem;
}
.hallfame__panel--active {
  display: block;
}
.hallfame__period-label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 0.8rem;
}
.hallfame__cards {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hallfame__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  width: 95px;
  padding: 0.75rem 0.5rem 0.6rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.hallfame__card:hover {
  border-color: rgba(94, 184, 230, 0.2);
  background: rgba(94, 184, 230, 0.03);
}
.hallfame__card--top1 {
  border-color: rgba(255, 215, 0, 0.25);
  background: rgba(255, 215, 0, 0.03);
}
.hallfame__card--top2 {
  border-color: rgba(192, 192, 192, 0.18);
  background: rgba(192, 192, 192, 0.02);
}
.hallfame__card--top3 {
  border-color: rgba(205, 127, 50, 0.18);
  background: rgba(205, 127, 50, 0.02);
}
.hallfame__rank {
  position: absolute;
  top: 5px;
  left: 7px;
  font-size: 0.62rem;
  font-weight: 800;
  color: #5eb8e6;
  line-height: 1;
}
.hallfame__avatar {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hallfame__avatar img {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hallfame__avatar svg {
  width: 38px;
  height: 38px;
}
.hallfame__name {
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  max-width: 85px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hallfame__name a {
  color: inherit;
}
.hallfame__name a:hover {
  color: #a8dcf4;
}
.hallfame__score {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 600;
}
.hallfame__empty {
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.78rem;
  padding: 1.5rem;
}

.hall__fame {
  display: none;
}

.hall__fame__heading {
  display: none;
}

.market__offers {
  position: relative;
}
.market__offers .market__offers__heading {
  background: linear-gradient(90deg, rgba(94, 184, 230, 0.28), rgba(94, 184, 230, 0.06)), url(../images/bg_title_section_market.png) no-repeat center/cover;
  border-radius: 10px;
}

.market__card {
  min-height: 100%;
  position: relative;
  padding: 17px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(94, 184, 230, 0.12);
  background: radial-gradient(circle at 50% 0%, rgba(94, 184, 230, 0.1), transparent 38%), linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), rgba(12, 16, 22, 0.9);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.market__card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 2px solid rgba(94, 184, 230, 0.2);
  opacity: 0.8;
}
.market__card:hover {
  transform: translateY(-5px);
  border-color: rgba(94, 184, 230, 0.34);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48), 0 0 35px rgba(94, 184, 230, 0.1);
}
.market__card .market__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.market__card .market__header .market__author {
  line-height: 18px;
}
.market__card .market__header .market__author span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
}
.market__card .market__header .market__author p {
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
}
.market__card .market__header .market__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(94, 184, 230, 0.3);
  object-fit: cover;
  box-shadow: 0 0 0 3px rgba(94, 184, 230, 0.18);
}
.market__card .market__body {
  display: flex;
  justify-content: center;
  margin: 25px 0;
  min-height: 100px;
  position: relative;
  z-index: 1;
}
.market__card .market__body img {
  filter: drop-shadow(0 15px 18px rgba(0, 0, 0, 0.6));
  transition: transform 0.22s ease, filter 0.22s ease;
}
.market__card:hover .market__body img {
  transform: translateY(-4px) scale(1.04);
  filter: drop-shadow(0 20px 22px rgba(0, 0, 0, 0.7));
}
.market__card .market__footer {
  text-align: center;
  position: relative;
  z-index: 1;
}
.market__card .market__footer p {
  font-size: 0.85rem;
  font-weight: 800;
  min-height: 20px;
}
.market__card .market__footer .market__price {
  margin-top: 12px;
  font-size: 0.82rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(94, 184, 230, 0.12);
  border: 1px solid rgba(94, 184, 230, 0.18);
  color: #a8dcf4;
}
.market__card .market__footer .market__price::before {
  content: url(../images/cash-icon.svg);
}
.market__card.is-high-level {
  background: radial-gradient(circle at 50% 0%, rgba(255, 204, 0, 0.18), transparent 42%), rgba(12, 16, 22, 0.9);
}
.market__card.is-high-level .market__footer p {
  color: rgb(255, 204, 0);
}
.market__card.is-excellent {
  background: radial-gradient(circle at 50% 0%, rgba(3, 179, 82, 0.16), transparent 42%), rgba(12, 16, 22, 0.9);
}
.market__card.is-excellent .market__footer p {
  color: rgb(3, 179, 82);
}
.market__card.is-excellent-socket {
  background: radial-gradient(circle at 50% 0%, rgba(174, 128, 175, 0.18), transparent 42%), rgba(12, 16, 22, 0.9);
}
.market__card.is-excellent-socket .market__footer p {
  color: rgb(174, 128, 175);
}

.warehouse {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(94, 184, 230, 0.12);
  background: radial-gradient(circle at 50% 0%, rgba(94, 184, 230, 0.08), transparent 45%), linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), rgba(12, 16, 22, 0.9);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.warehouse .items {
  position: relative;
  flex: 0 0 auto;
  max-width: 100%;
  background-color: rgba(6, 9, 14, 0.85);
  background-image: linear-gradient(rgba(94, 184, 230, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(94, 184, 230, 0.12) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0;
  border: 1px solid rgba(94, 184, 230, 0.22);
  border-radius: 6px;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.55);
}
.warehouse .item {
  position: absolute;
  margin: 0;
  padding: 2px;
  box-sizing: border-box;
  border: 1px solid rgba(94, 184, 230, 0.12);
  border-radius: 4px;
  background: rgba(94, 184, 230, 0.04);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  overflow: hidden;
}
.warehouse .item a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
.warehouse .item .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.warehouse .item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.6));
}
.warehouse .item:hover {
  background: rgba(94, 184, 230, 0.14);
  border-color: rgba(94, 184, 230, 0.45);
  box-shadow: 0 0 14px rgba(94, 184, 230, 0.28);
  z-index: 5;
}
.warehouse .item.active, .warehouse .item.selected, .warehouse .item.is-active {
  background: rgba(94, 184, 230, 0.2);
  border-color: #5eb8e6;
  box-shadow: 0 0 16px rgba(94, 184, 230, 0.5);
  z-index: 6;
}
.warehouse .chunks {
  display: none;
}

.news-feed {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 550px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(94, 184, 230, 0.06);
  border-radius: 8px;
  text-decoration: none;
  color: #e8edf2;
  transition: background 0.15s ease, border-color 0.15s ease;
  position: relative;
}
.news-item:hover {
  background: rgba(94, 184, 230, 0.04);
  border-color: rgba(94, 184, 230, 0.14);
  color: #e8edf2;
  text-decoration: none;
}
.news-item__avatar {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(94, 184, 230, 0.08);
  border: 1px solid rgba(94, 184, 230, 0.15);
  color: #5eb8e6;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}
.news-item__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.news-item__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.news-item__badge {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 3px;
  background: rgba(94, 184, 230, 0.15);
  color: #a8dcf4;
  border: 1px solid rgba(94, 184, 230, 0.2);
}
.news-item__date {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
}
.news-item__date i {
  font-size: 0.62rem;
  margin-right: 2px;
}
.news-item__title {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.news-item:hover .news-item__title {
  color: #fff;
}
.news-item__arrow {
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
  transition: color 0.15s ease, transform 0.15s ease;
}
.news-item:hover .news-item__arrow {
  color: #5eb8e6;
  transform: translateX(2px);
}

@media screen and (max-width: 576px) {
  .news-item {
    padding: 0.75rem 0.8rem;
    gap: 0.7rem;
  }
  .news-item__avatar {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    font-size: 0.62rem;
  }
  .news-item__title {
    font-size: 0.78rem;
  }
}
.post__container .post__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(94, 184, 230, 0.08);
  margin-bottom: 0.8rem;
}
.post__container .post__heading h4 {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.82rem;
  color: #a8dcf4;
}
.post__container .post__scrolling {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 400px;
  overflow-y: auto;
}
.post__container .post__item {
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(94, 184, 230, 0.06);
  border-radius: 8px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.post__container .post__item:hover {
  background: rgba(94, 184, 230, 0.04);
  border-color: rgba(94, 184, 230, 0.12);
}
.post__container .post__item .post__content .post__title {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.post__container .post__item .post__content .post__title:hover {
  color: #a8dcf4;
}
.post__container .post__item .post__content .post__date {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 2px;
}

.principal__slide {
  height: 320px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(94, 184, 230, 0.12);
  background: rgba(15, 12, 12, 0.9);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  position: relative;
}
.home-banners .principal__slide {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.principal__slide::after {
  position: absolute;
  width: 100%;
  height: 60%;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(8, 7, 8, 0.85));
  z-index: 2;
  content: "";
}
.principal__slide .carousel-inner {
  height: inherit;
}
.principal__slide .carousel-item {
  position: relative;
  height: inherit;
}
.principal__slide .carousel-item .carousel__title {
  width: 75%;
  position: absolute;
  top: auto;
  bottom: 65px;
  left: 5%;
  height: auto;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  text-align: left;
  font-size: 1.5rem;
  line-height: 1.15;
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  z-index: 10;
}
.principal__slide .carousel-item img {
  width: 100%;
  height: inherit;
  object-fit: cover;
}
.principal__slide .carousel-item .slide__link {
  position: absolute;
  top: auto;
  bottom: 22px;
  left: 5%;
  background-color: #2a7aa8;
  color: #e8edf2;
  border: none;
  border-radius: 4px;
  padding: 9px 30px;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.principal__slide .carousel-item .slide__link:hover, .principal__slide .carousel-item .slide__link:focus {
  text-decoration: underline;
  background-color: #5eb8e6;
}
.principal__slide .carousel-item .slide__link {
  border-radius: 6px;
  font-size: 0.78rem;
  padding: 7px 18px;
  z-index: 10;
}
.principal__slide .carousel-indicators {
  min-width: max-content;
  height: 24px;
  background: rgba(13, 10, 10, 0.8);
  border: 1px solid rgba(94, 184, 230, 0.12);
  border-radius: 5px;
  left: unset;
  right: 14px;
  bottom: 14px;
  margin-left: 0;
  margin-right: 0;
  justify-content: unset;
  align-items: center;
  padding: 5px;
  z-index: 10;
}
.principal__slide .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background-clip: unset;
  box-sizing: unset;
  border: 0;
  background-color: rgba(255, 255, 255, 0.2);
  transition: background-color 0.2s ease;
}
.principal__slide .carousel-indicators [data-bs-target].active {
  background-color: #5eb8e6;
}
.principal__slide .carousel-control-prev,
.principal__slide .carousel-control-next {
  display: none;
}

.countdowns:not(.site-hero .countdowns) {
  position: absolute;
  right: 0;
  bottom: 15px;
  width: 100%;
  max-width: 300px;
  height: 150px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), rgba(10, 14, 20, 0.92);
  border: 1px solid rgba(94, 184, 230, 0.12);
  border-radius: 10px;
}
.countdowns:not(.site-hero .countdowns) .countdown-title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  background: rgba(94, 184, 230, 0.1);
  color: #a8dcf4;
  text-transform: uppercase;
  font-size: 0.88rem;
  font-weight: 700;
}
.countdowns:not(.site-hero .countdowns) .countdown-timer {
  display: flex;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 11px;
}
.countdowns:not(.site-hero .countdowns) .countdown-timer div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-weight: 700;
  font-size: 0.6rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.countdowns:not(.site-hero .countdowns) .countdown-timer div span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  background-color: rgba(8, 12, 18, 0.9);
  border: 1px solid rgba(94, 184, 230, 0.18);
  border-radius: 8px;
}

.castle__siege {
  background: url(../images/background_cs_event.png) no-repeat center center/cover #0a0d12;
  background-size: 115% 115%;
  color: #e8edf2;
  font-weight: bold;
  height: 320px;
  position: relative;
  transition: background-position 0.1s ease-out;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(94, 184, 230, 0.18);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.castle__siege::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 7, 8, 0.75), rgba(8, 7, 8, 0.12), rgba(8, 7, 8, 0.75)), linear-gradient(180deg, rgba(8, 7, 8, 0), rgba(8, 7, 8, 0.55));
  pointer-events: none;
}
.castle__siege__content {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 100%;
  gap: 5rem;
  padding: 0 17px;
}
.castle__siege__content .castle__group {
  position: relative;
  z-index: 2;
  text-align: center;
}
.castle__siege__content .castle__group .castle__label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  text-transform: uppercase;
}
.castle__siege__content .castle__group .castle__input {
  width: 163px;
  height: 40px;
  background-color: rgba(13, 10, 10, 0.85);
  border: 1px solid rgba(94, 184, 230, 0.16);
  border-radius: 8px;
  line-height: 40px;
  text-align: center;
  margin-top: 0.7rem;
}
.castle__siege__content .castle__group .castle__input p {
  text-transform: uppercase;
}
.castle__siege__content .castle__mark {
  width: 268px;
  height: 282px;
}
.castle__siege__content .castle__mark::after {
  width: inherit;
  height: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -50%);
  background: url(../images/statua_cs.png) no-repeat;
  content: "";
}
.castle__siege__content .castle__mark .castle__mark__guild {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.castle__siege__content .castle__mark .castle__mark__guild::before {
  width: 139px;
  height: 74px;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: url(../images/maos_statua_cs.png);
}
.castle__siege__content .castle__mark .castle__mark__guild svg {
  width: 80px;
  height: 80px;
  border-radius: 5px;
}
.castle__siege .castle__mask__title {
  width: 100%;
  text-align: center;
  font-family: "Noto Sans", system-ui, sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 576px) {
  .castle__siege .castle__mask__title {
    font-size: clamp(24px, 11vw, 160px);
  }
}
@media screen and (min-width: 768px) {
  .castle__siege .castle__mask__title {
    font-size: clamp(48px, 9vw, 132px);
  }
}
@media screen and (min-width: 992px) {
  .castle__siege .castle__mask__title {
    font-size: clamp(48px, 9vw, 132px);
  }
}
@media screen and (min-width: 1200px) {
  .castle__siege .castle__mask__title {
    font-size: clamp(48px, 9vw, 132px);
  }
}
@media screen and (min-width: 1400px) {
  .castle__siege .castle__mask__title {
    font-size: clamp(48px, 9vw, 132px);
  }
}
.castle__siege .castle__mask__title {
  letter-spacing: 0.02em;
  margin: 0;
  color: transparent;
  text-transform: uppercase;
  mix-blend-mode: soft-light;
  opacity: 0.6;
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@supports (-webkit-text-stroke: 5rem) or (text-stroke: 1px) {
  .castle__siege .castle__mask__title {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
    -webkit-text-fill-color: transparent;
  }
}
@supports not (-webkit-text-stroke: 1px) {
  .castle__siege .castle__mask__title {
    text-shadow: 2px 0 0 rgba(255, 255, 255, 0.5), -2px 0 0 rgba(255, 255, 255, 0.5), 0 2px 0 rgba(255, 255, 255, 0.5), 0 -2px 0 rgba(255, 255, 255, 0.5);
  }
}
.castle__siege .castle__date {
  width: max-content;
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
  color: #e8edf2;
  font-size: 0.85rem;
  font-weight: 400;
  background-color: rgba(17, 12, 11, 0.85);
  border: 1px solid rgba(94, 184, 230, 0.16);
  border-radius: 8px;
  padding: 4px 20px;
}
.castle__siege .castle__date span {
  color: #5eb8e6;
}

@media screen and (min-width: 576px) {
  .castle__siege__content .castle__mark {
    height: 253px;
  }
  .castle__siege__content .castle__mark::after {
    height: 282px;
    background-size: 100%;
    top: 112px;
    z-index: 1;
    content: "";
  }
}
/* cyrillic-ext */
@font-face {
  font-family: "Merriweather";
  font-style: italic;
  font-weight: 300 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4r0qyriQwlOrhSvowK_l5-eTxCVw8XP0LuKH2Gy9thm7XCN7A.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Merriweather";
  font-style: italic;
  font-weight: 300 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4r0qyriQwlOrhSvowK_l5-eTxCVw8XP0LuKH2Gy9thkrXCN7A.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: "Merriweather";
  font-style: italic;
  font-weight: 300 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4r0qyriQwlOrhSvowK_l5-eTxCVw8XP0LuKH2Gy9thmbXCN7A.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Merriweather";
  font-style: italic;
  font-weight: 300 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4r0qyriQwlOrhSvowK_l5-eTxCVw8XP0LuKH2Gy9thmLXCN7A.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Merriweather";
  font-style: italic;
  font-weight: 300 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4r0qyriQwlOrhSvowK_l5-eTxCVw8XP0LuKH2Gy9thlrXC.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 300 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4t0qyriQwlOrhSvowK_l5UcA6ht3ZEqezpPbXEE5NRlK3G.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 300 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4t0qyriQwlOrhSvowK_l5UcA6ht3ZEqezpPbXEE5pRlK3G.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* vietnamese */
@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 300 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4t0qyriQwlOrhSvowK_l5UcA6ht3ZEqezpPbXEE5FRlK3G.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 300 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4t0qyriQwlOrhSvowK_l5UcA6ht3ZEqezpPbXEE5BRlK3G.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 300 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/merriweather/v32/u-4t0qyriQwlOrhSvowK_l5UcA6ht3ZEqezpPbXEE55RlA.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Noto Sans";
  font-style: italic;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/notosans/v39/o-0ZIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevttHOmDyw.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Noto Sans";
  font-style: italic;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/notosans/v39/o-0ZIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevtvXOmDyw.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* devanagari */
@font-face {
  font-family: "Noto Sans";
  font-style: italic;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/notosans/v39/o-0ZIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevtuHOmDyw.woff2) format("woff2");
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* greek-ext */
@font-face {
  font-family: "Noto Sans";
  font-style: italic;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/notosans/v39/o-0ZIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevttXOmDyw.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Noto Sans";
  font-style: italic;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/notosans/v39/o-0ZIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevtunOmDyw.woff2) format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Noto Sans";
  font-style: italic;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/notosans/v39/o-0ZIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevttnOmDyw.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Noto Sans";
  font-style: italic;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/notosans/v39/o-0ZIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevtt3OmDyw.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Noto Sans";
  font-style: italic;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/notosans/v39/o-0ZIpQlx3QUlC5A4PNr4C5OaxRsfNNlKbCePevtuXOm.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* cyrillic-ext */
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/notosans/v39/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aPdu2ui.woff2) format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
/* cyrillic */
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/notosans/v39/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5ardu2ui.woff2) format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
/* devanagari */
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/notosans/v39/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5a_du2ui.woff2) format("woff2");
  unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+20F0, U+25CC, U+A830-A839, U+A8E0-A8FF, U+11B00-11B09;
}
/* greek-ext */
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/notosans/v39/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aLdu2ui.woff2) format("woff2");
  unicode-range: U+1F00-1FFF;
}
/* greek */
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/notosans/v39/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5a3du2ui.woff2) format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
/* vietnamese */
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/notosans/v39/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aHdu2ui.woff2) format("woff2");
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/notosans/v39/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5aDdu2ui.woff2) format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/notosans/v39/o-0bIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjc5a7duw.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 0 0;
  background: linear-gradient(180deg, rgba(10, 14, 20, 0.8), rgba(8, 11, 16, 0.98));
  border-top: 1px solid rgba(94, 184, 230, 0.1);
}
.site-footer .footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(94, 184, 230, 0.06);
}
.site-footer .footer__brand .footer__logo {
  max-width: 80px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(94, 184, 230, 0.15));
  margin-bottom: 0.8rem;
}
.site-footer .footer__brand .footer__desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 1rem;
}
.site-footer .footer__brand .footer__social {
  display: flex;
  gap: 0.6rem;
}
.site-footer .footer__brand .footer__social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(94, 184, 230, 0.12);
  background: rgba(94, 184, 230, 0.04);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.site-footer .footer__brand .footer__social a:hover {
  color: #a8dcf4;
  border-color: rgba(94, 184, 230, 0.35);
  background: rgba(94, 184, 230, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(94, 184, 230, 0.15);
}
.site-footer .footer__links h5 {
  color: #a8dcf4;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  letter-spacing: 0.03em;
}
.site-footer .footer__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer__links ul li {
  margin-bottom: 0.4rem;
}
.site-footer .footer__links ul a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  transition: color 0.2s ease;
}
.site-footer .footer__links ul a:hover {
  color: #a8dcf4;
}
.site-footer .footer__bottom {
  padding: 1.2rem 0;
  text-align: center;
}
.site-footer .footer__bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}
.site-footer .footer__bottom p span {
  color: #a8dcf4;
  font-weight: 600;
}

.footer {
  margin-top: 3rem;
  padding: 2rem 0;
  background: linear-gradient(180deg, rgba(10, 14, 20, 0.6), rgba(8, 11, 16, 0.98));
  border-top: 1px solid rgba(94, 184, 230, 0.1);
}
.footer .footer__copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.78rem;
}
.footer .footer__copyright span {
  color: #a8dcf4;
  font-weight: 600;
}

.social-dock {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  z-index: 1020;
  padding: 0.55rem;
  background: rgba(12, 16, 22, 0.88);
  border: 1px solid rgba(94, 184, 230, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 20px rgba(94, 184, 230, 0.04);
}
.social-dock ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-dock a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.55);
  background: rgba(94, 184, 230, 0.04);
  border: 1px solid rgba(94, 184, 230, 0.06);
  text-decoration: none;
  transition: all 0.2s ease;
}
.social-dock a i {
  font-size: 1.1rem;
}
.social-dock a span {
  display: none;
}
.social-dock a:hover {
  color: #fff;
  background: rgba(94, 184, 230, 0.14);
  border-color: rgba(94, 184, 230, 0.3);
  transform: scale(1.12);
  box-shadow: 0 4px 16px rgba(94, 184, 230, 0.2);
}
@media screen and (max-width: 992px) {
  .social-dock {
    top: auto;
    right: 0;
    left: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 0;
    border: 0;
    border-top: 1px solid rgba(94, 184, 230, 0.1);
    background: rgba(10, 13, 18, 0.96);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  }
  .social-dock ul {
    flex-direction: row;
    justify-content: space-around;
    gap: 0;
  }
  .social-dock a {
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    border-radius: 12px;
  }
  .social-dock a i {
    font-size: 1.3rem;
  }
  .social-dock a:hover {
    background: rgba(94, 184, 230, 0.08);
    box-shadow: none;
    transform: none;
  }
}

@media screen and (max-width: 1200px) {
  .home-layout {
    grid-template-columns: 1fr 280px;
  }
}
@media screen and (max-width: 992px) {
  .home-layout {
    grid-template-columns: 1fr;
  }
  .home-sidebar {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .site-hero .hero__stats {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .site-hero .hero__stat-divider {
    display: none;
  }
  .site-hero .hero__stat {
    padding: 0.4rem 1rem;
  }
  .home-why__grid {
    grid-template-columns: 1fr;
  }
  .site-footer .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .site-footer,
  .footer {
    padding-bottom: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  body {
    background-size: auto 700px;
    background-position: center top;
  }
  .navbar {
    height: 52px;
  }
  .site-hero {
    padding: 40px 0 30px;
  }
  .site-hero .hero__brand-logo img {
    max-width: 260px;
  }
  .site-hero .hero__actions .btn {
    min-width: 140px;
    font-size: 0.75rem;
  }
  .site-hero .hero__stat-value {
    font-size: 1.1rem;
  }
  .home-landing {
    padding-top: 1.5rem;
  }
  .home-sidebar {
    grid-template-columns: 1fr;
  }
  .home-why__grid {
    grid-template-columns: 1fr;
  }
  .site-footer .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .page {
    width: calc(100% - 1rem);
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 576px) {
  .navbar {
    height: 50px;
  }
  .site-hero {
    padding: 30px 0 20px;
  }
  .site-hero .hero__brand-logo img {
    max-width: 200px;
  }
  .site-hero .hero__actions {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
  }
  .site-hero .hero__actions .btn {
    width: 100%;
  }
  .site-hero .hero__stats {
    flex-direction: column;
    gap: 0.4rem;
  }
  .site-hero .hero__stat {
    flex-direction: row;
    gap: 0.5rem;
  }
  .home-landing {
    padding-top: 1rem;
  }
  .section-header {
    padding: 0.5rem 0.8rem;
  }
  .section-header h3 {
    font-size: 0.8rem;
  }
  .castle__siege {
    height: 200px;
  }
  .castle__siege__content {
    gap: 1.5rem;
  }
  .castle__siege__content .castle__mark {
    display: none;
  }
  .home-why__title {
    font-size: 1.3rem;
  }
  .why-card {
    padding: 1rem;
  }
  .page {
    margin-left: 6px;
    margin-right: 6px;
  }
}
.market-hub {
  display: grid;
  gap: 1rem;
}

.market-hub__intro {
  padding: 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(94, 184, 230, 0.12);
  background: linear-gradient(135deg, rgba(94, 184, 230, 0.15), rgba(94, 184, 230, 0.04)), rgba(12, 9, 9, 0.84);
}
.market-hub__intro span {
  color: #5eb8e6;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}
.market-hub__intro h2 {
  margin: 0.2rem 0 0.4rem;
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}
.market-hub__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

.market-hub__card {
  height: 100%;
}
.market-hub__card .card-header {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.market-hub__card img {
  max-width: 80px;
  height: 80px;
  object-fit: contain;
  filter: drop-shadow(0 14px 14px rgba(0, 0, 0, 0.4));
}

.market.items .itemmarket-sidebar {
  position: relative;
  z-index: 2;
}
.market.items .market-filter-panel {
  position: sticky;
  top: 72px;
  padding: 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(94, 184, 230, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), rgba(13, 10, 10, 0.88);
}
.market.items .itemmarket-grid {
  align-items: stretch;
}
.market.items .sidebar-toggler {
  min-height: 40px;
}
.market.items .input-group {
  gap: 0.35rem;
}
.market.items .input-group .form-control, .market.items .input-group .btn {
  border-radius: 6px !important;
}
.market.items .card.text-light {
  background: rgba(13, 10, 10, 0.86);
}
.market.items .form-check {
  min-height: 32px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0;
}
.market.items .form-check-input {
  margin-left: 0;
}
.market.items .product.card {
  min-height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(94, 184, 230, 0.12);
  background: radial-gradient(circle at 50% 0%, rgba(94, 184, 230, 0.08), transparent 38%), linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)), rgba(12, 16, 22, 0.9);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.market.items .product.card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-top: 2px solid rgba(94, 184, 230, 0.18);
  opacity: 0.7;
}
.market.items .product.card:hover {
  transform: translateY(-4px);
  border-color: rgba(94, 184, 230, 0.3);
}
.market.items .product.card .product-image {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.market.items .product.card .product-image img {
  filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.5));
  transition: transform 0.2s ease;
}
.market.items .product.card:hover .product-image img {
  transform: translateY(-3px) scale(1.03);
}
.market.items .product.card .product-price {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(94, 184, 230, 0.1);
  border: 1px solid rgba(94, 184, 230, 0.15);
  color: #a8dcf4;
  font-size: 0.78rem;
}

.itemmarket-sell .sell-item {
  row-gap: 1rem;
}
.itemmarket-sell .item {

}

.shop .items,
.market-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.85rem;
}

.shop .item,
.market-item {
  min-height: 200px;
  padding: 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(94, 184, 230, 0.12);
  background: radial-gradient(circle at 50% 0%, rgba(94, 184, 230, 0.08), transparent 38%), rgba(15, 12, 12, 0.86);
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.shop .item:hover,
.market-item:hover {
  transform: translateY(-3px);
  border-color: rgba(94, 184, 230, 0.28);
}
.shop .item .image,
.market-item .image {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop .item .name,
.market-item .name {
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
}
