@charset "UTF-8";
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* Paleta do site */
:root {
  --color-black: #1a1a1a;
  --color-white: #fefefe;
  --color-gray: #d3d0d1;
  --color-gold: #b28342;
  --color-gold-dark: #7c4f22;
  --gradient-gold: linear-gradient(90deg, #b28342 0%, #7c4f22 100%);
  --gradient-gold-135: linear-gradient(135deg, #b28342 0%, #7c4f22 100%);
}

/*--------------------*/
.burger-menu {
  visibility: hidden;
  width: 0;
  height: 0;
  font-family: "reaver";
  margin-left: 10px;
}

@media (max-width: 1000px) {
  .burger-menu {
    visibility: visible;
    width: auto;
    height: auto;
  }
}
.burger-menu_button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 30;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.burger-menu_button:hover .burger-menu_lines {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
}

.burger-menu_lines::before,
.burger-menu_lines::after,
.burger-menu_lines {
  position: absolute;
  width: 40px;
  height: 3px;
  background-color: #b28342;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.burger-menu_lines {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.burger-menu_lines::before {
  content: "";
  top: -12px;
}

.burger-menu_lines::after {
  content: "";
  top: 12px;
}

.burger-menu_active .burger-menu_lines {
  background-color: transparent;
}

.burger-menu_active .burger-menu_lines::before {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.burger-menu_active .burger-menu_lines::after {
  top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.burger-menu_nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-height: 80vh;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, rgba(26, 26, 26, 0.95) 100%);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  overflow-y: auto;
  padding-top: 70px;
  padding-bottom: 20px;
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.5);
  border-bottom: 2px solid rgba(178, 131, 66, 0.3);
  top: -100%;
  -webkit-transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger-menu_active .burger-menu_nav {
  top: 0;
  -webkit-transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger-menu_link {
  padding: 14px 30px;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  letter-spacing: 0.5px;
  color: #b28342;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 300px;
  position: relative;
  border-radius: 8px;
  margin: 4px 0;
}

.burger-menu_link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #b28342, #7c4f22);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.burger-menu_link:hover {
  color: #b28342;
  background: rgba(178, 131, 66, 0.1);
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  text-shadow: 0 2px 4px rgba(178, 131, 66, 0.3);
}

.burger-menu_link:hover::before {
  width: 4px;
}

.burger-menu_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 10;
}

.burger-menu_active .burger-menu_overlay {
  display: block;
  background-color: rgba(26, 26, 26, 0.5);
}

@font-face {
  font-family: "reaver";
  src: url("../fonts/reaver-regular.woff2") format("woff2"), url("../fonts/reaver-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "reaver";
  src: url("../fonts/reaver-black.woff2") format("woff2"), url("../fonts/reaver-black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "reaver";
  src: url("../fonts/reaver-semibold.woff2") format("woff2"), url("../fonts/reaver-semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "reaver";
  src: url("../fonts/reaver-bold.woff2") format("woff2"), url("../fonts/reaver-bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "reaver";
  src: url("../fonts/reaver-light.woff2") format("woff2"), url("../fonts/reaver-light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}
 .head_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
  }
  

.head_buttons > .blue_button{
 width: 280px;
 height: 70px;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 align-items: center;
 position: relative;
 transition: all .3s ease-in-out;
 margin-left: 15px;
 margin-right: 15px;
 /* margin-bottom: 30px; */
}

.head_buttons > .blue_button:hover .hover{
 opacity: 1;
}

.head_buttons > .blue_button > .bg{
 width: 286px;
 height: 93px;
 position: absolute;
 opacity: 0.9;
 z-index: 1;
 background: url(../images/bd_button.png) center center no-repeat;
 border-radius: 8px;
}

.head_buttons > .blue_button > .hover{
 width: 100%;
 height: 100%;
 background: url(../images/bd_button_hover.png) center center no-repeat;
 position: absolute;
 z-index: 2;
 transition: all .3s ease-in-out;
 opacity: 0;
 border-radius: 8px;
}

  .head_buttons1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 30px;
  }
  
.head_buttons1 > .red_button{
 width: 280px;
 height: 70px;
 display: flex;
 flex-wrap: wrap;
 justify-content: center;
 align-items: center;
 position: relative;
 transition: all .3s ease-in-out;
 margin-left: 15px;
 margin-right: 15px;
 margin-bottom: 30px;
}

.head_buttons1 > .red_button:hover .hover{
 opacity: 1;
}

.head_buttons1 > .red_button > .bg{
 width: 286px;
 height: 93px;
 opacity: 0.9;
 position: absolute;
 z-index: 1;
 background: url(../images/avrora_button.png) center center no-repeat;
}

.head_buttons1 > .red_button > .hover{
 width: 100%;
 height: 100%;
 background: url(../images/avrora_button_hover.png) center center no-repeat;
 position: absolute;
 z-index: 2;
 transition: all .3s ease-in-out;
 opacity: 0;
 border-radius: 20px;
}
.mainpage {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #1a1a1a;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}

.gradient_top {
  position: absolute;
  top: 62px;
  z-index: 1;
  background: url("../img/gradient_top.png") center no-repeat;
  width: 100%;
  height: 64px;
}

.gradient_bottom {
  position: absolute;
  bottom: 0;
  z-index: 1;
  background: url("../img/gradient_bottom.png") center no-repeat;
  width: 100%;
  height: 100px;
}

@media (max-width: 1380px) {
  .gradient_bottom {
    height: 80px;
  }
}
@media (max-width: 320px) {
  .gradient_bottom {
    visibility: hidden;
  }
}
.navbar {
  position: relative;
  z-index: 10;
  width: 100%;
  height: 60px;
  background-color: #1a1a1a;
}

.navbar__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1370px;
  height: 100%;
  margin: 0 auto;
}

@media (max-width: 1380px) {
  .navbar__container {
    padding: 0 30px;
  }
}
/* Header Logo Styles */
.header__logo {
  display: block;
  position: relative;
  z-index: 15;
  margin: 0 0 30px 0;
  padding: 0;
  width: 100%;
}

@media (max-width: 1200px) {
  .header__logo {
    text-align: center;
  }
}

.header__logo_img {
  position: relative;
  display: block;
  background: url("../img/logo.png") left top no-repeat;
  background-size: contain;
  width: 350px;
  height: 250px;
  -webkit-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: pointer;
  filter: drop-shadow(0 4px 16px rgba(178, 131, 66, 0.5));
  z-index: 15;
  margin: 0 0 0 85px;
  padding: 0;
}

@media (max-width: 1200px) {
  .header__logo_img {
    margin: 0 auto;
  }
}

@media (max-width: 1200px) {
  .header__logo_img {
    width: 280px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .header__logo_img {
    width: 220px;
    height: 160px;
  }
}

.header__logo_img:hover {
  -webkit-transform: scale(1.15) translateY(-5px);
          transform: scale(1.15) translateY(-5px);
  filter: drop-shadow(0 6px 16px rgba(178, 131, 66, 0.6)) brightness(1.2);
  -webkit-filter: drop-shadow(0 6px 16px rgba(178, 131, 66, 0.6)) brightness(1.2);
}

.header__logo_img::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(178, 131, 66, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

.header__logo_img:hover::before {
  width: 150px;
  height: 150px;
}

.navbar__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}

@media (max-width: 1100px) {
  .navbar__menu {
    gap: 60px;
  }
}
@media (max-width: 1000px) {
  .navbar__menu {
    visibility: hidden;
    width: 0;
    height: 0;
  }
}
.menu__item {
  position: relative;
}

.menu__item-link {
  font-family: "reaver";
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: #b28342;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 4px;
  background: transparent;
  border: none;
  text-transform: none;
  letter-spacing: 0.3px;
  overflow: visible;
}

.menu__item-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #b28342 0%, #7c4f22 100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}

.menu__item-link::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(178, 131, 66, 0.15) 0%, transparent 70%);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 0;
}

.menu__item-link span {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.menu__item-link:hover {
  color: #b28342;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  text-shadow: 0 2px 4px rgba(178, 131, 66, 0.3);
}

.menu__item-link:hover::before {
  width: 85%;
}

.menu__item-link:hover::after {
  width: 120px;
  height: 120px;
  left: 50%;
}

.menu__item-link:hover span {
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}

.menu__item-link.active {
  color: #b28342;
  text-shadow: 0 2px 4px rgba(178, 131, 66, 0.4);
}

.menu__item-link.active::before {
  width: 85%;
}

.menu__item-link.active::after {
  width: 100px;
  height: 100px;
  left: 50%;
}


@media (max-width: 1100px) {
  .menu__item-link {
    font-size: 16px;
  }
}
.navbar__hr {
  width: 100%;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #b28342), color-stop(50%, #b28342), color-stop(100%, #7c4f22));
  background: linear-gradient(90deg, #b28342 0%, #7c4f22 100%);
}

.header {
  position: relative;
  background: url("../img/head.jpg") center center no-repeat;
  margin: 0 auto;
  max-width: 1920px;
  height: 600px;
}

@media (max-width: 700px) {
  .header {
    height: 450px;
  }
}
@media (max-width: 421px) {
  .header {
    height: 450px;
  }
}
.header__social {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  top: 186px;
  right: 0;
  z-index: 50;
}

@media (max-width: 1200px) {
  .header__social {
    visibility: hidden;
    width: 0;
    height: 0;
  }
}

.social {
  width: 70px;
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(26, 26, 26, 0.85);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid #b28342;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.social::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: 50px 50px;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}

.social:hover {
  background: rgba(178, 131, 66, 0.9);
  border-color: #b28342;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(178, 131, 66, 0.3);
}

.social:hover::before {
  -webkit-filter: brightness(1.2);
          filter: brightness(1.2);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.vk::before {
  background-image: url("../img/vk.png");
}

.ds::before {
  background-image: url("../img/ds.png");
}

.tg::before {
  background-image: url("../img/tg.png");
}

.header__container {
  position: relative;
  z-index: 1;
  max-width: 1370px;
  height: 600px;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1500px) {
  .header__container {
    padding: 0 30px;
  }
}
@media (max-width: 1380px) {
  .header__container {
    overflow: hidden;
    height: 100%;
  }
}
.header__welcome {
  position: relative;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: left;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 600px;
  padding-left: 50px;
  width: auto;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .header__welcome {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    padding-left: 0;
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 1200px) {
  .header__welcome {
    text-align: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.header__title {
  font-family: "reaver";
  font-weight: 900;
  font-size: 50px;
  line-height: 72px;
  letter-spacing: 0.015em;
  color: #fefefe;
  text-shadow: 0px 0px 8px rgba(26, 26, 26, 0.25);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 600px) {
  .header__title {
    font-size: 33px;
    line-height: 52px;
  }
}
.header__subtitle {
  width: 100%;
  max-width: 550px;
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #fefefe;
  text-shadow: 0 2px 4px rgba(26, 26, 26, 0.5);
  margin: 0 0 30px 0;
  padding: 0;
  text-align: left;
  letter-spacing: 0.3px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.header__subtitle::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #b28342, transparent);
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.header__subtitle:hover::after {
  width: 100%;
}

@media (max-width: 1200px) {
  .header__subtitle {
    text-align: center;
    margin: 0 auto 30px auto;
  }
  
  .header__subtitle::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .header__subtitle {
    font-size: 16px;
    width: 100%;
  }
}
.header__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-family: "reaver";
  font-weight: 700;
  font-size: 20px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  align-self: flex-start;
  gap: 20px;
}
.header__buttons-primary,
.header__buttons-secondary {
  width: 200px;
}

.header__buttons-secondary .btn_secondary {
  border-color: #1a1a1a;
  background: transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.header__buttons-secondary .btn_secondary:hover {
  border-color: #1a1a1a;
  background: transparent;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.header__buttons-secondary .btn_secondary:active {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1200px) {
  .header__buttons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    align-self: center;
  }
}

@media (max-width: 600px) {
  .header__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 18px;
    gap: 15px;
  }
}
.btn_primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 48px;
  background: linear-gradient(135deg, #b28342 0%, #7c4f22 100%);
  color: #fefefe;
  border-radius: 8px;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(178, 131, 66, 0.4), 0 2px 4px rgba(26, 26, 26, 0.2);
  text-shadow: 0 1px 2px rgba(26, 26, 26, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn_primary:hover {
  background: linear-gradient(135deg, #7c4f22 0%, #7c4f22 100%);
  box-shadow: 0 6px 25px rgba(178, 131, 66, 0.6), 0 4px 8px rgba(26, 26, 26, 0.3);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn_primary:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  box-shadow: 0 2px 8px rgba(178, 131, 66, 0.4);
}

.btn_primary::before {
  position: absolute;
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.397);
  -webkit-animation: shiny-btn1 3s ease-in-out infinite;
          animation: shiny-btn1 3s ease-in-out infinite;
}

@-webkit-keyframes shiny-btn1 {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.btn_secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 46px;
  border: 2px solid #b28342;
  background: transparent;
  color: #fefefe;
  white-space: nowrap;
  border-radius: 8px;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(178, 131, 66, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-shadow: 0 1px 2px rgba(26, 26, 26, 0.2);
  overflow: hidden;
}

.btn_secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}

.btn_secondary:hover {
  background: linear-gradient(135deg, rgba(178, 131, 66, 0.15) 0%, rgba(124, 79, 34, 0.15) 100%);
  border-color: #7c4f22;
  color: #fefefe;
  box-shadow: 0 4px 20px rgba(178, 131, 66, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn_secondary:hover::before {
  left: 100%;
}

.btn_secondary:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  box-shadow: 0 2px 8px rgba(178, 131, 66, 0.3);
}

.header__character {
  position: absolute;
  background: url(../img/character.png) center no-repeat;
  top: 8px;
  left: 532px;
  width: 977px;
  height: 626px;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1380px) {
  .header__character {
    left: 550px;
  }
}
@media (max-width: 1200px) {
  .header__character {
    visibility: hidden;
  }
}
@media (max-width: 421px) {
  .header__character {
    -webkit-transform: scale(60%);
            transform: scale(60%);
    top: 0px;
    left: -490px;
    visibility: visible;
  }
}
.about__hr {
  width: 100%;
  height: 1px;
  position: relative;
  z-index: 10001;
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, #b28342), color-stop(50%, #b28342), color-stop(100%, #7c4f22));
  background: linear-gradient(90deg, #b28342 0%, #7c4f22 100%);
}

.about {
  width: 100%;
  min-height: 140px;
  padding: 35px 20px;
  background: linear-gradient(180deg, #1a1a1a 0%, #1a1a1a 100%);
  position: relative;
  z-index: 10000;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(178, 131, 66, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.about__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  z-index: 1;
}

@media (max-width: 1200px) {
  .about__container {
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .about__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 700px) {
  .about {
    padding: 30px 15px;
  }
  
  .about__container {
    gap: 25px;
  }
  
  .about__item {
    min-width: 100%;
  }
}
.about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 18px 30px;
  background: rgba(26, 26, 26, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(178, 131, 66, 0.2);
  border-radius: 16px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 500px;
  min-width: 350px;
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.about__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(178, 131, 66, 0.1), transparent);
  -webkit-transition: left 0.6s ease;
  transition: left 0.6s ease;
}

.about__item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border-color: rgba(178, 131, 66, 0.5);
  box-shadow: 0 8px 30px rgba(178, 131, 66, 0.3), 0 4px 15px rgba(26, 26, 26, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: rgba(26, 26, 26, 0.8);
}

.about__item:hover::before {
  left: 100%;
}

@media (max-width: 900px) {
  .about__item {
    max-width: 100%;
    width: 100%;
  }
}
.item_image {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75px;
  height: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.item_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: drop-shadow(0 4px 12px rgba(178, 131, 66, 0.4));
          filter: drop-shadow(0 4px 12px rgba(178, 131, 66, 0.4));
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  position: relative;
}

.item_image__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(178, 131, 66, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.about__item:hover .item_image img {
  -webkit-transform: scale(1.1) rotate(5deg);
          transform: scale(1.1) rotate(5deg);
  -webkit-filter: drop-shadow(0 6px 20px rgba(178, 131, 66, 0.6));
          filter: drop-shadow(0 6px 20px rgba(178, 131, 66, 0.6));
}

.about__item:hover .item_image__glow {
  opacity: 1;
}

.item_desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.item_title {
  font-family: "reaver", serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 28px;
  background: linear-gradient(135deg, #b28342 0%, #7c4f22 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  padding: 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-shadow: 0 2px 4px rgba(178, 131, 66, 0.3);
}

.about__item:hover .item_title {
  background: linear-gradient(135deg, #b28342 0%, #b28342 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.item_subtitle {
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  color: #fefefe;
  margin: 0;
  padding: 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  text-shadow: 0 1px 2px rgba(26, 26, 26, 0.3);
}

.about__item:hover .item_subtitle {
  color: #fefefe;
}

@media (max-width: 900px) {
  .last {
    display: block;
  }
  
  .remove {
    display: block;
  }
}
.bottom {
  margin-bottom: 72px;
}

@media (max-width: 1100px) {
  .bottom {
    margin-bottom: 45px;
  }
}
.content__container {
  position: relative;
  z-index: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  max-width: 1370px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1500px) {
  .content__container {
    padding: 0 30px;
  }
}
@media (max-width: 1100px) {
  .content__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.content__primary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 970px;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1100px) {
  .content__primary {
    max-width: 100%;
  }
}
.content__primary_swiper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.4), 0 4px 16px rgba(178, 131, 66, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(178, 131, 66, 0.3);
}

@media (max-width: 1380px) {
  .content__primary_swiper {
    max-width: 850px;
  }
}
@media (max-width: 1100px) {
  .content__primary_swiper {
    max-width: 100%;
  }
}
.swiper-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 970px;
  height: 400px;
}

.swiper__control {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  z-index: 15;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 50%;
  bottom: 20px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgba(26, 26, 26, 0.4);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(178, 131, 66, 0.3);
}

.swiper__control-next {
  position: relative;
  z-index: 10;
  width: 40px;
  height: 40px;
  background: rgba(178, 131, 66, 0.2);
  border: 1px solid rgba(178, 131, 66, 0.4);
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper__control-next::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 8px solid #b28342;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-left: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.swiper__control-next:hover {
  background: rgba(178, 131, 66, 0.4);
  border-color: rgba(178, 131, 66, 0.8);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(178, 131, 66, 0.4);
}

.swiper__control-next:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.swiper__control-prev {
  position: relative;
  z-index: 10;
  width: 40px;
  height: 40px;
  background: rgba(178, 131, 66, 0.2);
  border: 1px solid rgba(178, 131, 66, 0.4);
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.swiper__control-prev::after {
  content: '';
  width: 0;
  height: 0;
  border-right: 8px solid #b28342;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  margin-right: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.swiper__control-prev:hover {
  background: rgba(178, 131, 66, 0.4);
  border-color: rgba(178, 131, 66, 0.8);
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(178, 131, 66, 0.4);
}

.swiper__control-prev:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

@media (max-width: 600px) {
  .swiper__control-next {
    visibility: hidden;
  }
}
@media (max-width: 600px) {
  .swiper__control-prev {
    visibility: hidden;
  }
}
.swiper__content {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 100px 0 0 40px;
  min-height: 300px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 600px) {
  .swiper__content {
    padding: 0;
    left: 50%;
    top: 48%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}
@media (max-width: 500px) {
  .swiper__content {
    padding: 0 30px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
.swiper__title {
  font-family: "reaver";
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  color: #b28342;
  text-shadow: 0px 0px 10px rgba(26, 26, 26, 0.25);
  margin-bottom: 1px;
}

@media (max-width: 600px) {
  .swiper__title {
    line-height: 40px;
    margin-bottom: 3px;
  }
}
@media (max-width: 500px) {
  .swiper__title {
    font-size: 28px;
    line-height: 30px;
    margin-bottom: 5px;
  }
}
.swiper__subtitle {
  max-width: 739px;
  max-height: 64px;
  font-family: "Arial";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.015em;
  color: #fefefe;
  margin-bottom: 0;
  overflow: hidden;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

@media (max-width: 600px) {
  .swiper__subtitle {
    max-width: 460px;
  }
}
@media (max-width: 500px) {
  .swiper__subtitle {
    max-width: 400px;
    font-size: 16px;
    margin-bottom: 12px;
  }
}
.swiper__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  font-family: "reaver";
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  color: #fefefe;
  padding: 12px 32px;
  background: linear-gradient(135deg, #b28342 0%, #7c4f22 100%);
  border-radius: 8px;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(178, 131, 66, 0.4), 0 2px 4px rgba(26, 26, 26, 0.2);
  text-shadow: 0 1px 2px rgba(26, 26, 26, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

@media (max-width: 600px) {
  .swiper__button {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    text-align: center;
  }
}

.swiper__button:hover {
  background: linear-gradient(135deg, #7c4f22 0%, #7c4f22 100%);
  box-shadow: 0 6px 25px rgba(178, 131, 66, 0.6), 0 4px 8px rgba(26, 26, 26, 0.3);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.swiper__button:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  box-shadow: 0 2px 8px rgba(178, 131, 66, 0.4);
}

.swiper__image {
  position: absolute;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 970px;
  width: 100%;
  max-height: 440px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media (max-width: 1100px) {
  .swiper__image {
    max-width: 1200px;
    min-width: 970px;
    width: 100%;
    min-height: 400px;
  }
}
.swiper__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  width: 100%;
  min-height: 400px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
}

.swiper-slide-active .swiper__img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media (max-width: 1100px) {
  .swiper__img {
    min-width: 970px;
    width: 100%;
    min-height: 400px;
    height: 100%;
  }
}
.swiper__gradient {
  position: absolute;
  z-index: 4;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(26, 26, 26, 0.3) 50%, rgba(26, 26, 26, 0.5) 100%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.swiper__gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at left center, rgba(178, 131, 66, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

/* Swiper Pagination Styles */
.swiper-pagination {
  position: relative !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  width: auto !important;
  bottom: auto !important;
  left: auto !important;
}

.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: rgba(255, 255, 255, 0.4) !important;
  opacity: 1 !important;
  border-radius: 50% !important;
  -webkit-transition: all 0.3s ease !important;
  transition: all 0.3s ease !important;
  margin: 0 !important;
  border: 2px solid rgba(178, 131, 66, 0.5);
}

.swiper-pagination-bullet-active {
  background: #b28342 !important;
  width: 24px !important;
  border-radius: 5px !important;
  border-color: rgba(178, 131, 66, 0.8) !important;
  box-shadow: 0 0 10px rgba(178, 131, 66, 0.6) !important;
}

.content__primary_media {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
  max-width: 1370px;
  height: 250px;
  border-radius: 20px;
  border: 2px solid rgba(178, 131, 66, 0.3);
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
  margin: 30px 0 30px 0;
  padding: 15px 15px 15px 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.4), 0 4px 16px rgba(178, 131, 66, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-padding-left: 15px;
  scroll-padding-right: 15px;
}

.content__primary_media::-webkit-scrollbar {
  height: 6px;
}

.content__primary_media::-webkit-scrollbar-button {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.content__primary_media::-webkit-scrollbar-button:start:decrement,
.content__primary_media::-webkit-scrollbar-button:end:increment {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

.content__primary_media::-webkit-scrollbar-track {
  background: rgba(26, 26, 26, 0.1);
  border-radius: 10px;
  margin: 0 15px;
}

.content__primary_media::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(178, 131, 66, 0.6) 0%, rgba(124, 79, 34, 0.6) 100%);
  border-radius: 10px;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.content__primary_media::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, rgba(178, 131, 66, 0.8) 0%, rgba(124, 79, 34, 0.8) 100%);
}

/* Для Firefox */
.content__primary_media {
  scrollbar-width: thin;
  scrollbar-color: rgba(178, 131, 66, 0.6) rgba(26, 26, 26, 0.1);
}

/* Дополнительное скрытие стрелок для всех браузеров */
.content__primary_media {
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.content__primary_media::-webkit-scrollbar-corner {
  display: none !important;
  background: transparent !important;
}

@media (max-width: 1380px) {
  .content__primary_media {
    max-width: 850px;
  }
}
@media (max-width: 1100px) {
  .content__primary_media {
    max-width: 100%;
  }
}
@media (max-width: 1000px) {
  .content__primary_media {
    overflow-y: hidden;
    overflow-x: scroll;
  }
}
@media (max-width: 420px) {
  .content__primary_media {
    margin: 30px 0 0 0;
  }
}
.media__item {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 220px;
  min-width: 220px;
  height: 220px;
  overflow: hidden;
  border-radius: 16px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(178, 131, 66, 0.2);
  flex-shrink: 0;
}

.media__item:hover {
  z-index: 20;
  -webkit-transform: translateY(-8px) scale(1.05);
          transform: translateY(-8px) scale(1.05);
  box-shadow: 0 8px 30px rgba(178, 131, 66, 0.4), 0 4px 15px rgba(26, 26, 26, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(178, 131, 66, 0.5);
}

@media (max-width: 1000px) {
  .media__item {
    min-width: 200px;
  }
}
.media__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
}

.media__gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 0.3) 50%, rgba(26, 26, 26, 0.7) 100%);
  border-radius: 16px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  max-height: 220px;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(9.25%, rgba(26, 26, 26, 0)), color-stop(39.79%, rgba(26, 26, 26, 0.9)), to(#1a1a1a));
  background: linear-gradient(180deg, rgba(26, 26, 26, 0) 9.25%, rgba(26, 26, 26, 0.9) 39.79%, #1a1a1a 100%);
}

@media (max-width: 1100px) {
  .media__gradient {
    max-width: 100%;
  }
}
.media__image {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.media__item:hover .media__image {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.media__item:hover .media__gradient {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, rgba(26, 26, 26, 0.2) 50%, rgba(26, 26, 26, 0.8) 100%);
}

.media__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  z-index: 4;
  padding: 20px 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.media_name {
  font-family: "reaver";
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #fefefe;
  margin: 0;
  text-shadow: 0 2px 8px rgba(26, 26, 26, 0.8), 0 1px 3px rgba(26, 26, 26, 0.6);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.media__item:hover .media_name {
  color: #b28342;
  text-shadow: 0 2px 12px rgba(178, 131, 66, 0.8), 0 1px 4px rgba(26, 26, 26, 0.6);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.primary__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 970px;
  width: 100%;
  gap: 20px;
  margin: 30px 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1100px) {
  .primary__buttons {
    max-width: 100%;
  }
}
@media (max-width: 421px) {
  .primary__buttons {
    visibility: hidden;
    width: 0;
    height: 0;
  }
}
.primary__buttons_about {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 48px;
  background: rgba(26, 26, 26, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: #b28342;
  border: 2px solid rgba(178, 131, 66, 0.3);
  border-radius: 12px;
  font-family: "reaver";
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(26, 26, 26, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-shadow: 0 1px 2px rgba(26, 26, 26, 0.2);
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 400px;
}

.primary__buttons_about::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(178, 131, 66, 0.1), transparent);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}

.primary__buttons_about:hover {
  background: rgba(26, 26, 26, 1);
  border-color: rgba(178, 131, 66, 0.6);
  color: #b28342;
  box-shadow: 0 6px 25px rgba(178, 131, 66, 0.3), 0 4px 15px rgba(26, 26, 26, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.primary__buttons_about:hover::before {
  left: 100%;
}

.primary__buttons_about:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.3);
}

@media (max-width: 1100px) {
  .primary__buttons_about {
    max-width: 100%;
  }
}
.primary__buttons_start {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 48px;
  background: linear-gradient(135deg, #b28342 0%, #7c4f22 100%);
  color: #fefefe;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-family: "reaver";
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(178, 131, 66, 0.4), 0 2px 4px rgba(26, 26, 26, 0.2);
  text-shadow: 0 1px 2px rgba(26, 26, 26, 0.2);
  position: relative;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 400px;
}

.primary__buttons_start::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  -webkit-transition: left 0.5s ease;
  transition: left 0.5s ease;
}

.primary__buttons_start:hover {
  background: linear-gradient(135deg, #7c4f22 0%, #7c4f22 100%);
  box-shadow: 0 6px 25px rgba(178, 131, 66, 0.6), 0 4px 8px rgba(26, 26, 26, 0.3);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.primary__buttons_start:hover::before {
  left: 100%;
}

.primary__buttons_start:active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  box-shadow: 0 2px 8px rgba(178, 131, 66, 0.4);
}

.content__secondary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.content__mmotop {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 470px;
  height: 85px;
  width: 100%;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
  border-radius: 20px;
  border: 2px solid rgba(178, 131, 66, 0.3);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.4), 0 4px 16px rgba(178, 131, 66, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.content__mmotop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(178, 131, 66, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.content__mmotop:hover {
  border-color: rgba(178, 131, 66, 0.5);
  box-shadow: 0 12px 40px rgba(178, 131, 66, 0.3), 0 6px 20px rgba(26, 26, 26, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

@media (max-width: 1100px) {
  .content__mmotop {
    visibility: hidden;
    margin-bottom: 0;
    width: 0;
    height: 0;
  }
}
.mmotop__image {
  position: absolute;
  z-index: 1;
  background: url("../img/mmotop_bg.jpg") center no-repeat;
  background-size: cover;
  opacity: 0.25;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-filter: blur(1px);
          filter: blur(1px);
}

.content__mmotop:hover .mmotop__image {
  opacity: 0.35;
  -webkit-filter: blur(0.5px);
          filter: blur(0.5px);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.mmotop__character {
  position: absolute;
  z-index: 2;
  background: url("../img/mmotop_woman.png") center no-repeat;
  background-size: contain;
  background-position: center bottom;
  width: 100%;
  height: 170%;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-filter: drop-shadow(0 4px 12px rgba(26, 26, 26, 0.3));
          filter: drop-shadow(0 4px 12px rgba(26, 26, 26, 0.3));
}

.content__mmotop:hover .mmotop__character {
  -webkit-transform: translateY(-5px) scale(1.05);
          transform: translateY(-5px) scale(1.05);
  -webkit-filter: drop-shadow(0 6px 20px rgba(178, 131, 66, 0.4));
          filter: drop-shadow(0 6px 20px rgba(178, 131, 66, 0.4));
}

.mmotop__link {
  position: absolute;
  z-index: 4;
  background: url("../img/mmotop.png") center no-repeat;
  background-size: 70% auto;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-filter: drop-shadow(0 2px 8px rgba(26, 26, 26, 0.3));
          filter: drop-shadow(0 2px 8px rgba(26, 26, 26, 0.3));
}

.mmotop__link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  -webkit-transition: left 0.6s ease;
  transition: left 0.6s ease;
}

.content__mmotop:hover .mmotop__link {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-filter: drop-shadow(0 4px 16px rgba(178, 131, 66, 0.5)) brightness(1.15);
          filter: drop-shadow(0 4px 16px rgba(178, 131, 66, 0.5)) brightness(1.15);
}

.content__mmotop:hover .mmotop__link::before {
  left: 100%;
}

.content__news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 400px;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
  border-radius: 20px;
  border: 2px solid rgba(178, 131, 66, 0.3);
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.4), 0 4px 16px rgba(178, 131, 66, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  position: relative;
}

.content__news::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(178, 131, 66, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.content__news iframe {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  height: 100%;
  border: none;
  position: relative;
  z-index: 1;
}

.news__title {
  font-family: "reaver";
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
  letter-spacing: 0.02em;
  text-align: center;
  background: linear-gradient(135deg, #b28342 0%, #7c4f22 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 20px 0 20px 0;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(178, 131, 66, 0.3);
}

.news__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background: rgba(26, 26, 26, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  text-align: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 14px 16px;
  margin: 0 12px 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(178, 131, 66, 0.2);
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.news__block::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(178, 131, 66, 0.1), transparent);
  -webkit-transition: left 0.6s ease;
  transition: left 0.6s ease;
}

.news__block:hover {
  background: rgba(26, 26, 26, 0.8);
  border-color: rgba(178, 131, 66, 0.4);
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  box-shadow: 0 4px 16px rgba(178, 131, 66, 0.3), 0 2px 8px rgba(26, 26, 26, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.news__block:hover::before {
  left: 100%;
}

.news__block_img {
  width: 72px;
  height: 72px;
  min-width: 72px;
  min-height: 72px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-right: 14px;
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.3);
  border: 2px solid rgba(178, 131, 66, 0.3);
  position: relative;
  z-index: 2;
}

.news__block:hover .news__block_img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  border-color: rgba(178, 131, 66, 0.6);
  box-shadow: 0 4px 16px rgba(178, 131, 66, 0.4);
}

.news__block_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 6px;
  position: relative;
  z-index: 2;
}

.news__block_misc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3px;
}

.misc__title {
  font-family: "reaver";
  font-weight: 700;
  font-size: 10px;
  line-height: 14px;
  padding: 3px 8px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
}

.important {
  color: #fefefe;
  background: linear-gradient(135deg, #ED8A8A 0%, #E85A5A 100%);
  box-shadow: 0 2px 8px rgba(237, 138, 138, 0.4);
}

.news {
  color: #fefefe;
  background: linear-gradient(135deg, #8AC9ED 0%, #5BA8D4 100%);
  box-shadow: 0 2px 8px rgba(138, 201, 237, 0.4);
}

.promo {
  color: #fefefe;
  background: linear-gradient(135deg, #A4ED8A 0%, #7ED85A 100%);
  box-shadow: 0 2px 8px rgba(164, 237, 138, 0.4);
}

.event {
  color: #fefefe;
  background: linear-gradient(135deg, #B68AED 0%, #9A5AE8 100%);
  box-shadow: 0 2px 8px rgba(182, 138, 237, 0.4);
}

.news__block:hover .misc__title {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.misc__date {
  font-family: "Arial";
  font-weight: 400;
  font-size: 10px;
  line-height: 13px;
  color: #C4A882;
  opacity: 0.8;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news__block:hover .misc__date {
  opacity: 1;
  color: #fefefe;
}

.news__block_title {
  font-family: "reaver";
  font-weight: 700;
  font-size: 14px;
  line-height: 19px;
  width: 100%;
  color: #fefefe;
  margin: 0;
  letter-spacing: 0.02em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  text-shadow: 0 1px 3px rgba(26, 26, 26, 0.3);
}

.news__block_title:hover {
  color: #b28342;
  text-shadow: 0 2px 8px rgba(178, 131, 66, 0.5);
  -webkit-transform: translateX(3px);
          transform: translateX(3px);
}

.news__block_text {
  font-family: "Arial";
  font-weight: 400;
  font-size: 10px;
  line-height: 14px;
  color: #fefefe;
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  margin: 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.news__block:hover .news__block_text {
  color: #fefefe;
}

.alt {
  background: rgba(26, 26, 26, 0.4);
}

.alt:hover {
  background: rgba(26, 26, 26, 0.7);
}

.footer {
  z-index: 2;
  position: relative;
  margin: 0 auto;
  max-width: 1370px;
  width: 100%;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

@media (max-width: 1100px) {
  .footer {
    max-width: 100%;
    padding: 0 30px;
    overflow: hidden;
  }
}
.footer__container {
  position: relative;
  width: 100%;
  z-index: 10;
  margin: 70px 0 53px 0;
}

@media (max-width: 1100px) {
  .footer__container {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .footer__container {
    margin: 40px 0 53px 0;
  }
}
.footer__img {
  background: url("../img/footer.png") center no-repeat;
  max-width: 1127px;
  height: 52px;
  margin: 0 auto;
}

.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  font-family: "reaver";
  font-weight: 600;
  font-size: 14px;
  margin: 26px 0 29px 0;
}

@media (max-width: 1100px) {
  .footer__menu {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    line-height: 24px;
  }
}
.footer__menu_link {
  color: #AB885F;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer__menu_link:hover {
  color: #c38a49;
}

.footer__misc {
  font-family: "Arial";
  font-weight: 400;
  font-size: 14px;
  color: #897A68;
}

.footer__misc_license {
  margin-bottom: 10px;
}

.footer__bg {
  position: absolute;
  z-index: 1;
  bottom: 0;
  opacity: 0.2;
  background: url("../img/footer_bg.png") center no-repeat;
  width: 1920px;
  height: 550px;
}

.select {
  max-width: 50px;
  background-color: transparent;
  width: 100%;
  height: 100%;
  position: relative;
  font-family: "reaver";
  font-size: 16px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #b28342;
  cursor: pointer;
}

.select_link {
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  border: 1px solid #b28342;
  text-decoration: none;
}

/* Language Selector with Flags */
.lang-selector {
  position: relative;
  max-width: 70px;
  min-width: 60px;
  font-family: "reaver";
  z-index: 25;
}

.lang-selector__current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  background-color: rgba(26, 26, 26, 0.8);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #b28342;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  box-shadow: none;
}

.lang-selector__current:hover {
  background-color: rgba(26, 26, 26, 1);
}

.lang-flag {
  font-size: 28px;
  line-height: 1;
  display: inline-block;
  width: 33.6px;
  height: 25.2px;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.lang-flag.fi {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  font-size: 28px;
  width: 33.6px;
  height: 25.2px;
}

.lang-arrow {
  font-size: 10px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  color: #b28342;
}

.lang-selector.active .lang-arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.lang-selector__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 5px;
  background-color: #1a1a1a;
  border: none;
  border-radius: 4px;
  min-width: 100px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  z-index: 1000;
  box-shadow: 0 4px 8px rgba(26, 26, 26, 0.3);
}

.lang-selector.active .lang-selector__dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.lang-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 10px 14px;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  color: #b28342;
  font-size: 14px;
  font-weight: 600;
}

.lang-option:hover {
  background-color: rgba(178, 131, 66, 0.3);
}

.lang-option.active {
  background-color: rgba(178, 131, 66, 0.5);
}

.lang-text {
  font-family: "reaver";
  font-weight: 600;
}

.header__start {
  position: relative;
  background: url("../img/head.jpg") center center no-repeat;
  margin: 0 auto;
  max-width: 1920px;
  height: 473px;
}

@media (max-width: 700px) {
  .header__start {
    height: 450px;
  }
}
@media (max-width: 421px) {
  .header__start {
    height: 450px;
  }
}
.header__container_start {
  position: relative;
  z-index: 1;
  max-width: 1370px;
  height: 100%;
  margin: 0 auto;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1500px) {
  .header__container_start {
    padding: 0 30px;
  }
}
@media (max-width: 1380px) {
  .header__container_start {
    overflow: hidden;
    height: 100%;
  }
}
.header__social_start {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  top: 115px;
  right: 0;
  z-index: 50;
}

@media (max-width: 1200px) {
  .header__social_start {
    visibility: hidden;
    width: 0;
    height: 0;
  }
}
.header__character_start {
  position: absolute;
  background: url("../img/character_start.png") center no-repeat;
  top: 2px;
  left: 810px;
  width: 600px;
  height: 471px;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 1200px) {
  .header__character_start {
    left: 690px;
  }
}
@media (max-width: 1000px) {
  .header__character_start {
    left: 55%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
.about__container_start {
  height: 110px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}

@media (max-width: 1500px) {
  .about__container_start {
    -webkit-transform: scale(90%);
            transform: scale(90%);
  }
}
@media (max-width: 700px) {
  .about__container_start {
    -webkit-transform: scale(80%);
            transform: scale(80%);
  }
}
@media (max-width: 600px) {
  .about__container_start {
    -webkit-transform: scale(70%);
            transform: scale(70%);
  }
}
@media (max-width: 500px) {
  .about__container_start {
    -webkit-transform: scale(80%);
            transform: scale(80%);
  }
}
.about__start {
  background: url("../img/start.png") center no-repeat;
  width: 376px;
  height: 57px;
}
.about__container_start .about__start {
  background-image: url("../img/logo.png");
  background-size: contain;
  width: 350px;
  height: 180px;
}

.about__about {
  background: url("../img/start.png") center no-repeat;
  width: 376px;
  height: 57px;
  background-size: contain;
}

.about__container_start .about__about {
  background-image: url("../img/logo.png");
  background-size: contain;
  width: 350px;
  height: 180px;
}

.content__start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 80px;
  margin: 0 auto;
  width: 100%;
}

.content__about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
}

.about__intro {
  position: relative;
  padding: 30px 40px;
  background: rgba(26, 26, 26, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(178, 131, 66, 0.2);
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.about__intro_content {
  position: relative;
  z-index: 1;
}

.about__intro_text {
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #fefefe;
  text-align: left;
  margin: 0 0 16px 0;
  text-shadow: 0 1px 2px rgba(26, 26, 26, 0.3);
}

.about__section .about__intro_text:last-child {
  margin-bottom: 0;
}

.about__section {
  position: relative;
  padding: 40px;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
  border-radius: 20px;
  border: 2px solid rgba(178, 131, 66, 0.3);
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.4), 0 4px 16px rgba(178, 131, 66, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.about__section_title {
  font-family: "reaver", serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  background: linear-gradient(135deg, #b28342 0%, #7c4f22 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 30px 0;
  text-shadow: 0 2px 8px rgba(178, 131, 66, 0.3);
}

.about__list {
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #fefefe;
  text-align: left;
  margin: 0 0 20px 0;
  list-style-position: outside;
  text-shadow: 0 1px 2px rgba(26, 26, 26, 0.3);
}

.about__list li {
  margin-bottom: 8px;
}

.about__specs {
  position: relative;
  z-index: 1;
}

.specs__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  background: rgba(26, 26, 26, 0.3);
  border-radius: 12px;
  padding: 12px;
  border: 1px solid rgba(178, 131, 66, 0.2);
}

.specs__row {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr 1.3fr;
  gap: 6px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.specs__row:hover {
  background: rgba(26, 26, 26, 0.15);
  border-radius: 6px;
}

.specs__cell {
  padding: 8px 12px;
  background: rgba(26, 26, 26, 0.5);
  border-radius: 6px;
  border: 1px solid rgba(178, 131, 66, 0.2);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.specs__cell-label {
  font-family: "reaver", serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  color: #b28342;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  text-align: right;
  white-space: nowrap;
}

.specs__cell-value {
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #fefefe;
  text-shadow: 0 1px 2px rgba(26, 26, 26, 0.3);
  text-align: left;
  word-break: break-word;
}

.specs__cell-full {
  grid-column: 2 / -1;
}

.specs__row:hover .specs__cell {
  background: rgba(26, 26, 26, 0.65);
  border-color: rgba(178, 131, 66, 0.35);
}

@media (max-width: 1200px) {
  .specs__row {
    grid-template-columns: 1fr 1.5fr;
  }
  
  .specs__cell-full {
    grid-column: 2;
  }
}

@media (max-width: 768px) {
  .specs__row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  
  .specs__cell-full {
    grid-column: 1;
  }
  
  .specs__cell {
    padding: 8px 12px;
  }
  
  .specs__cell-label {
    font-size: 12px;
    line-height: 16px;
    text-align: left;
  }
  
  .specs__cell-value {
    font-size: 13px;
    line-height: 18px;
  }
}

.about__actions {
  position: relative;
  padding: 40px;
  background: rgba(26, 26, 26, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(178, 131, 66, 0.2);
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
}

.about__actions_content {
  position: relative;
  z-index: 1;
}

.about__actions_title {
  font-family: "reaver", serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  background: linear-gradient(135deg, #b28342 0%, #7c4f22 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0 20px 0;
  text-shadow: 0 2px 8px rgba(178, 131, 66, 0.3);
}

.about__actions_text {
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  color: #fefefe;
  margin: 0 0 30px 0;
  text-shadow: 0 1px 2px rgba(26, 26, 26, 0.3);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.about__actions_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 768px) {
  .content__about {
    padding: 0 15px;
    gap: 30px;
  }
  
  .about__intro {
    padding: 20px 25px;
  }
  
  .about__intro_text {
    font-size: 16px;
    line-height: 24px;
  }
  
  .about__section {
    padding: 25px 20px;
  }
  
  .about__section_title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 20px;
  }
  
  
  .about__actions {
    padding: 25px 20px;
  }
  
  .about__actions_title {
    font-size: 26px;
    line-height: 32px;
  }
  
  .about__actions_text {
    font-size: 16px;
    line-height: 24px;
  }
  
  .about__actions_buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  
  .about__actions_buttons .btn_start {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 550px) {
  .content__start {
    gap: 110px;
  }
}
.start__block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1370px;
  width: 100%;
  min-height: 177px;
  height: auto;
  border: 1px solid #b28342;
}

.block__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 24px;
  padding: 0 20px 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media (max-width: 760px) {
  .block__container {
    -webkit-transform: scale(90%);
            transform: scale(90%);
  }
}
@media (max-width: 500px) {
  .block__container {
    -webkit-transform: scale(80%);
            transform: scale(80%);
  }
}
.bls {
  top: -2px;
  margin-bottom: 0 !important;
}

.start__block:nth-child(1n) {
  background: url("../img/start1.jpg") center top repeat-y;
  background-size: auto auto;
}

.start__block:nth-child(2n) {
  background: url("../img/start2.jpg") center top repeat-y;
  background-size: auto auto;
}

.start__block:nth-child(3n) {
  background: url("../img/start3.jpg") center top repeat-y;
  background-size: auto auto;
}

/* Bloco no estilo da about__section (ex.: página Regras) */
.start__block--section {
  padding: 40px;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
  border-radius: 20px;
  border: 2px solid rgba(178, 131, 66, 0.3);
  box-shadow: 0 8px 32px rgba(26, 26, 26, 0.4), 0 4px 16px rgba(178, 131, 66, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.start__block--section .block__container {
  top: 0;
  padding: 0;
}

.start_title {
  font-family: "reaver";
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  text-align: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  color: #b28342;
  text-shadow: 0px 0px 10px rgba(26, 26, 26, 0.25);
  margin-bottom: 2px;
  white-space: nowrap;
}

.start_subtitle {
  max-width: 492px;
  font-family: "Arial";
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  color: #fefefe;
  margin-bottom: 23px;
}

.btn_start {
  font-family: "reaver";
  font-weight: 700;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 15px 45px;
  background-color: #b28342;
  color: #fefefe;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn_start:hover {
  background-color: #ff971f;
}

.start__download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 20px;
}

@media (max-width: 600px) {
  .start__download {
    -webkit-transform: scale(90%);
            transform: scale(90%);
    gap: 5px;
  }
}
@media (max-width: 500px) {
  .start__download {
    -webkit-transform: scale(90%);
            transform: scale(90%);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
}
.btn_start_dl {
  font-family: "reaver";
  font-weight: 700;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  padding: 15px 45px;
  color: #fefefe;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  white-space: nowrap;
}

.btn_start_dl:nth-child(1n) {
  background-color: #3CB9FF;
}

.btn_start_dl:nth-child(1n):hover {
  background-color: #1ba5f5;
}

.btn_start_dl:nth-child(2n) {
  background-color: #80BD63;
}

.btn_start_dl:nth-child(2n):hover {
  background-color: #66b143;
}

.btn_start_dl:nth-child(3n) {
  background-color: #fdd02a;
}

.btn_start_dl:nth-child(3n):hover {
  background-color: #edbd10;
}

.active {
  color: #ffb25a;
}

.about__top {
  background: url("../img/top.png") center no-repeat;
  width: 334px;
  height: 56px;
}

.content__top {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1170px;
  width: 100%;
  gap: 30px;
}

.top__block {
  background-color: #1a1a1a;
  border: 1px solid #b28342;
  min-width: 320px;
  max-width: 570px;
  width: 50%;
  max-height: 375px;
  font-family: "reaver";
  font-weight: 700;
  overflow: hidden;
}

.top__title {
  font-size: 24px;
  line-height: 35px;
  text-align: center;
  letter-spacing: 0.015em;
  color: #b28342;
  margin: 20px 0;
}

.top__stats {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 9%;
  color: #b28342;
  font-size: 16px;
  line-height: 23px;
  letter-spacing: 0.015em;
  font-size: 16px;
  height: 50px;
  border: solid #b28342;
  border-width: 1px 0;
  text-align: center;
}

@media (max-width: 1080px) {
  .top__stats {
    gap: 8%;
  }
}
@media (max-width: 700px) {
  .top__stats {
    gap: 5%;
  }
}
.top__stats_pos {
  width: 50px;
}

.top__stats_name {
  width: 180px;
}

.top__stats_class {
  width: 70px;
}

.top__stats_main {
  width: 100px;
}

.top__list {
  color: #fefefe;
  max-height: 250px;
  overflow-y: scroll;
  overflow-x: hidden;
}

.top__list::-webkit-scrollbar {
  width: 8px;
  position: absolute;
}

.top__list::-webkit-scrollbar-track {
  background-color: #523626;
  -webkit-box-shadow: inset 0 0 6px rgba(26, 26, 26, 0.3);
          box-shadow: inset 0 0 6px rgba(26, 26, 26, 0.3);
}

.top__list::-webkit-scrollbar-thumb {
  background-color: #1a1a1a;
}

.top__list_item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9%;
  height: 50px;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  letter-spacing: 0.015em;
  background-color: #66422F;
}

.top__list_item:nth-child(even) {
  background-color: transparent;
}

.item_pos {
  position: relative;
  left: 3px;
  width: 50px;
}

.item_name {
  position: relative;
  left: 4px;
  width: 180px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.item_class {
  position: relative;
  left: 5px;
  width: 70px;
}

.item_class_img {
  width: 30px;
  height: 30px;
}

.item_main {
  position: relative;
  left: 5px;
  width: 100px;
}

/* 404 Error Page Styles */
.error404 {
  position: relative;
  z-index: 10;
  min-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
  overflow: hidden;
}

.error404__container {
  position: relative;
  z-index: 12;
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.error404__content {
  position: relative;
  z-index: 13;
}

.error404__number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  -webkit-perspective: 1000px;
          perspective: 1000px;
}

.error404__digit {
  font-family: "reaver", serif;
  font-weight: 700;
  font-size: 180px;
  line-height: 1;
  background: linear-gradient(135deg, #b28342 0%, #7c4f22 50%, #b28342 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 40px rgba(178, 131, 66, 0.5);
  -webkit-animation: float 3s ease-in-out infinite;
          animation: float 3s ease-in-out infinite;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.error404__digit:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.error404__digit:nth-child(2) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.error404__digit:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.error404__digit--glow {
  -webkit-animation: float 3s ease-in-out infinite, pulse 2s ease-in-out infinite;
          animation: float 3s ease-in-out infinite, pulse 2s ease-in-out infinite;
  text-shadow: 0 0 60px rgba(178, 131, 66, 0.8), 0 0 100px rgba(178, 131, 66, 0.6);
}

@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0px) rotateY(0deg);
            transform: translateY(0px) rotateY(0deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotateY(5deg);
            transform: translateY(-20px) rotateY(5deg);
  }
}

@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0px) rotateY(0deg);
            transform: translateY(0px) rotateY(0deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotateY(5deg);
            transform: translateY(-20px) rotateY(5deg);
  }
}

@-webkit-keyframes pulse {
  0%, 100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0.9;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    opacity: 0.9;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

.error404__title {
  font-family: "reaver", serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  color: #b28342;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(178, 131, 66, 0.4), 0 0 30px rgba(178, 131, 66, 0.3);
  -webkit-animation: fadeInUp 0.8s ease-out 0.3s both;
          animation: fadeInUp 0.8s ease-out 0.3s both;
}

.error404__subtitle {
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: #fefefe;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 10px rgba(26, 26, 26, 0.3);
  -webkit-animation: fadeInUp 0.8s ease-out 0.5s both;
          animation: fadeInUp 0.8s ease-out 0.5s both;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.error404__buttons {
  position: relative;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-animation: fadeInUp 0.8s ease-out 0.7s both;
          animation: fadeInUp 0.8s ease-out 0.7s both;
}

.error404__btn {
  font-family: "reaver", serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  padding: 16px 40px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.error404__btn--primary {
  background: linear-gradient(135deg, #b28342 0%, #7c4f22 100%);
  color: #1A1209;
  box-shadow: 0 4px 20px rgba(178, 131, 66, 0.4), 0 0 30px rgba(178, 131, 66, 0.2);
}

.error404__btn--primary:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(178, 131, 66, 0.6), 0 0 40px rgba(178, 131, 66, 0.4);
}

.error404__btn--secondary {
  background: rgba(26, 26, 26, 0.8);
  color: #b28342;
  border: 2px solid rgba(178, 131, 66, 0.5);
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.3);
}

.error404__btn--secondary:hover {
  background: rgba(26, 26, 26, 1);
  border-color: rgba(178, 131, 66, 0.8);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(178, 131, 66, 0.4);
}

.error404__decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.error404__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, rgba(178, 131, 66, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  -webkit-animation: particleFloat 15s infinite linear;
          animation: particleFloat 15s infinite linear;
}

.error404__particle:nth-child(1) {
  left: 10%;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-duration: 20s;
          animation-duration: 20s;
}

.error404__particle:nth-child(2) {
  left: 50%;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
  -webkit-animation-duration: 25s;
          animation-duration: 25s;
}

.error404__particle:nth-child(3) {
  left: 80%;
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
  -webkit-animation-duration: 18s;
          animation-duration: 18s;
}

@-webkit-keyframes particleFloat {
  0% {
    bottom: -10px;
    opacity: 0;
    -webkit-transform: translateX(0) scale(0.5);
            transform: translateX(0) scale(0.5);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    bottom: 100%;
    opacity: 0;
    -webkit-transform: translateX(50px) scale(1.5);
            transform: translateX(50px) scale(1.5);
  }
}

@keyframes particleFloat {
  0% {
    bottom: -10px;
    opacity: 0;
    -webkit-transform: translateX(0) scale(0.5);
            transform: translateX(0) scale(0.5);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    bottom: 100%;
    opacity: 0;
    -webkit-transform: translateX(50px) scale(1.5);
            transform: translateX(50px) scale(1.5);
  }
}

@media (max-width: 768px) {
  .error404 {
    padding: 60px 20px;
    min-height: 60vh;
  }
  
  .error404__digit {
    font-size: 120px;
  }
  
  .error404__title {
    font-size: 36px;
    line-height: 44px;
  }
  
  .error404__subtitle {
    font-size: 18px;
    line-height: 26px;
  }
  
  .error404__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .error404__btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .error404__number {
    gap: 10px;
  }
  
  .error404__digit {
    font-size: 80px;
  }
  
  .error404__title {
    font-size: 28px;
    line-height: 36px;
  }
  
  .error404__subtitle {
    font-size: 16px;
    line-height: 24px;
  }
}