@font-face {
  font-family: Inter;
  src: url(/fe7c9b9a-assets/fe7c9b9a-fonts/fe7c9b9a-inter_bold.woff2);
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url(/fe7c9b9a-assets/fe7c9b9a-fonts/fe7c9b9a-inter_medium.woff2);
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: Inter;
  src: url(/fe7c9b9a-assets/fe7c9b9a-fonts/fe7c9b9a-inter_regular.woff2);
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Roboto;
  src: url(/fe7c9b9a-assets/fe7c9b9a-fonts/fe7c9b9a-roboto_regular.woff2);
  font-display: swap;
}

@font-face {
  font-family: Fraunces;
  src: url(/fe7c9b9a-assets/fe7c9b9a-fonts/fe7c9b9a-fraunces_bold.woff2);
  font-display: swap;
}

  /* ===== Переменные ===== */
  :root {
    --container-width: 1280px;
    --container-step: 20px;
    --container-step-tablet: 15px;
    --container-step-mobile: 10px;
    --container: calc(var(--container-width) + (var(--container-step) * 2));
    --font-family: "Inter", sans-serif;
    --second-family: "Fraunces", sans-serif;
    --third-family: "Roboto", sans-serif;
  }
  
  /* ===== Базовые ===== */
  body {
    margin: 0;
    background: #2b2d42;
  }
  
  .fe7c9b9a-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--container-step);
    display: flex;
    flex-direction: column;
    gap: 30px;
    flex-wrap: wrap;
    box-sizing: border-box;
  }
  
  @media (max-width: 991px) {
    .fe7c9b9a-container {
      padding: 0 var(--container-step-tablet);
    }
  }
  
  @media (max-width: 600px) {
    .fe7c9b9a-container {
      padding: 0 var(--container-step-mobile);
    }
  }
  
  h1 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 70px;
    line-height: 90%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    margin: 0px;
  }
  
  @media (max-width: 991px) {
    h1 {
      font-size: 53px;
    }
  }
  
  @media (max-width: 600px) {
    h1 {
      font-size: 36px;
    }
  }
  
  h2 {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 48px;
    line-height: 90%;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    margin: 0px;
  }
  
  @media (max-width: 991px) {
    h2 {
      font-size: 38px;
    }
  }
  
  @media (max-width: 600px) {
    h2 {
      font-size: 28px;
    }
  }
  
  h3 {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0px;
  }
  
  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.8);
    margin: 0px;
  }
  
  @media (max-width: 991px) {
    p {
      font-size: 15px;
    }
  }
  
  @media (max-width: 600px) {
    p {
      font-size: 14px;
      letter-spacing: -0.01em;
    }
  }
  
  .fe7c9b9a-ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
  }
  
  a {
    text-decoration: none;
    color: unset;
  }
  
  img{
    max-width: 100%;
  }

  .fe7c9b9a-section {
    margin-bottom: 100px;
  }
  
  @media (max-width: 600px) {
    .fe7c9b9a-section {
      margin-bottom: 60px;
    }
  }
  

  .fe7c9b9a-btn{
    background: linear-gradient(90deg, #ffb347 0%, #ff7e5f 100%);
    width: 100%;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 120%;
    text-transform: uppercase;
    color: #000;
    border-radius: 8px;
    padding: 8px 0px;
    display: flex;
    justify-content: center;
  }

  .fe7c9b9a-gradient-border{
    position: relative;
    overflow: hidden;
    z-index: 0;
  }

  .fe7c9b9a-gradient-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
  }

  .fe7c9b9a-site-header{
    position: absolute;
    width: 100%;
  }

  .fe7c9b9a-header-inner{
    display: flex;
    flex-direction: column;
    padding: 16px;
    width: 100%;
    gap: 10px;
    box-sizing: border-box;
    border-radius: 20px 20px 0 0;
    background: rgba(51, 51, 51, 0.5);
  }

  .fe7c9b9a-header__top{
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }

  .fe7c9b9a-mobile{
    display: none;
  }

  .fe7c9b9a-nav-list{
    flex-direction: row;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.02em;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    gap: 32px;
  }

  .fe7c9b9a-responsibility-text{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: #fff;
  }

  .fe7c9b9a-responsibility-icon{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    color: #fff;
  }

  .fe7c9b9a-hero{
    margin-top: 20px;
  }

  .fe7c9b9a-hero-content{
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    padding-top: 102px;
    aspect-ratio: 1280 / 550;
    padding-bottom: 0px;
    background: linear-gradient(360deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 88.92%), url(/fe7c9b9a-assets/fe7c9b9a-img/fe7c9b9a-crescent_dunes_mosque_twilight.webp);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .fe7c9b9a-hero-description{
    max-width: 700px;
    color: #fff;
  }

  .fe7c9b9a-hero-btn{
    max-width: 700px;
  }

  .fe7c9b9a-game-item::before{
    padding: 2px;
    background: linear-gradient(#00D2FF, #7F5AF0);
    border-radius: 8px;
  }



  .fe7c9b9a-games-list{
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .fe7c9b9a-game-item{
    padding: 16px;
    max-width: 305px;
    box-sizing: border-box;
    width: 100%;
    gap: 16px;
    display: flex;
    flex-direction: column;
  }

  .fe7c9b9a-game-img{
    width: 100%;
  }

  .fe7c9b9a-game-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
  }

  .fe7c9b9a-game-rating{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;
    display: flex;
    gap: 4px;
  }

  .fe7c9b9a-promo-video{
    aspect-ratio: 1280 / 500;
    width: 100%;
    background: black;
  }

  .fe7c9b9a-ranking-wrapper{
    display: flex;
    gap: 20px;
    align-items: center;
    width: 100%;
  }

  .fe7c9b9a-ranking-icon{
    min-width: 0px;
    flex: 1;
    border-radius: 20px;
  }

  .fe7c9b9a-ranking-list{
    gap: 10px;
    flex: 1;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: -0.02em;
    text-align: center;
    color: #fff;
    width: 100%;
  }

  .fe7c9b9a-ranking-item{
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 16px;
    background: black;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }

  .fe7c9b9a-player-name{
    min-width: 135px;
    text-align: start;
  }

  .fe7c9b9a-progress-bar{
    width: 100%;
    height: 16px;
  }

  .fe7c9b9a-progress-fill{
    width: 100%;
    background: linear-gradient(90deg, #ff7905 0%, #fff705 100%);
    height: 100%;
    border-radius: 8px;
  }

  .fe7c9b9a-features-list{
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .fe7c9b9a-feature-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    border-radius: 8px;
    background: #000;
    padding: 45px 16px;
    box-sizing: border-box;
    width: 100%;
    max-width: 413px;
  }

  .fe7c9b9a-feature-icon{
    max-width: 160px;
    width: 100%;
  }

  .fe7c9b9a-feature-item::before{
    padding: 2px;
    background: linear-gradient(#00D2FF, #7F5AF0);
    border-radius: 8px;
  }

  .fe7c9b9a-about-game{
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 68.89%), url("/fe7c9b9a-assets/fe7c9b9a-img/fe7c9b9a-genie_lamp_desert_moon.webp");
    background-size: cover;
    background-position: bottom;
  }

  .fe7c9b9a-about-container{
    padding-top: 117px;
    padding-bottom: 117px;
  }

  .fe7c9b9a-about-wrapper{
    max-width: 620px;
    align-items: start;
    text-align: start;
  }

  .fe7c9b9a-about-content{
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .fe7c9b9a-about-content .fe7c9b9a-section-title{
    text-align: start;
  }

  .fe7c9b9a-contact-container{
    gap: 16px;
  }

  .fe7c9b9a-contact-content{
    display: flex;
    gap: 20px;
    width: 100%;
    align-items: start;
  }

  .fe7c9b9a-contact-wrapper{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .fe7c9b9a-contact-form{
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .fe7c9b9a-contact-form input{
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 14px;
    background: #000;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.6);
  }
  
  .fe7c9b9a-contact-form textarea{
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 14px;
    background: #000;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.02em;
    color: rgba(255, 255, 255, 0.6);
  }

  .fe7c9b9a-contact-info{
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .fe7c9b9a-contact-image{
    flex: 1;
    min-width: 0px;
  }

  .fe7c9b9a-legal-content{
    width: 100%;
    text-align: center;
    gap: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 8px;
    padding: 32px 0px;
    background: #000;
  }

  .fe7c9b9a-legal-content::before{
    padding: 2px;
    background: linear-gradient(#00D2FF, #7F5AF0);
    border-radius: 8px;
  }

  .fe7c9b9a-legal-text{
    max-width: 846px;
  }



  .fe7c9b9a-site-footer{
    background: #121212;
    padding: 20px 0px;
  }

  .fe7c9b9a-site-footer .fe7c9b9a-container{
    gap: 36px;
  }

  .fe7c9b9a-footer-info-list{
    gap: 20px;
    flex-direction: row;
  }

  .fe7c9b9a-footer-info-item{
    max-width: 305px;
    width: 100%;
  }

  .fe7c9b9a-footer-certifications{
    flex-direction: row;
    justify-content: space-between;
  }

  .fe7c9b9a-footer-bottom{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
  }

  .fe7c9b9a-footer-copy{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
  }

  .fe7c9b9a-footer-nav-list{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: -0.02em;
    text-transform: capitalize;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: rgba(255, 255, 255, 0.8);
    flex-direction: row;
    gap: 56px;
    flex-wrap: wrap-reverse;
    row-gap: 24px;
  }


  @media screen and (max-width: 991px) {
    .fe7c9b9a-main-nav{
      display: none;
    }

    .fe7c9b9a-desctop{
      display: none;
    }

    .fe7c9b9a-mobile{
      display: block;
    }

    .fe7c9b9a-ranking-wrapper{
      flex-direction: column;
    }

    .fe7c9b9a-footer-info-list{
      flex-wrap: wrap;
      justify-content: space-between;
    }
  }

  @media screen and (max-width: 600px) {
    .fe7c9b9a-logo-img{
      max-width: 194px;
    }

    .fe7c9b9a-footer-info-item{
      max-width: none;
      width: 100%;
    }

    .fe7c9b9a-game-item{
      flex-direction: column;
      max-width: 165px;
    }

    .fe7c9b9a-hero-content{
      padding-top: 143px;
      padding-bottom: 129px;
    }

    .fe7c9b9a-games-list{
      gap: 10px;
    }

    .fe7c9b9a-feature-icon{
      max-width: 120px;
    }

    .fe7c9b9a-feature-item{
      padding: 16px 8px;
    }

    .fe7c9b9a-about-container{
      padding-top: 40px;
      padding-bottom: 40px;
    }

    .fe7c9b9a-contact-content{
      flex-direction: column-reverse;
    }

    .fe7c9b9a-contact-wrapper{
      width: 100%;
    }

    .fe7c9b9a-eighteen_plus_icon{
      max-width: 42px;
    }

    .fe7c9b9a-gamcare_icon{
      max-width: 90px;
    }

    .fe7c9b9a-begambelaware_icon{
      max-width: 108px;
    }
  }

  .fe7c9b9a-about_page .fe7c9b9a-hero-content{
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(/fe7c9b9a-assets/fe7c9b9a-img/fe7c9b9a-genie_rising_from_lamp.webp);
    background-size: cover;
    background-position: center;
  }

  .fe7c9b9a-features__wrapper{
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .fe7c9b9a-features__image-wrapper{
    flex: 1;
  }

  .fe7c9b9a-features__content{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .fe7c9b9a-features__item{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .fe7c9b9a-features__subtitle{
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: #fff;
  }

  .fe7c9b9a-about__container{
    gap: 16px;
  }

  .fe7c9b9a-about__block{
    display: flex;
    gap: 20px;
    align-items: center;
  }

  .fe7c9b9a-about__text{
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .fe7c9b9a-about__subtitle{
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: -0.02em;
    color: #fff;
  }

  .fe7c9b9a-about__image-wrapper{
    flex: 1;
  }


  @media screen and (max-width: 991px) {
    .fe7c9b9a-about__block--intro{
      flex-direction: column;
    }

    .fe7c9b9a-about__block--community{
      flex-direction: column-reverse;
    }

    .fe7c9b9a-about__image{
      width: 100%;
    }

    .fe7c9b9a-about__image-wrapper{
      width: 100%;
    }

    .fe7c9b9a-features__wrapper{
      flex-direction: column;
    }
  }

  .fe7c9b9a-conatct_us_page{
    margin-top: 20px;
  }

  .fe7c9b9a-contact-section{
    padding-top: 62px;
  }

  .fe7c9b9a-contact-title{
    margin: 60px 0px;
  }

  .fe7c9b9a-contact-text{
    text-align: center;
    max-width: 630px;
    margin: auto;
  }

  @media screen and (max-width: 991px) {
    .fe7c9b9a-contact-section{
      padding-top: 83px;
    }
  }

  @media screen and (max-width: 600px) {
    .fe7c9b9a-contact-title{
      margin: 40px 0px;
    }
  }



  .fe7c9b9a-policy-section{
    margin-top: 20px;
  }

  .fe7c9b9a-policy-section{
    padding-top: 62px;
  }

  .fe7c9b9a-policy-title{
    margin: 60px 0px;
  }

  @media screen and (max-width: 991px) {
    .fe7c9b9a-policy-section{
      padding-top: 83px;
    }
  }

  @media screen and (max-width: 600px) {
    .fe7c9b9a-policy-title{
      margin: 40px 0px;
    }
  }

  .fe7c9b9a-policy-content{
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #fff;
  }

  .fe7c9b9a-policy-list{
    gap: 19px;
  }

  .fe7c9b9a-policy-content p{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    color: #fff;
  }

  .fe7c9b9a-policy-sublist{
    list-style: disc;
    padding-left: 20px;
  }


  .fe7c9b9a-games_page .fe7c9b9a-ranking-wrapper{
    padding: 80px;
    box-sizing: border-box;
    background: url(/fe7c9b9a-assets/fe7c9b9a-img/fe7c9b9a-lantern_mosque_starry_night.webp);
    background-size: cover;
    background-position: center;
    border-radius: 20px;
  }

  @media screen and (max-width: 600px) {
    .fe7c9b9a-games_page .fe7c9b9a-ranking-wrapper{
      padding: 50px 10px;
    }
  }

  .fe7c9b9a-reviews__list{
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .fe7c9b9a-review{
    max-width: 413px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 24px 16px;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .fe7c9b9a-review__footer{
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .fe7c9b9a-review__stars{
    flex-direction: row;
    gap: 4px;
  }

  .fe7c9b9a-review__author{
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.02em;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
  }

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

  /* === Burger Button === */
.fe7c9b9a-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 19px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 100;
}

.fe7c9b9a-burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* === Burger Active (Turns into X) === */
.fe7c9b9a-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.fe7c9b9a-burger.active span:nth-child(2) {
  opacity: 0;
}

.fe7c9b9a-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* === Show burger only on mobile === */
@media (max-width: 991px) {
  .fe7c9b9a-burger {
    display: flex;
  }

  .fe7c9b9a-main-nav {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 20, 0.96);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 90;
  }

  .fe7c9b9a-main-nav.open {
    opacity: 1;
    visibility: visible;
  }

  .fe7c9b9a-nav-list {
    flex-direction: column;
    gap: 40px;
  }

  .fe7c9b9a-nav-link {
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 32px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    position: relative;
    transition: color 0.3s ease;
  }

  .fe7c9b9a-nav-link::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #ffb347 0%, #ff7e5f 100%);
    transition: width 0.3s ease;
  }

  .fe7c9b9a-nav-link:hover::after {
    width: 100%;
  }

  /* fade background behind menu */
  body.menu-open {
    overflow: hidden;
  }
}

/* === Age Popup === */
.fe7c9b9a-age-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.fe7c9b9a-age-popup.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.fe7c9b9a-age-popup__content {
  background: #000;
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  box-sizing: border-box;
}

.fe7c9b9a-age-popup__icon {
  display: inline-block;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  color: #fff;
  background: linear-gradient(90deg, #ffb347 0%, #ff7e5f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fe7c9b9a-age-popup__title {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 28px;
  color: #fff;
  margin: 16px 0 8px;
}

.fe7c9b9a-age-popup__text {
  font-family: var(--font-family);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.fe7c9b9a-age-popup__btn {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  border: none;
  cursor: pointer;
}

body.popup-open {
  overflow: hidden;
}

.fe7c9b9a-policy-subitem{
  display: list-item;
}

iframe{
  border: 0px;
}