@font-face {
  font-family: Coda_Caption;
  src: url(/fun-casinogames-assets/fun-casinogames-fonts/fun-casinogames-codacaption-extrabold.woff2);
  display: swap;
}
  
@font-face {
  font-family: Roboto;
  src: url(/fun-casinogames-assets/fun-casinogames-fonts/fun-casinogames-roboto-regular.woff2);
  display: swap;
  font-weight: 400;
}

@font-face {
  font-family: Roboto;
  src: url(/fun-casinogames-assets/fun-casinogames-fonts/fun-casinogames-roboto-semibold.woff2);
  display: swap;
  font-weight: 600;
}

@font-face {
  font-family: Roboto;
  src: url(/fun-casinogames-assets/fun-casinogames-fonts/fun-casinogames-roboto-bold.woff2);
  display: swap;
  font-weight: 800;
}

  /* ===== Переменные ===== */
  :root {
    --container-width: 1240px;
    --container-step: 20px;
    --container-step-tablet: 18px;
    --container-step-mobile: 16px;
    --container: calc(var(--container-width) + (var(--container-step) * 2));
    --font-family: "Roboto", sans-serif;
    --second-family: "Coda_Caption", sans-serif;
  }
  
  /* ===== Базовые ===== */
  body {
    margin: 0;
    background: #090637;
  }
  
  .fun-casinogames-container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--container-step);
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-wrap: wrap;
    box-sizing: border-box;
  }
  
  @media (max-width: 991px) {
    .fun-casinogames-container {
      padding: 0 var(--container-step-tablet);
    }
  }
  
  @media (max-width: 600px) {
    .fun-casinogames-container {
      padding: 0 var(--container-step-mobile);
    }
  }
  
  h1 {
    font-family: var(--second-family);
    font-weight: 800;
    font-size: 52px;
    line-height: 130%;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    text-shadow: 0 4px 4px #8f3aff, 0 0 4px #ff28f4;
    margin: 0px;
  }
  
  @media (max-width: 991px) {
    h1 {
      font-size: 32px;
    }
  }
  
  @media (max-width: 600px) {
    h1 {
      font-size: 26px;
    }
  }
  
  h2 {
    font-family: var(--second-family);
    font-weight: 800;
    font-size: 38px;
    line-height: 130%;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-shadow: 0 0 4px #ff28f4, 0 4px 4px #8f3aff;
    margin: 0px;
    color: #fff;
    text-align: center;
  }
  
  @media (max-width: 991px) {
    h2 {
      font-size: 20px;
    }
  }
  
  @media (max-width: 600px) {
    h2 {
      font-size: 18px;
      text-align: center;
    }
  }
  
  h3 {
    font-family: var(--second-family);
    font-weight: 800;
    font-size: 22px;
    line-height: 130%;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    margin: 0px;
  }
  
  @media (max-width: 991px) {
    h3 {
      font-size: 20px;
    }
  }
  
  @media (max-width: 600px) {
    h3 {
      font-size: 18px;
    }
  }
  
  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: rgba(255, 255, 255, 0.7);
    margin: 0px;
    text-align: center;
  }
  
  @media (max-width: 991px) {
    p {
      font-size: 15px;
    }
  }
  
  @media (max-width: 600px) {
    p {
      font-size: 14px;
    }
  }
  
  ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
  }
  
  a {
    text-decoration: none;
    color: unset;
  }
  
  section {
    padding: 80px 0px;
  }
  
  @media (max-width: 600px) {
    section {
      padding: 40px 0px;
    }
  }

  .fun-casinogames-btn{
    box-shadow: inset 0 0 8px 0 #ff28f4;
    background: #fff;
    font-family: var(--second-family);
    font-weight: 800;
    font-size: 16px;
    line-height: 130%;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #3e0e7d;
    border-radius: 10px;
    border: 0px;
  }

  .fun-casinogames-btn:hover{
    box-shadow: inset 0 0 24px 0 #ff28f4;
  }

  .fun-casinogames-btn:active{
    background: #cac8ed;
  }


  .fun-casinogames-content_container{
    border: 1px solid #ff28f4;
    border-radius: 20px;
    padding: 40px;
    background: #3e0e7d;
    width: 100%;
    box-sizing: border-box;
  }

  @media screen and (max-width: 600px) {
    .fun-casinogames-content_container{
      padding: 20px;
    }
  }

  header{
    padding: 25px 0px;
  }

  header .fun-casinogames-container{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .fun-casinogames-nav-list{
    flex-direction: row;
    gap: 41px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    text-align: right;
    color: #fff;
  }

  .fun-casinogames-breadcrumbs-link.fun-casinogames-active{
    text-decoration: underline;
  }


  /* === Бургер (по умолчанию скрыт) === */
.fun-casinogames-burger{
  display: none;
  position: relative;
  width: 40px;
  height: 28px;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 1100;
  position: relative;
}
.fun-casinogames-burger span,
.fun-casinogames-burger span::before,
.fun-casinogames-burger span::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 3px;
  background: #fff;
}
.fun-casinogames-burger span{ top: 50%; transform: translateY(-50%); }
.fun-casinogames-burger span::before{ top: -10px; }
.fun-casinogames-burger span::after{ top: 10px; }

.fun-casinogames-site-header.fun-casinogames-menu-open .fun-casinogames-burger span{ background: transparent; box-shadow: none; }
.fun-casinogames-site-header.fun-casinogames-menu-open .fun-casinogames-burger span::before{
  top: 0; transform: rotate(45deg);
}
.fun-casinogames-site-header.fun-casinogames-menu-open .fun-casinogames-burger span::after{
  top: 0; transform: rotate(-45deg);
}

@media (max-width: 751px){
  .fun-casinogames-burger { 
    display: inline-block;
  }

  .fun-casinogames-header-nav{
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(80vw, 320px);
    background: #3e0e7d;
    border-left: 1px solid #ff28f4;
    box-shadow: -6px 0 20px rgba(143, 58, 255, 0.4), 0 0 12px #ff28f4 inset;
    padding: 90px 24px 24px;
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 1000;
  }

  header .fun-casinogames-container{
    gap: 0;
  }

  .fun-casinogames-nav-list{
    flex-direction: column;
    gap: 20px;
    font-size: 16px;
    text-align: left;
  }
  .fun-casinogames-nav-link{
    display: block;
    padding: 10px 0;
    color: #fff;
  }
  .fun-casinogames-nav-link:active{ opacity: .8; }

  .fun-casinogames-site-header.fun-casinogames-menu-open .fun-casinogames-header-nav{
    transform: translateX(0);
  }

  html.fun-casinogames-menu-lock, body.fun-casinogames-menu-lock{ overflow: hidden; }
}

  .fun-casinogames-hero-section{
    padding: 100px 0px;
    background: url('/fun-casinogames-assets/fun-casinogames-img/fun-casinogames-hero_bg.webp');
    background-size: cover;
    background-position: center;
  }

  .fun-casinogames-experience-section{
    background: url('/fun-casinogames-assets/fun-casinogames-img/fun-casinogames-night_japanese_city.webp');
    background-size: cover;
    background-position: center;
  }

  .fun-casinogames-hero-text{
    text-align: center;
  }

  .fun-casinogames-gap-24-14{
    gap: 24px !important;
    display: flex;
    flex-direction: column;
  }

  .fun-casinogames-gap-20-14{
    gap: 20px !important;
    display: flex;
    flex-direction: column;
  }

  @media screen and (max-width: 600px) {
    .fun-casinogames-gap-24-14{
      gap: 14px !important;
    }

    .fun-casinogames-gap-20-14{
      gap: 14px !important;
    }
  }

  .fun-casinogames-feature-list{
    flex-direction: row;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .fun-casinogames-feature-item{
    align-items: center;
    padding: 20px;
    max-width: 386px;
    width: 100%;
  }

  .fun-casinogames-feature-content h3{
    font-size: 24px;
    margin-bottom: 16px;
  }

  .fun-casinogames-exp-block:first-of-type{
    flex-direction: column;
  }

  .fun-casinogames-exp-block{
    flex-direction: row;
    display: flex;
    gap: 38px;
    align-items: center;
  }

  .fun-casinogames-exp-content{
    align-items: start;
    flex: 1;
  }

  .fun-casinogames-exp-block img{
    flex: 1;
    min-width: 0px;
    border-radius: 20px;
  }

  .fun-casinogames-exp-content p{
    text-align: start;
  }

  .fun-casinogames-exp-content h3{
    text-align: start;
  }
  
  .fun-casinogames-btn-play{
    padding: 14px 83px;
  }

  .fun-casinogames-about-container{
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
  }

  .fun-casinogames-about-container img{
    max-width: 281px;
    width: 100%;
    height: auto;
    flex-shrink: 3;
    min-width: 0px;
  }

  .fun-casinogames-about-content{
    max-width: 919px;
    width: 100%;
  }

  .fun-casinogames-about-container h2{
    text-align: start;
  }

  .fun-casinogames-about-container h3{
    text-align: start;
  }

  .fun-casinogames-about-container p{
    text-align: start;
  }

  footer{
    background: #050324;
    padding: 40px 0px;
  }

  footer h3{
    text-align: start;
    margin-bottom: 14px;
    align-self: start;
  }

  footer p{
    text-align: start;
  }

  footer span{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0.06em;
    text-align: center;
    color: #a1a1a1;
  }

  .fun-casinogames-footer-container{
    align-items: center;
    gap: 24px;
  }

  .fun-casinogames-footer-block{
    display: flex;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
  }

  .fun-casinogames-footer-subblock{
    flex: 1;
  }

  .fun-casinogames-footer-block:last-of-type .fun-casinogames-footer-subblock{
    max-width: 560px;
  }

  .fun-casinogames-footer-nav-list{
    flex-direction: row;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 130%;
    letter-spacing: 0.06em;
    color: #f1f1f1;
    gap: 40px;
  }

  .fun-casinogames-footer-logos{
    flex-direction: row;
    gap: 14px;
    width: 100%;
    justify-content: space-between;
    max-width: 700px;
    align-items: center;
  }

@media screen and (max-width: 600px) {
  .fun-casinogames-header-logo{
    max-width: 208px;
  }

  .fun-casinogames-exp-block:first-of-type{
    flex-direction: column;
  }

  .fun-casinogames-exp-block:last-of-type{
    flex-direction: column;
  }

  .fun-casinogames-exp-block{
    flex-direction: column-reverse;
  }

  .fun-casinogames-exp-block img{
    width: 100%;
  }

  .fun-casinogames-exp-content{
    align-items: center;
  }

  .fun-casinogames-exp-content h3{
    text-align: center;
  }

  .fun-casinogames-exp-content p{
    text-align: center;
  }

  .fun-casinogames-about-container{
    flex-direction: column;
  }

  .fun-casinogames-about-container img{
    max-width: 186px;
  }

  .fun-casinogames-about-container h2{
    text-align: center;
  }

  .fun-casinogames-about-container h3{
    text-align: center;
  }

  .fun-casinogames-about-container p{
    text-align: center;
  }

  .fun-casinogames-footer-block{
    flex-direction: column;
  }

  .fun-casinogames-footer-logos{
    flex-direction: column;
    align-items: center;
  }

  .fun-casinogames-footer-nav-list{
    flex-direction: column;
  }
}

.fun-casinogames-terms.fun-casinogames-disclaimer .fun-casinogames-hero-section{
  padding: 40px 0px;
}

.fun-casinogames-terms.fun-casinogames-disclaimer h1{
  font-size: 72px;
}

.fun-casinogames-terms ul{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 15px;
  gap: 24px;
  list-style: decimal;
}

.fun-casinogames-terms.fun-casinogames-disclaimer ul{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  gap: 24px;
  list-style: decimal;
}

.fun-casinogames-terms h1{
  word-break: break-all;
}

.fun-casinogames-terms h2{
  text-align: start;
}

.fun-casinogames-terms h3{
  text-align: start;
}

.fun-casinogames-terms p{
  text-align: start;
}

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