@font-face {
  font-family: "Roboto", sans-serif;
  src: url('/fonts/Roboto-Regular.ttf');

}
@font-face {
  font-family: "Birthsrone", system-ui;
  src: url('/fonts/Birthstone-Regular.ttf');
}
@font-face {
  font-family: "TenorSans";
  src: url('/fonts/TenorSans-Regular.ttf');
}
body {
  font-family: "Roboto", "TenorSans" sans-serif;
  font-size: 16px;
  color: #525252;
  background: #fdfff5;
}
* {
  box-sizing: border-box;
}

.logo {
  font-family: "Birthstone", system-ui;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  color: #2c5959;
}
.navbar {
  padding: 1rem 0;
  position: relative;
  width: 15%;
}
@media (min-width: 993px) {
  .navbar {
    width: 52%;
  }
}
@media (min-width: 1200px) {
  .navbar {
    width: 55%;
  }
}
.menu {
  font-family: "TenorSans", sans-serif;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.menu li {
  margin-right: 1rem;
}
.menu li a {
  color: #2c5959;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
}
@media (max-width: 992px) {
  .menu {
    display: none;
    flex-direction: column;
    transition: all 2s linear;
  }
  .menu.active {
    display: flex;
    position: absolute;
    right: 0;
    width: 370px;
    height: 300px;
    right: 0;
    top: 5px;
    background: hsla(180, 34%, 26%, 1);
    padding: 16px;
    border-radius: 16px;
    z-index: 5;
  }
  .menu li {
    margin: 0.5rem 0;
  }
  .menu li a {
    color: #fff;
  }
  .hamburger {
    display: block;
  }
  .close_icon {
    background-color: #00000063;
    padding: 8px;
    border-radius: 8px;
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.primary_button {
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 25px;
  background: #518383;
  font-family: "TenorSans", sans-serif;
}
.primary_button:hover {
  background-color: #4f8e90;
}
.content {
  font-family: "TenorSans", sans-serif;
  position: relative;
}
.rotating_symbol {
  width: 333px;
  height: 264px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0px;
  animation: rotate 8s linear infinite;
}
.rotating_symbol svg {
  width: 100%;
  height: 100%;
}
.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: #f3f5ec;
}
@media screen and (min-width: 993px) {
  .rotating_symbol svg {
    width: 333px;
    height: 264px;
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.section_title {
  padding: 100px 0 100px;
  position: relative;
  z-index: 1;
  color: #2c5959;
  font-family: "TenorSans", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.section_image {
  width: 100%;
}
.section_image img {
  border-radius: 16px;
  width: 100%;
  height: auto;
  margin: 40px 0;
}
@media (min-width: 993px) {
  .section_image img {
    height: 500px;
    width: 100%;
    object-fit: cover;
  }
}
.gap-24 {
  gap: 24px;
}
.content_block {
  padding: 0 10px;
}
.content_block__title {
  color: #525252;
  font-family: "TenorSans", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.content_block__text,
.content_block__text ul li {
  color: #525252;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.content_block__list {
  list-style: none;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.game-card {
  background: #e3e8e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  flex-grow: 1;
}
.game-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
}
.game-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.game-title {
  color: #525252;
  font-family: "TenorSans", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 16px;
}
.game-description {
  color: #727272;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 187.5% */
  margin-bottom: 16px;
}
.game-price {
  color: #525252;
  font-family: "TenorSans", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 187.5% */
  margin-bottom: 16px;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 54px;
  /* background: #82847a; */
  background: #518383;
  padding: 40px 0;
}
.footer {
  gap: 40px;
}
footer .logo {
  color: #fff;
  font-size: 36px;
}
.contact_info {
  gap: 16px;
}
.contact_info__title {
  color: #fff;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px; /* 150% */
}
@media (min-width: 1200px) {
  footer .logo {
    width: 15%;
  }
  .footer_menu__items a {
    margin-right: 16px;
  }
}
.footer_menu__items a {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  display: inline-block;
  margin-right: 10px;
}
.contact_info__link {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.video_list {
  width: 100%;
}
.video_mask {
  border-radius: 16px;
  overflow: hidden; 
}

.video_mask_frame {
  width: 300px;
  height: 100%;
}