@charset "UTF-8";
textarea {
  width: 0px;
  height: 0px;
  all: unset;
}

footer {
  all: unset;
}

p, span, div {
  letter-spacing: 1px;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  padding: 0;
  margin: 0;
  letter-spacing: 1px;
}

p {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
}

a {
  margin: 0;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
}

a,
a:active,
a:hover {
  text-decoration: none;
}

li {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  appearance: none;
  cursor: pointer;
  /* Другие свойства по необходимости */
  box-sizing: border-box;
}

div {
  box-sizing: border-box;
}

input {
  all: unset;
}

a:focus,
a:active {
  text-decoration: none;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  text-decoration: none; /* Убирает подчеркивание */
  color: inherit; /* Устанавливает цвет ссылки такой же, как у родительского элемента */
  font-weight: normal; /* Устанавливает обычный вес шрифта */
  background: none; /* Убирает фоновый цвет */
  border: none; /* Убирает границу */
  outline: none; /* Убирает обводку */
}

.site-header {
  background: #fff;
  padding: 24px 40px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.site-header__container {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__logo {
  font-size: 20px;
  font-weight: 700;
  color: #111;
}
.site-header__logo span {
  color: #74a49d;
}
.site-header__nav {
  display: flex;
  gap: 36px;
}
.site-header__link {
  font-size: 15px;
  text-decoration: none;
  color: #333;
  transition: opacity 0.2s ease;
}
.site-header__link:hover {
  opacity: 0.6;
}
.site-header__lang {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-header__lang .lang-btn {
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  color: #666;
  padding: 2px 6px;
}
.site-header__lang .lang-btn--active {
  color: #000;
  font-weight: bold;
  text-decoration: underline;
}
.site-header__lang span {
  color: #aaa;
}

.burger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.burger-btn span {
  display: block;
  height: 3px;
  background: #111;
  border-radius: 1px;
}

.site-header__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .site-header__menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 40px;
    gap: 20px;
    display: none;
  }
  .site-header__menu.active {
    display: flex;
  }
}

@media (max-width: 768px) {
  .burger-btn {
    display: flex;
  }
  .site-header__nav {
    flex-direction: column;
    gap: 16px;
  }
  .site-header__lang {
    justify-content: flex-start;
  }
}
.hero {
  display: flex;
  flex-wrap: wrap;
  min-height: 90vh;
}
.hero__image {
  flex: 1 1 50%;
}
.hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
}
.hero__logo {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 50px;
}
.hero__logo span {
  color: #74a49d;
}
.hero__heading {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 24px;
}
.hero__tag {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 13px;
  color: #999999;
  letter-spacing: 2px;
  text-transform: uppercase;
  flex-shrink: 0;
}
.hero__title {
  font-size: 62px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}
.hero__text {
  font-size: 23px;
  line-height: 1.6;
  color: #444444;
  max-width: 540px;
}

@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
  }
  .hero__image, .hero__content {
    flex: 1 1 100%;
  }
  .hero__content {
    padding: 60px 30px;
  }
  .hero__heading {
    flex-direction: row;
  }
}
.article-intro {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 60px 80px;
  gap: 60px;
  background: #ffffff;
  color: #111;
}
.article-intro__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}
.article-intro__meta > hr {
  width: 100%;
  border: none;
  border-top: 1px solid #ddd;
  margin: 12px 0;
}
.article-intro__photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}
.article-intro__info {
  font-size: 15px;
  line-height: 1.6;
  max-width: 260px;
}
.article-intro__text {
  font-size: 17px;
  line-height: 1.7;
  max-width: 760px;
}
.article-intro__readtime {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: #555;
}

@media (max-width: 1024px) {
  .article-intro {
    flex-direction: column;
    padding: 40px 30px;
  }
  .article-intro__meta,
  .article-intro__text {
    flex: 1 1 100%;
  }
  .article-intro__meta {
    align-items: flex-start;
  }
}
.photo-section {
  padding: 80px 0;
  display: flex;
  justify-content: center;
  background: #fff;
}
.photo-section__image {
  object-fit: cover;
  width: 100%;
  height: 600px;
  display: block;
  border-radius: 6px;
}

.about {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  padding: 80px;
  gap: 60px;
  background: #fff;
}
.about__image {
  flex-shrink: 0;
  width: 480px;
}
.about__image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}
.about__text {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}
.about__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .about {
    flex-direction: column;
    padding: 60px 30px;
  }
  .about__image {
    width: 100%;
    max-width: 480px;
  }
}
.advantages {
  padding: 50px 60px 80px;
  background: #fff;
}
.advantages__title {
  font-size: 32px;
  font-weight: 700;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
.advantages__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.adv-card {
  width: 300px;
  display: flex;
  flex-direction: column;
}
.adv-card__tag {
  font-size: 12px;
  text-transform: uppercase;
  color: #666;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.adv-card__img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 16px;
}
.adv-card__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 24px;
}
.adv-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.adv-card__line {
  flex: 1;
  height: 1px;
  background-color: #000;
}
.adv-card__arrow {
  font-size: 18px;
  margin-left: 12px;
}

@media (max-width: 1024px) {
  .advantages__list {
    flex-direction: column;
    align-items: center;
  }
}
.feedback-block {
  background: #f4e4dd;
  padding: 80px 20px;
  text-align: center;
  color: #111;
}
.feedback-block__inner {
  max-width: 800px;
  margin: 0 auto;
}
.feedback-block__icon {
  font-size: 52px;
  margin-bottom: 20px;
}
.feedback-block__title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}
.feedback-block__text {
  font-size: 18px;
  letter-spacing: 0.5px;
  color: #444;
  text-transform: uppercase;
}

.info-split {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  padding: 80px 60px;
  background: #fff;
  align-items: center;
}

.info-split__accent {
  flex: 1 1 30%;
  text-align: center;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  padding: 40px 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

.info-split__text {
  flex: 1 1 60%;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.info-split__text p {
  margin-bottom: 18px;
}
.info-split__text p em {
  font-style: italic;
}
.info-split__text p strong {
  font-weight: 600;
}

@media (max-width: 1024px) {
  .info-split {
    flex-direction: column;
    padding: 60px 30px;
  }
  .info-split__accent {
    border-left: none;
    border-right: none;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
  }
  .info-split__text {
    flex: 1 1 100%;
  }
}
.content-block {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  padding: 80px;
  gap: 60px;
  background: #fff;
}
.content-block__image {
  flex-shrink: 0;
  width: 480px;
}
.content-block__image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}
.content-block__text {
  max-width: 640px;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}
.content-block__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .content-block {
    flex-direction: column;
    padding: 60px 30px;
  }
  .content-block__image {
    width: 100%;
    max-width: 480px;
  }
}
.next-block {
  background: #a8c8c1;
  padding: 30px 20px;
  text-align: center;
}
.next-block__text {
  font-size: 15px;
  font-weight: 400;
  color: #111;
  font-family: inherit;
}

.site-footer {
  background-color: #111;
  padding: 40px 20px;
  font-size: 14px;
  color: #ccc;
}
.site-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.site-footer__logo {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  color: #fff;
}
.site-footer__logo span {
  color: #ccc;
  font-weight: 400;
}
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.site-footer__link {
  color: #aaa;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.site-footer__link:hover {
  color: #fff;
}
.site-footer__copy {
  color: #555;
  font-size: 12px;
  margin-top: 10px;
}

.hero-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 220px;
  background-color: #fff;
  color: #fff;
}
@media (max-width: 740px) {
  .hero-pages {
    align-items: center;
    justify-content: center;
  }
}
.hero-pages__title {
  font-size: 56px;
  text-transform: uppercase;
  text-align: center;
}

.about-page {
  width: 100%;
}
.about-page__hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 64px 0 48px 0;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .about-page__hero {
    flex-direction: column;
    padding: 38px 0 18px 0;
    gap: 22px;
  }
}
.about-page__hero .about-page__img {
  flex: 0 0 400px;
}
.about-page__hero .about-page__img img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 6px 38px rgba(120, 40, 60, 0.11);
  background: #f4f4ff;
}
.about-page__hero .about-page__content {
  flex: 1 1 0;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .about-page__hero .about-page__content {
    align-items: center;
    text-align: center;
  }
}
.about-page__hero__title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #821c33;
  margin-bottom: 26px;
}
.about-page__hero__desc {
  font-size: 1.17rem;
  color: #5d2633;
  font-weight: 600;
  line-height: 1.48;
}
.about-page__features {
  width: 100%;
  background: #fff8f3;
  padding: 46px 0;
  display: flex;
  justify-content: center;
}
.about-page__features-list {
  display: flex;
  gap: 44px;
  max-width: 1000px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .about-page__features-list {
    flex-direction: column;
    gap: 22px;
  }
}
.about-page__feature {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 20px rgba(130, 28, 51, 0.09);
  padding: 30px 36px;
  min-width: 240px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
@media (max-width: 600px) {
  .about-page__feature {
    padding: 18px 12px;
    min-width: 90vw;
  }
}
.about-page__feature-icon {
  font-size: 2.3rem;
  margin-bottom: 10px;
  color: #e84163;
}
.about-page__feature-title {
  font-weight: 800;
  color: #821c33;
  font-size: 1.15rem;
}
.about-page__feature-desc {
  color: #5d2633;
  font-size: 1.01rem;
  font-weight: 500;
  opacity: 0.95;
}
.about-page__history {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 54px 0 24px 0;
  text-align: center;
}
.about-page__history-title {
  font-size: 2rem;
  font-weight: 800;
  color: #7a1433;
  margin-bottom: 32px;
}
.about-page__history-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.about-page__history-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #ffe3e3;
  border-radius: 18px;
  padding: 14px 28px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #7a1433;
}
@media (max-width: 600px) {
  .about-page__history-item {
    flex-direction: column;
    gap: 6px;
    font-size: 1rem;
    padding: 10px 12px;
  }
}
.about-page__history-year {
  font-weight: 900;
  color: #e84163;
  font-size: 1.18em;
  margin-right: 8px;
}
.about-page__history-desc {
  color: #821c33;
  font-weight: 600;
}

.menu {
  padding: 80px 20px;
  max-width: 700px;
  margin: 0 auto;
  font-family: inherit;
}
.menu__header {
  text-align: center;
  margin-bottom: 60px;
}
.menu__header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}
.menu__header p {
  font-size: 16px;
  color: #666;
}
.menu__section {
  margin-bottom: 50px;
}
.menu__section h2 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
}
.menu__list {
  list-style: none;
  padding: 0;
}
.menu__list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e1e1e1;
}
.menu__list li span:first-child {
  font-weight: 500;
  color: #222;
}
.menu__list li span:last-child {
  color: #666;
  font-size: 14px;
}

.privacy {
  max-width: 800px;
  padding: 80px 20px;
  margin: 0 auto;
  font-family: inherit;
}
.privacy__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
}
.privacy__section {
  margin-bottom: 40px;
}
.privacy__section-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}
.privacy__section-text {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.contact-form {
  padding: 80px 20px;
  text-align: center;
}
.contact-form form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form form input,
.contact-form form textarea {
  padding: 12px 16px;
  font-size: 15px;
  border: 1px solid #ccc;
  background: #fafafa;
  color: #111;
  font-family: inherit;
  resize: vertical;
}
.contact-form form input:focus,
.contact-form form textarea:focus {
  border-color: #999;
  outline: none;
}
.contact-form form button {
  padding: 12px 20px;
  font-size: 15px;
  text-transform: uppercase;
  background: #111;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.contact-form form button:hover {
  opacity: 0.85;
}
.contact-form .popup {
  margin-top: 20px;
  font-size: 14px;
  color: #008000;
  transition: opacity 0.3s ease;
}
.contact-form .popup.hidden {
  display: none;
}

@font-face {
  font-family: "Sora";
  src: url("/Sora-VariableFont_wght.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
body {
  box-sizing: border-box;
  font-family: "Sora";
  background-color: #fff;
}

html {
  scroll-behavior: smooth;
}

.main {
  flex: 1 1 auto;
  color: #333333;
}

.wrapper {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.games-main {
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}

.deepshadow {
  text-shadow: 0 -1px 0 #fff, 0 1px 0 #2e2e2e, 0 2px 0 #2c2c2c, 0 3px 0 #2a2a2a, 0 4px 0 #282828, 0 5px 0 #262626, 0 6px 0 #242424, 0 7px 0 #222, 0 8px 0 #202020, 0 9px 0 #1e1e1e, 0 10px 0 #1c1c1c, 0 11px 0 #1a1a1a, 0 22px 30px rgba(0, 0, 0, 0.9);
}

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

.subtitile__img {
  width: 100px;
}

/*# sourceMappingURL=main.css.map */
