@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;
  border-bottom: 1px solid #eee;
  padding: 16px 20px;
  position: relative;
}
.site-header__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-header__logo-link {
  font-size: 24px;
  font-weight: bold;
  color: #ff5a00;
  text-decoration: none;
}
.site-header__nav {
  display: flex;
  gap: 25px;
  align-items: center;
}
.site-header__nav .site-header__link {
  text-decoration: none;
  font-weight: 500;
  color: #333;
}
.site-header__nav .site-header__link:hover {
  color: #ff5a00;
}
.site-header__nav .site-header__lang--mobile {
  display: none;
}
.site-header__lang {
  display: flex;
  gap: 10px;
}
.site-header__lang .lang-btn {
  border: 1px solid #ccc;
  background: #fff;
  padding: 5px 12px;
  cursor: pointer;
  font-weight: 600;
}
.site-header__lang .lang-btn--active {
  background: #ff5a00;
  color: #fff;
  border-color: #ff5a00;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}
.burger span {
  height: 2px;
  width: 100%;
  background: #333;
}

@media (max-width: 768px) {
  .site-header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    display: none;
  }
  .site-header__nav .site-header__lang--mobile {
    display: flex;
    gap: 10px;
    margin-top: 15px;
  }
  .site-header__nav.show {
    display: flex;
  }
  .site-header__lang {
    display: none;
  }
  .burger {
    display: flex;
  }
}
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffe082;
  background-image: url("/assets/img/sun-bg.webp");
  background-size: cover;
  background-position: center;
  height: 400px;
  padding: 100px 20px;
  text-align: center;
}
.hero__container {
  max-width: 800px;
  margin: 0 auto;
}
.hero__badge {
  background-color: #ff5722;
  color: white;
  padding: 10px 20px;
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 5px;
  margin-bottom: 20px;
}
.hero__title {
  font-size: 52px;
  color: #0d1321;
  font-weight: 700;
}
.hero__title .hero__price-old {
  text-decoration: line-through;
  color: #d32f2f;
  margin: 0 5px;
}
.hero__title .hero__price-new {
  color: #f4511e;
  font-weight: 800;
}

.stats {
  background-color: #0066cc;
  padding: 50px 20px;
  color: white;
}
.stats__container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
  text-align: center;
}
.stats__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 1;
  min-width: 200px;
}
.stats__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}
.stats__value {
  font-size: 24px;
  font-weight: 700;
}
.stats__label {
  font-size: 16px;
  opacity: 0.9;
  margin-top: 5px;
}

.languages {
  background-color: #f5f7fb;
  padding: 80px 20px;
  text-align: center;
}
.languages__container {
  max-width: 1100px;
  margin: 0 auto;
}
.languages__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}
.languages__grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.languages__card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 20px;
  width: 140px;
  transition: transform 0.2s ease;
}
.languages__card img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}
.languages__card p {
  font-weight: 600;
  color: #333;
}
.languages__card:hover {
  transform: translateY(-5px);
}
.languages__text {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
}

.flag {
  width: 48px;
  height: 36px;
  margin: 0 auto 10px;
  border-radius: 4px;
  overflow: hidden;
}
.flag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.method {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}
.method__container {
  max-width: 1200px;
  margin: 0 auto;
}
.method__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}
.method__subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #555;
}
.method__content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
.method__side {
  flex: 1;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left;
}
.method__image {
  max-width: 280px;
}
.method__image img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.method__point {
  display: flex;
  gap: 12px;
}
.method__point p {
  margin: 4px 0 0;
  font-size: 15px;
  color: #444;
}
.method__point strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
  color: #000;
}
.method__dot {
  width: 10px;
  height: 10px;
  background: #aaa;
  border-radius: 50%;
  margin-top: 6px;
}
.method__dot.orange {
  background: #ff5722;
}

.app {
  background-color: #ff5a00;
  color: #fff;
}
.app__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.app__image {
  flex: 1;
  min-width: 300px;
}
.app__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.app__content {
  flex: 1;
  min-width: 320px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.app__phone {
  background: #fff;
  color: #000;
  border-radius: 24px;
  padding: 30px 20px;
  width: 180px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}
.app__phone .app__rating {
  font-size: 48px;
  font-weight: 500;
}
.app__phone .app__stars {
  font-size: 20px;
  color: #ff5a00;
  margin: 10px 0;
}
.app__phone .app__source {
  font-size: 14px;
  color: #555;
}
.app__text h2 {
  font-size: 28px;
  margin-bottom: 10px;
}
.app__subtitle {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}
.app__desc {
  max-width: 400px;
  line-height: 1.6;
  color: #f5f5f5;
}

.site-footer {
  background: #111;
  color: #ccc;
  padding: 60px 20px 30px;
  font-size: 16px;
}
.site-footer__container {
  max-width: 1280px;
  margin: 0 auto;
}
.site-footer__columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.site-footer__col {
  flex: 1 1 280px;
  min-width: 220px;
}
.site-footer__heading {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
  font-weight: 600;
}
.site-footer__text {
  color: #999;
  line-height: 1.6;
  margin-bottom: 10px;
}
.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__links li {
  margin-bottom: 8px;
}
.site-footer__links li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
.site-footer__links li a:hover {
  color: #fff;
}
.site-footer__bottom {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 20px;
  font-size: 14px;
  color: #666;
}

.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 {
  color: #222;
}
.about__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
}
.about__hero {
  background: #f5f7fb;
  text-align: center;
  padding: 80px 20px;
}
.about__hero .about__title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}
.about__hero .about__subtitle {
  font-size: 18px;
  color: #555;
}
.about__mission {
  background: #fff;
}
.about__mission h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
.about__mission p {
  font-size: 16px;
  line-height: 1.6;
}
.about__values {
  background: #eef2f7;
}
.about__values .about__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  text-align: center;
}
.about__values .about__card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  max-width: 300px;
}
.about__values .about__card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  color: #ff5a00;
}
.about__values .about__card p {
  font-size: 15px;
  color: #444;
}
.about__team {
  background: #fff;
}
.about__team h2 {
  font-size: 28px;
  margin-bottom: 20px;
}
.about__team p {
  font-size: 16px;
  line-height: 1.6;
}

.why__intro {
  background: linear-gradient(135deg, #fdfdfd, #f5f5f5);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.why__intro h1 {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}
.why__intro p {
  font-size: 20px;
  color: #555;
  max-width: 740px;
  margin: 0 auto;
}
.why__intro::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 50%;
}
.why__reasons {
  background: #fff;
  padding: 80px 20px 100px;
  position: relative;
}
.why__reasons::before {
  content: "";
  position: absolute;
  left: -60px;
  top: 100px;
  width: 120px;
  height: 120px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 50%;
}
.why__container {
  max-width: 1240px;
  margin: 0 auto;
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 60px;
}
.why__card {
  background: #fafafa;
  border: 1px solid #e3e3e3;
  padding: 32px 28px;
  text-align: left;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.why__card::before {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ddd, #f2f2f2);
  border-radius: 50%;
}
.why__card h3 {
  font-size: 22px;
  font-weight: 600;
  color: #1d1d1d;
  margin-bottom: 14px;
}
.why__card p {
  font-size: 17px;
  color: #444;
  line-height: 1.7;
}
@media (max-width: 600px) {
  .why__intro h1 {
    font-size: 32px;
  }
  .why__card {
    padding: 24px 20px;
  }
  .why__grid {
    gap: 24px;
  }
}

.privacy {
  padding: 60px 20px;
  background: #f9f9f9;
  color: #222;
}
.privacy__container {
  max-width: 960px;
  margin: 0 auto;
}
.privacy__container__title {
  font-size: 24px;
  margin: 40px 0 10px;
  color: #111;
}
.privacy__container__text {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #444;
}

.contact {
  font-family: "Segoe UI", sans-serif;
  color: #222;
}
.contact__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}
.contact__header {
  background: #f5f7fb;
  text-align: center;
  padding: 80px 20px;
}
.contact__header h1 {
  font-size: 32px;
  margin-bottom: 10px;
}
.contact__header p {
  font-size: 16px;
  color: #555;
}
.contact__main {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}
.contact__form {
  flex: 1;
  width: 600px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact__form label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
}
.contact__form input,
.contact__form textarea {
  margin-top: 6px;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.contact__form button {
  padding: 12px;
  background: #ff5a00;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.contact__form button:hover {
  background: #e04800;
}
.contact__info {
  flex: 1;
  min-width: 280px;
}
.contact__info h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.contact__info p {
  margin-bottom: 10px;
}

.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup.show {
  display: flex;
}
.popup__content {
  background: white;
  padding: 30px 40px;
  border-radius: 10px;
  text-align: center;
}
.popup__content p {
  margin-bottom: 20px;
}
.popup__content button {
  padding: 10px 20px;
  border: none;
  background: #ff5a00;
  color: white;
  font-weight: 600;
  cursor: pointer;
  border-radius: 6px;
}

.slider {
  background: #fff;
  padding: 80px 20px;
}
.slider__container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider__arrow {
  background: none;
  border: none;
  font-size: 32px;
  color: #aaa;
  cursor: pointer;
  transition: color 0.2s;
}
.slider__arrow:hover {
  color: #ff5a00;
}
.slider__arrow--left {
  margin-right: 20px;
}
.slider__arrow--right {
  margin-left: 20px;
}
.slider__content {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-align: left;
  width: 100%;
}
.slide.active {
  opacity: 1;
  pointer-events: all;
  position: relative;
}
.slide__img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.slide__info {
  max-width: 600px;
}
.slide__name {
  font-size: 18px;
  font-weight: 600;
}
.slide__site {
  color: #999;
  margin: 4px 0 12px;
}
.slide__text {
  font-style: italic;
  color: #444;
  line-height: 1.5;
}

@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 */
