@font-face {
  font-family: "Agrandir";
  src: url("../fonts/AgrandirBold.woff") format("woff");
  font-weight: bold;
}
html body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}
html {
  background-color: black;
}
body {
  font-family: "Agrandir", sans-serif;
  color: #fff;
  font-weight: bold;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url("../images/bg.png") no-repeat center center;
  background-size: cover;
  z-index: -1;
  transform: translateZ(0);
  will-change: transform;
}

.container {
  display: block;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 15px;
}
.header {
  background: rgb(173, 64, 0);
  background: linear-gradient(
    0deg,
    rgba(173, 64, 0, 1) 25%,
    rgba(0, 0, 0, 1) 87%
  );
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  color: white;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 30px;
  cursor: pointer;
}

.burger-menu span {
  display: block;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.nav__link {
  font-weight: bold;
  color: white;
}

nav ul {
  display: flex;
  align-items: center;
  gap: 80px;
}
/* навигатор для мобилки */

.nav__mobile {
  position: fixed;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: left 0.3s ease-in-out;
  z-index: 2000;
}
.nav__mobile.active {
  left: 0;
}
.nav__mobile ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.mobile__nav-link a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  padding: 10px 15px;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.mobile__nav-link a:hover {
  color: #ff3131;
  text-shadow: 0px 0px 10px rgba(255, 49, 49, 0.8);
}
.logo-mobile {
  display: block;
  margin: 0 auto;
  width: 150px;
  font-size: 22px;
  font-weight: bold;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  z-index: 998;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav__mobile ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.nav__mobile li {
  margin: 20px 0;
}

.nav__mobile a {
  color: white;
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s;
}

.nav__mobile a:hover {
  color: #ff5050;
}
/* конец навигатора для мобилок */
.logo__img {
  width: 100px;
  height: 100px;
}
.main__block {
  padding: 150px 0 0 0;
}
.title {
  text-transform: uppercase;
  text-align: center;
  font-weight: bold;
  color: white;
  font-size: 40px;
}
.text {
  text-align: center;
  font-size: 18px;
  max-width: 50%;
  margin: 25px auto 0;
  padding: 20px;
  background: rgba(10, 10, 10, 0.8);
  color: #f8f8f8;
  font-family: Arial, sans-serif;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.6), 0 0 30px rgba(123, 0, 255, 0.6);
  line-height: 1.4;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.wrapper {
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.content__block {
  padding: 20px;
  width: 70%;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  transition: transform ease 0.3s;
}

.content__block:hover {
  transform: scale(1.01);
}

.content {
  margin: 0 auto;
}
.content__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
.content__wrapper a {
  cursor: pointer;
}
.content__title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.content__title span {
  font-weight: bold;
  font-size: 20px;
  background: linear-gradient(45deg, #ffd700, #ff8c00);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 5px rgba(255, 215, 0, 0.8), 0 0 10px rgba(255, 140, 0, 0.6);
  animation: glow 1s infinite alternate;
}
@keyframes glow {
  0% {
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.8), 0 0 10px rgba(255, 140, 0, 0.6);
  }
  100% {
    text-shadow: 0 0 8px rgba(255, 215, 0, 1), 0 0 15px rgba(255, 140, 0, 0.8);
  }
}
.content__img {
  margin: 0 auto;
  display: block;
  width: 45%;
  transition: all 0.4s ease-in-out;
}

.content__img:hover {
  filter: drop-shadow(0px -1px 30px rgba(207, 6, 123, 0.5));
  transform: translateY(-5px);
}
.content__img-expensive {
  margin: 10px 0;
}
.content__img-popular {
  max-width: 25%;
}
.main__skin-img_1 {
  max-width: 33%;
}
.content__img-width {
  max-width: 35%;
}
.content__text {
  /* text-align: center; */
  margin-top: 8px;
  text-align: start;
  font-size: 18px;
}
.content__img-kn {
  max-width: 33%;
}
.content__info {
  margin: 0 auto 50px;
  width: 55%;
  display: none;
}
.content__info img {
  display: block;
  margin: 0 auto;
  border-radius: 25px;
}
.description {
  width: 50%;
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  color: white;
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
}
.description__title {
  font-size: 22px;
  font-family: monospace;
  text-transform: uppercase;
}

.description__text {
  font-size: 22px;
  font-family: monospace;
}

.skins__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 50px;
  margin-bottom: 50px;
}
.skins__block {
  max-width: 300px;
  height: 228px;
  background: linear-gradient(145deg, #1e1e1e, #292929);
  border-radius: 10px;
  box-shadow: 4px 4px 8px rgba(180, 20, 20, 0.7),
    -4px -4px 8px rgba(134, 26, 26, 0.1);
  padding: 20px;
  transition: transform 0.2s ease-in-out;
}
.skins__block:hover {
  transform: translateY(-5px);
  background: linear-gradient(145deg, #6711ae, #c50606);
}
.skins__link {
  display: block;
  margin: 0 auto;
}
.skins__img {
  display: block;
  margin: 0 auto;
  width: 50%;
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
  margin-bottom: 10px;
}
.skins__img-width {
  width: 50%;
}
.skins__img:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.9));
}
.skins__text {
  font-size: 18px;
  /* margin-top: 10px; */
  text-align: center;
}
.divired__bottom {
  transform: rotate(360deg);
  width: 45%;
}

.footer {
  z-index: 1000;
  color: #ffff;
  /* min-height: 100px; */
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 24%,
    rgba(173, 64, 0, 1) 84%
  );
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__policy {
  display: flex;
  gap: 10px;
  flex-direction: column;
  width: 122px;
}
.footer__policy-link {
  font-size: 14px;
}

.footer__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.footer__logo p {
  font-size: 12px;
  margin-bottom: 10px;
}
.footer__logo-img {
  width: 70px;
  height: 70px;
}
.footer__socials img {
  width: 40px;
  height: 40px;
  margin-left: 10px;
}

@media (max-width: 1000px) {
  .title {
    font-size: 30px;
  }
  .text {
    width: 100%;
    font-size: 13px;
  }
  .content__block {
    width: 60%;
  }
  .description__text {
    font-size: 18px;
  }

  .skins__block {
    height: 190px;
  }
  .skins__text {
    font-size: 14px;
  }
  .content__img-popular {
    max-width: 35%;
  }
}
@media (max-width: 900px) {
  .content__title {
    font-size: 16px;
  }
  .content__img {
    width: 60%;
  }
  .main__skin-img_1 {
    width: 40%;
  }
}

@media (max-width: 800px) {
  .description__text {
    font-size: 16px;
  }
}
@media (max-width: 770px) {
  .logo-mobile {
    width: 100px;
    height: 100px;
  }
  .nav__mobile ul {
    gap: 5px;
  }
  .nav__mobile li {
    margin: 10px 0;
  }
  .mobile__nav-link a {
    font-size: 13px;
  }
  .nav__mobile {
    width: 70%;
  }

  .logo__img {
    width: 60px;
    height: 60px;
  }
  .burger-menu {
    width: 38px;
    height: 28px;
  }
  .main__block {
    padding: 120px 0 0 0;
    margin-bottom: 50px;
  }
  .title {
    margin-top: 0;
    font-size: 25px;
  }
  .text {
    max-width: 100%;
    font-size: 13px;
  }
  .wrapper {
    margin-top: 50px;
    padding: 0;
  }
  .logo__right {
    display: none;
  }
  .navbar ul {
    display: none;
  }
  .content__block {
    width: 100%;
  }
  .content__info {
    width: 80%;
  }
  .burger-menu {
    display: flex;
  }
  .nav__mobile {
    display: flex;
  }
  .logo {
    order: 1;
  }
  .content__img {
    width: 60%;
  }
  .content__img-expensive {
    max-width: 50%;
  }
  .content__img-expensive__kn {
    max-width: 40%;
  }
  .content__img-kn {
    max-width: 35%;
  }
  .content__img-kn_1 {
    max-width: 40%;
  }
  .content__img-popular-1 {
    max-width: 45%;
  }
  .content__img-popular {
    max-width: 35%;
  }
  .content__img-width {
    width: 35%;
  }
  .main__skin-img {
    width: 25%;
  }
  .description {
    width: 100%;
  }
  .description__text {
    font-size: 17px;
    text-align: center;
    line-height: 1.1;
  }

  .skins {
    margin-top: 30px;
  }
  .skins__wrapper {
    gap: 20px;
  }
  .skins__block {
    max-width: 200px;
    max-height: 150px;
  }
  .skins__text {
    font-size: 13px;
  }
}
@media (max-width: 760px) {
  .content__info {
    display: block;
  }
}

@media (max-width: 500px) {
  .logo-mobile {
    width: 100px;
    height: 100px;
  }
  .nav__mobile ul {
    gap: 5px;
  }
  .nav__mobile li {
    margin: 10px 0;
  }
  .mobile__nav-link a {
    font-size: 13px;
  }
  .description__title {
    font-size: 19px;
  }
  .logo__img {
    width: 50px;
    height: 50px;
  }
  .main__block {
    padding: 100px 0 0 0;
  }
  .main__skin-img {
    width: 52%;
  }
  .main__skin-img_1 {
    max-width: 35%;
  }
  .burger-menu {
    width: 28px;
    height: 19px;
  }
  .burger-menu span {
    height: 3px;
  }
  .skins__wrapper {
    gap: 10px;
  }
  .skins__block {
    max-width: 200px;
    min-height: 130px;
    padding: 5px;
  }
  .content__text {
    font-size: 14px;
  }
  .skins__img {
    width: 65%;
  }
  .skins__text {
    font-size: 11px;
  }
  .footer {
    padding: 5px 0;
  }
  .footer__policy {
    width: 73px;
    gap: 5px;
  }
  .footer__policy-link {
    font-size: 12px;
  }
  .footer__logo-img {
    width: 50px;
    height: 50px;
  }
  .footer__socials img {
    width: 30px;
    height: 30px;
    margin-left: 5px;
  }
  .footer__logo p {
    font-size: 12px;
    margin-bottom: 2px;
  }
  .footer__logo {
    margin-left: 10px;
  }
}

@media (max-width: 400px) {
  .content__img-popular-1 {
    max-width: 56%;
    margin: 10px 0;
  }
  .content__img-popular {
    max-width: 30%;
  }
  .content__block {
    gap: 0;
  }
  .footer__policy {
    width: 63px;
    gap: 5px;
  }
  .content__img-kn {
    max-width: 35%;
  }
  .content__img-kn_1 {
    max-width: 50%;
    margin: 10px 0;
  }
  .content__img-expensive {
    max-width: 60%;
  }
  .content__text {
    font-size: 13px;
    line-height: 1.3;
  }
  .main__skin-img {
    width: 55%;
  }
  .footer__logo p {
    font-size: 8px;
    margin-bottom: 2px;
  }

  .footer__socials img {
    width: 25px;
    height: 25px;
    margin-left: 5px;
  }
  .footer__logo p {
    font-size: 10px;
    margin-bottom: 2px;
  }
  .skins__text {
    font-size: 10px;
  }
  .skins__block {
    height: 130px;
  }
}

@media (max-height: 500px) {
  .logo__right {
    display: none;
  }
  .navbar ul {
    display: none;
  }
  .nav__mobile {
    width: 70%;
  }

  .logo__img {
    width: 60px;
    height: 60px;
  }
  .burger-menu {
    width: 38px;
    height: 28px;
  }

  .content__block {
    width: 100%;
  }
  .burger-menu {
    display: flex;
  }
  .nav__mobile {
    display: flex;
  }
  .logo {
    order: 1;
  }
  .content__img {
    width: 60%;
  }
  .content__img-width {
    width: 40%;
  }
  .description {
    width: 100%;
  }
  .skins__block {
    height: 130px;
  }
  .logo-mobile {
    width: 100px;
    height: 100px;
  }
  .nav__mobile ul {
    gap: 5px;
  }
  .nav__mobile li {
    margin: 10px 0;
  }
  .mobile__nav-link a {
    font-size: 13px;
  }
  .description__title {
    font-size: 19px;
  }
  .logo__img {
    width: 50px;
    height: 50px;
  }
  .burger-menu {
    width: 28px;
    height: 19px;
  }
  .burger-menu span {
    height: 3px;
  }
}
@media (max-height: 400px) {
  .skins__block {
    height: 140px;
  }
}
