/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

html {
  scroll-behavior: smooth;
}

/* Links */

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

a:hover {
  text-decoration: none;
}

/* Common */

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

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

ul,
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

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

button,
input[type='submit'] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}

/* =========================
     FONTS
  ========================= */

@font-face {
  font-family: 'Rubik';
  src: url('/fontsMASEF3/rubik-variablefontMASEF3.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('/fontsMASEF3/montserrat-variablefontMASEF3.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border: 0;
  clip: rect(0 0 0 0);
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

.headerMASEF3 {
  background: #0e0e0e;
}

.headerMASEF3__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.headerMASEF3__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.headerMASEF3__logo img {
  display: block;
}

.headerMASEF3__nav-list {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.headerMASEF3__nav-list a {
  color: #fff;
  font-family: Rubik;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.headerMASEF3__btn {
  color: #fff;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 39px;
  background: #0080ff;
  padding: 16px 30px;
}

.headerMASEF3__burger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.headerMASEF3__burger span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

/* MOBILE */
.headerMASEF3__mobile {
  position: fixed;
  inset: 0;
  background: #0e0e0e;
  display: none;
  flex-direction: column;
  padding: 24px;
  z-index: 1000;
}

.headerMASEF3__mobile.is-open {
  display: flex;
}

.headerMASEF3__close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.headerMASEF3__mobile-nav {
  list-style: none;
  padding: 40px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.headerMASEF3__mobile-nav a {
  color: #fff;
  font-family: Rubik;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.headerMASEF3__mobile-btn {
  margin-top: auto;
  text-align: center;
  color: #fff;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 700;
  border-radius: 39px;
  background: #0080ff;
  padding: 16px 30px;
  text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .headerMASEF3__nav,
  .headerMASEF3__btn {
    display: none;
  }

  .headerMASEF3__burger {
    display: flex;
  }
}

.heroMASEF3 {
  position: relative;
  background: #0e0e0e;
  padding: 90px 0;
  overflow: hidden;
}

/* blue glow background */
.heroMASEF3__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 25% 50%,
    rgba(0, 128, 255, 0.55),
    transparent 55%
  );
  z-index: 0;
}

/* vectors */
.heroMASEF3__vector {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.heroMASEF3__vector--left {
  left: -60px;
  top: 50%;
  transform: translateY(-50%);
}

.heroMASEF3__vector--right {
  right: -60px;
  bottom: -40px;
}

/* layout */
.heroMASEF3 .container {
  position: relative;
  z-index: 2;
}

.heroMASEF3__grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
  gap: 64px;
}

/* image */
.heroMASEF3__image img {
  width: 100%;
  max-width: 420px;
  display: block;
  filter: drop-shadow(0 30px 30px rgba(0, 128, 255, 0.55));
}

/* text */
.heroMASEF3__content h1 {
  color: #fff;
  font-family: Montserrat;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
}

.heroMASEF3__content p {
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 32px;
  max-width: 520px;
}

/* button */
.heroMASEF3__btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 39px;
  background: #0080ff;
  color: #fff;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .heroMASEF3 {
    padding: 56px 0;
  }

  .heroMASEF3__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .heroMASEF3__content h1 {
    font-size: 32px;
  }

  /* image partially outside like mockup */
  .heroMASEF3__image {
    order: 2;
    margin-right: -80px;
  }

  .heroMASEF3__image img {
    width: 257px;
    position: absolute;
    bottom: -82px;
    right: -95px;
  }

  .heroMASEF3__content {
    order: 1;
  }

  .heroMASEF3__vector--left {
    left: -120px;
  }

  .heroMASEF3__vector--right {
    right: -120px;
  }
}

.gamesMASEF3 {
  background: #0e0e0e;
  padding: 80px 0;
}

/* TITLE */
.gamesMASEF3__title {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 48px;
}

/* LIST */
.gamesMASEF3__list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* CARD */
.gamesMASEF3__item {
  width: 360px;
  background: #1a1b2d;
  border: 1px solid #5a8fc5;
  border-radius: 30px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

/* IMAGE */
.gamesMASEF3__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 18px;
}

/* INFO ROW */
.gamesMASEF3__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.card__rating {
  color: #dcdcdc;
  text-align: justify;

  /* p_16 px */
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 137.5% */
}
/* GAME NAME */
.gamesMASEF3__name {
  color: #fff;
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

/* RATING */
.gamesMASEF3__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #dcdcdc;
  font-family: Roboto;
  font-size: 16px;
}

.gamesMASEF3__rating img {
  width: 16px;
  height: 16px;
}

.gamesMASEF3__btn {
  margin-top: auto;
  height: 46px;
  border-radius: 999px;
  background: #0080ff;
  color: #fff;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .gamesMASEF3__title {
    font-size: 30px;
  }

  .gamesMASEF3__item {
    width: 100%;
    max-width: 360px;
  }
}

.featuresMASEF3 {
  position: relative;
  background: #0e0e0e;
  padding: 80px 0;
  overflow: hidden;
}

/* декоративная полоса */
.featuresMASEF3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  background: url('/imagesMASEF3/vector3MASEF3.webp') no-repeat left top;
  background-size: contain;
  pointer-events: none;
}

.featuresMASEF3__title {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 48px;
}

.featuresMASEF3__list {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.featuresMASEF3__item {
  flex: 1 1 260px;
  max-width: 300px;
  padding: 28px 22px;
  border-radius: 30px;
  border: 1px solid #0080ff;
  background: linear-gradient(180deg, #000852 0%, #000 100%);
  text-align: center;
}

.featuresMASEF3__item h3 {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.featuresMASEF3__item p {
  color: #fff;
  text-align: center;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
}

/* MOBILE */
@media (max-width: 768px) {
  .featuresMASEF3 {
    padding: 60px 0;
  }

  .featuresMASEF3__title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .featuresMASEF3__item {
    max-width: 100%;
  }
}

.aboutMASEF3 {
  background: #0e0e0e;
  padding: 80px 0;
  color: #fff;
}

.aboutMASEF3__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.aboutMASEF3__title {
  color: #fff;
  font-family: Montserrat;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 24px;
}

.aboutMASEF3__content p {
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 18px;
}

.aboutMASEF3__image img {
  width: 100%;
  max-width: 520px;
  border-radius: 24px;
  display: block;
  margin-left: auto;
}

/* MOBILE */
@media (max-width: 768px) {
  .aboutMASEF3 {
    padding: 60px 0;
  }

  .aboutMASEF3__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .aboutMASEF3__title {
    font-size: 28px;
    text-align: left;
  }

  .aboutMASEF3__image img {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* SECTION */
.newGamesMASEF3 {
  position: relative;
  background: #0e0e0e;
  padding: 80px 0;
  overflow: hidden;
}

/* VECTORS */
.newGamesMASEF3__vector {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.newGamesMASEF3__vector--left {
  top: 40px;
  left: -60px;
  width: 220px;
}

.newGamesMASEF3__vector--right {
  bottom: 40px;
  right: -60px;
  width: 220px;
}

/* TITLE */
.newGamesMASEF3__title {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* LIST */
.newGamesMASEF3__list {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* CARD */
.newGamesMASEF3__card {
  position: relative;
  width: 340px;
  border-radius: 30px;
  border: 1px solid #5a8fc5;
  background: #1a1b2d;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

/* BADGE */
.newGamesMASEF3__badge {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 20px;
  border-radius: 30px 0 0 0;
  border: 2px solid #008cff;
  background: linear-gradient(265deg, #3161ff 3.83%, #003cff 44.19%);
  color: #fff;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

/* IMAGE */
.newGamesMASEF3__image {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* CONTENT */
.newGamesMASEF3__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* NAME */
.newGamesMASEF3__name {
  color: #fff;
  font-family: Montserrat;
  font-size: 18px;
  font-weight: 700;
}

/* RATING */
.newGamesMASEF3__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.newGamesMASEF3__rate {
  color: #dcdcdc;
  font-family: Roboto;
  font-size: 16px;
  font-weight: 400;
}

.newGamesMASEF3__rating img {
  width: 18px;
  height: 18px;
}

/* LINK BUTTON */
.newGamesMASEF3__link {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 30px;
  background: #0080ff;
  color: #fff;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.newGamesMASEF3__link:hover {
  opacity: 0.9;
}

/* MOBILE */
@media (max-width: 768px) {
  .newGamesMASEF3 {
    padding: 60px 0;
  }

  .newGamesMASEF3__title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .newGamesMASEF3__card {
    width: 100%;
    max-width: 360px;
  }

  .newGamesMASEF3__vector--left {
    width: 140px;
    left: -40px;
    top: 20px;
  }

  .newGamesMASEF3__vector--right {
    width: 140px;
    right: -40px;
    bottom: 20px;
  }
}

.faqMASEF3 {
  background: #000;
  padding: 80px 0;
}

.faqMASEF3__title {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 48px;
}

.faqMASEF3__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.faqMASEF3__item {
  border-radius: 37px;
  border: 1px solid #0080ff;
  background: linear-gradient(180deg, #000852 0%, #000 100%);
  overflow: hidden;
}

.faqMASEF3__question {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 32px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;

  color: #fff;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 400;
  line-height: 25px;
  text-align: left;
}

.faqMASEF3__icon {
  width: 22px;
  height: 2px;
  background: #0080ff;
  position: relative;
  flex-shrink: 0;
}

.faqMASEF3__icon::after {
  content: '';
  position: absolute;
  inset: 0;
  transform: rotate(90deg);
  background: #0080ff;
  transition: 0.3s;
}

.faqMASEF3__item.is-open .faqMASEF3__icon::after {
  transform: rotate(0deg);
  opacity: 0;
}

.faqMASEF3__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faqMASEF3__answer p {
  padding: 0 32px 28px;
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
}

/* MOBILE */
@media (max-width: 768px) {
  .faqMASEF3 {
    padding: 60px 0;
  }

  .faqMASEF3__title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .faqMASEF3__question {
    padding: 22px 24px;
    font-size: 18px;
  }

  .faqMASEF3__answer p {
    padding: 0 24px 24px;
  }
}

.criteriaMASEF3 {
  position: relative;
  background: #000;
  padding: 80px 0;
  overflow: hidden;
}

/* VECTOR */
.criteriaMASEF3__vector-left {
  position: absolute;
  left: 0;
  top: 120px;
  width: 140px;
  pointer-events: none;
}

/* TITLE */
.criteriaMASEF3__title {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* INTRO */
.criteriaMASEF3__intro {
  max-width: 860px;
  margin: 0 auto 48px;
  color: #fff;
  text-align: center;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
}

/* LIST */
.criteriaMASEF3__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */
.criteriaMASEF3__item {
  border-radius: 30px;
  border: 1px solid #0080ff;
  background: linear-gradient(180deg, #000852 0%, #000 100%);
  padding: 32px 26px 36px;
  text-align: center;
}

/* ICON */
.criteriaMASEF3__icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.criteriaMASEF3__icon img {
  width: 100%;
  object-fit: contain;
}

/* H3 */
.criteriaMASEF3__item h3 {
  color: #fff;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* TEXT */
.criteriaMASEF3__item p {
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 400;
  line-height: normal;
}

/* MOBILE */
@media (max-width: 1024px) {
  .criteriaMASEF3__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .criteriaMASEF3 {
    padding: 60px 0;
  }

  .criteriaMASEF3__vector-left {
    width: 90px;
    top: 40px;
  }

  .criteriaMASEF3__title {
    font-size: 28px;
  }

  .criteriaMASEF3__list {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .criteriaMASEF3__icon {
    width: 100px;
    height: 100px;
  }
}

/* SECTION */
.whyMASEF3 {
  position: relative;
  background: #000;
  padding: 80px 0;
  overflow: hidden;
}

/* TITLE */
.whyMASEF3__title {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 48px;
}

/* LIST */
.whyMASEF3__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ITEM (DESKTOP) */
.whyMASEF3__item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 36px 40px;
  border-radius: 30px;
  border: 1px solid #0080ff;
  background: #000;
}

/* NUMBER */
.whyMASEF3__num {
  color: #fff;
  font-family: Montserrat;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
}

/* CONTENT */
.whyMASEF3__content h3 {
  color: #fff;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.whyMASEF3__content p {
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

/* ========================= */
/* ======= MOBILE ========= */
/* ========================= */

@media (max-width: 768px) {
  .whyMASEF3 {
    padding: 60px 0;
  }

  /* TITLE WITH BORDER (as on screenshot) */
  .whyMASEF3__title {
    font-size: 28px;
    line-height: 1.25;
    padding: 16px 14px;
    border: 2px solid #0080ff;
    border-radius: 6px;
    margin: 0 auto 36px;
    max-width: calc(100% - 32px);
  }

  /* CARD */
  .whyMASEF3__item {
    grid-template-columns: 1fr 2.3fr;
    padding: 28px 22px 30px;
    border-radius: 32px;
    gap: 0;
  }

  /* NUMBER INLINE WITH TITLE */
  .whyMASEF3__num {
    font-size: 48px;
    margin-bottom: 8px;
  }

  .whyMASEF3__content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .whyMASEF3__content p {
    font-size: 15px;
    line-height: 1.45;
  }
}

.subscribeMASEF3 {
  background: #000;
  padding: 80px 0;
  color: #fff;
}

.subscribeMASEF3__box {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 40px;
  border-radius: 30px;
  border: 1px dashed #fff;
  text-align: center;
}

.subscribeMASEF3__title {
  font-family: Montserrat;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.subscribeMASEF3__text {
  font-family: Rubik;
  font-size: 15px;
  line-height: 1.4;
  opacity: 0.9;
  margin-bottom: 32px;
}

.subscribeMASEF3__form {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.subscribeMASEF3__form input {
  flex: 1;
  min-width: 260px;
  height: 52px;
  border-radius: 30px;
  border: none;
  padding: 0 22px;
  font-family: Rubik;
  font-size: 15px;
  outline: none;
  background-color: #fff;
  color: #000;
}

.subscribeMASEF3__form button {
  height: 52px;
  padding: 0 28px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  background: #0080ff;
  color: #fff;
  font-family: Montserrat;
  font-size: 15px;
  font-weight: 700;
  transition: 0.2s ease;
}

.subscribeMASEF3__form button:hover {
  background: #0066cc;
}

/* TOAST */
.subscribeMASEF3__toast {
  margin-top: 20px;
  font-family: Rubik;
  font-size: 14px;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: 0.3s ease;
}

.subscribeMASEF3__toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
  .subscribeMASEF3__box {
    padding: 32px 20px;
  }

  .subscribeMASEF3__title {
    font-size: 26px;
  }

  .subscribeMASEF3__form {
    flex-direction: column;
  }

  .subscribeMASEF3__form input {
    -webkit-appearance: none;
    appearance: none;

    box-sizing: border-box;
    width: 100%;

    min-height: 52px; /* ВАЖНО */
    height: 52px;

    padding: 0 22px;
    border-radius: 30px;
    border: none;

    font-family: Rubik;
    font-size: 15px;
    line-height: 52px; /* КРИТИЧНО для iOS */

    outline: none;
  }

  .subscribeMASEF3__form input,
  .subscribeMASEF3__form button {
    width: 100%;
  }
}

.footerMASEF3 {
  background: #0e0e0e;
  padding: 56px 0 70px;
  color: #fff;
}

.footerMASEF3__top {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
}

.footerMASEF3__left {
  display: grid;
  gap: 28px;
}

.footerMASEF3__brandrow {
  display: flex;
  align-items: center;
  gap: 28px;
}

.footerMASEF3__age {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  white-space: nowrap;
}

.footerMASEF3__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
}

.footerMASEF3__brand-icon {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footerMASEF3__brand-text {
  color: #fff;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.footerMASEF3__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px 36px;
}

.footerMASEF3__nav-list a {
  color: #fff;
  font-family: Rubik;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-transform: uppercase;
}

.footerMASEF3__contacts {
  justify-self: end;
  max-width: 420px;
}

.footerMASEF3__h2 {
  color: #fff;
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0 0 14px;
}

.footerMASEF3__contacts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footerMASEF3__contacts-list li {
  color: #fff;
  font-family: Rubik;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.footerMASEF3__label {
  font-weight: 700;
}

.footerMASEF3__value {
  font-weight: 400;
}

.footerMASEF3__link {
  color: #fff;
  text-decoration: none;
}

.footerMASEF3__bottom {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 34px 60px;
  align-items: start;
}

.footerMASEF3__p {
  color: #fff;
  font-family: Rubik;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

@media (max-width: 980px) {
  .footerMASEF3__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footerMASEF3__contacts {
    justify-self: start;
    max-width: none;
  }

  .footerMASEF3__nav-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 26px;
  }

  .footerMASEF3__bottom {
    grid-template-columns: 1fr 1fr;
    gap: 26px 34px;
  }

  .footerMASEF3__box--disclaimer {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .footerMASEF3 {
    padding: 44px 0 60px;
  }

  .footerMASEF3__brandrow {
    gap: 18px;
  }

  .footerMASEF3__nav-list a {
    font-size: 14px;
  }

  .footerMASEF3__bottom {
    grid-template-columns: 1fr 1fr;
    gap: 22px 26px;
  }
}

.gamesMASEF3__text {
  color: #fff;
  text-align: center;
  font-family: Rubik;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}

.gamesMASEF3__text-2 {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
}

.searchMASEF3 {
  position: relative;
  padding: 90px 0;
  background: #0e0e0e;
  overflow: hidden;
}

/* VECTOR */
.searchMASEF3__vector {
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  max-width: 40vw;
  pointer-events: none;
}

/* TITLE */
.searchMASEF3__title {
  margin-bottom: 56px;
  text-align: center;
  color: #fff;
  font-family: Montserrat;
  font-size: 36px;
  font-weight: 700;
}

/* LIST */
.searchMASEF3__list {
  display: flex;
  gap: 32px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

/* CARD */
.searchMASEF3__item {
  width: 100%;
  max-width: 360px;
  padding: 36px 28px 40px;
  border-radius: 30px;
  border: 1px solid #0080ff;
  background: linear-gradient(180deg, #000852 0%, #000 100%);
  text-align: center;
}

/* ICON */
.searchMASEF3__icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  object-fit: contain;
}

/* H3 */
.searchMASEF3__h3 {
  margin-bottom: 14px;
  color: #fff;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 700;
}

/* TEXT */
.searchMASEF3__p {
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
  .searchMASEF3 {
    padding: 70px 0;
  }

  .searchMASEF3__title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .searchMASEF3__list {
    gap: 24px;
  }

  .searchMASEF3__item {
    max-width: 100%;
    padding: 32px 22px 36px;
  }

  .searchMASEF3__icon {
    width: 56px;
    height: 56px;
  }
}

.genresMASEF3 {
  padding: 90px 0;
  background: #0e0e0e;
}

.genresMASEF3__title {
  text-align: center;
  color: #fff;
  font-family: Montserrat;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.genresMASEF3__subtitle {
  max-width: 880px;
  margin: 0 auto 56px;
  text-align: center;
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  line-height: 1.4;
}

.genresMASEF3__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.genresMASEF3__card {
  padding: 32px 28px;
  border-radius: 30px;
  border: 1px solid #0080ff;
  background: radial-gradient(120% 120% at 0% 0%, #001a7a 0%, transparent 60%),
    linear-gradient(180deg, #000852 0%, #000 100%);
}

.genresMASEF3__h3 {
  margin-bottom: 12px;
  color: #fff;
  font-family: Montserrat;
  font-size: 20px;
  font-weight: 700;
}

.genresMASEF3__desc {
  margin-bottom: 18px;
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  line-height: 1.4;
}

.genresMASEF3__examples {
  margin-bottom: 8px;
  color: #fff;
  font-family: Montserrat;
  font-size: 14px;
  font-weight: 700;
}

/* ВАЖНО: точки ВИДНЫ */
.genresMASEF3__examples-list {
  list-style: disc;
  padding-left: 20px;
  margin: 0;
}

.genresMASEF3__examples-list li {
  color: #fff;
  font-family: Rubik;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 6px;
}

/* ---------- MOBILE ---------- */
@media (max-width: 1024px) {
  .genresMASEF3__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .genresMASEF3 {
    padding: 70px 0;
  }

  .genresMASEF3__title {
    font-size: 28px;
  }

  .genresMASEF3__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.whyMASEF3__text {
  color: #fff;
  text-align: center;
  font-family: Rubik;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 30px;
}

.communityMASEF3 {
  position: relative;
  padding: 90px 0 80px;
  background: #000;
  overflow: hidden;
}

/* ---------- ВЕКТОРЫ ---------- */
.communityMASEF3__vector {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.communityMASEF3__vector--left {
  left: -60px;
  bottom: 40px;
  width: 260px;
}

.communityMASEF3__vector--right {
  right: -60px;
  top: 40px;
  width: 260px;
}

/* ---------- ТЕКСТ ---------- */
.communityMASEF3__title {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  font-family: Montserrat;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 14px;
}

.communityMASEF3__subtitle {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  line-height: 1.4;
}

/* ---------- СПИСОК ---------- */
.communityMASEF3__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.communityMASEF3__item {
  text-align: center;
}

/* ЦИФРЫ */
.communityMASEF3__number {
  display: block;
  margin-bottom: 10px;
  color: #0080ff;
  font-family: Montserrat;
  font-size: 42px;
  font-weight: 900;
  line-height: 25px;
}

/* ПОДПИСИ */
.communityMASEF3__label {
  display: block;
  color: #fff;
  font-family: Rubik;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

/* ---------- АДАПТИВ ---------- */
@media (max-width: 1024px) {
  .communityMASEF3__stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 48px;
  }
}

@media (max-width: 640px) {
  .communityMASEF3 {
    padding: 70px 0;
  }

  .communityMASEF3__title {
    font-size: 28px;
  }

  .communityMASEF3__stats {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .communityMASEF3__number {
    font-size: 38px;
  }

  .communityMASEF3__vector--left {
    width: 180px;
    left: -80px;
    bottom: 20px;
  }

  .communityMASEF3__vector--right {
    width: 180px;
    right: -80px;
    top: 20px;
  }
}

.contact-block {
  padding: 90px 0;
  background: radial-gradient(ellipse at center, #0a0a0a 0%, #000 70%);
  color: #fff;
}

.contact-title {
  text-align: center;
  font-family: Montserrat;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-subtitle {
  max-width: 820px;
  margin: 0 auto 50px;
  text-align: center;
  font-family: Rubik;
  font-size: 15px;
  line-height: 1.5;
  color: #eaeaea;
}

.contact-form {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.6);
  position: relative;
}

.contact-form label {
  display: block;
  margin-bottom: 22px;
}

.contact-form span {
  display: block;
  margin-bottom: 8px;
  font-family: Rubik;
  font-size: 14px;
  font-weight: 600;
}

.contact-form ::placeholder {
  color: #000;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid #e6e6e6;
  background: rgba(255, 255, 255, 0.5);
  font-family: Rubik;
  font-size: 15px;
  color: #000;
  outline: none;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

/* CONTACT INFO LINE */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin: 28px 0 30px;
  font-family: Rubik;
  font-size: 14px;
  color: #fff;
}

/* BUTTON */
.contact-btn {
  width: 100%;
  padding: 16px;
  border-radius: 30px;
  border: none;
  background: #0080ff;
  color: #fff;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s;
}

.contact-btn:hover {
  background: #1a8cff;
}

/* TOAST */
.contact-toast {
  position: absolute;
  left: 50%;
  bottom: -60px;
  transform: translateX(-50%);
  background: #0d6efd;
  color: #fff;
  padding: 12px 20px;
  border-radius: 20px;
  font-family: Rubik;
  font-size: 14px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
}

.contact-toast.is-visible {
  opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-form {
    padding: 28px 20px;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-info {
    flex-direction: column;
    gap: 10px;
  }
}

.terms {
  padding: 60px 0;
  background: #0e0e0e;
}

.terms-block {
  padding: 20px 50px;
  border-radius: 30px;
  border: 1px solid #fff;
}

.terms h1 {
  color: #fff;
  text-align: center;
  font-family: Montserrat;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 20px;
}

.terms h2 {
  color: #fff;
  font-family: Rubik;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 20px;
}

.terms p {
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.terms ul {
  list-style: disc;
}

.terms ul li {
  color: #fff;
  font-family: Rubik;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  list-style-type: disc;
  margin-left: 20px;
}

@media (max-width: 768px) {
  .terms {
    padding: 20px 0;
  }

  .terms h1 {
    color: #fff;
    text-align: center;
    font-family: Montserrat;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }

  .terms-block {
    padding: 0;
    border: none;
  }
}
