@font-face {
  font-family: Poppins;
  src: url("/newspainbet-assets/newspainbet-fonts/newspainbet-poppins_bold.woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url("/newspainbet-assets/newspainbet-fonts/newspainbet-poppins_regular.woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url("/newspainbet-assets/newspainbet-fonts/newspainbet-poppins_light.woff2");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: Odor Mean Chey;
  src: url("/newspainbet-assets/newspainbet-fonts/newspainbet-odor_mean_chey_regular.woff2");
  font-display: swap;
}

  /* ===== Переменные ===== */
  :root {
    --container-width: 1240px;
    --container-step: 26px;
    --container-step-tablet: 24px;
    --container-step-mobile: 16px;
    --container: calc(var(--container-width) + (var(--container-step) * 2));
    --font-family: "Poppins", sans-serif;
    --second-family: "Odor Mean Chey", sans-serif;
  }
  
  /* ===== Базовые ===== */
  body {
    margin: 0;
    background: #151412;
  }
  
  .newspainbet-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: 600px) {
    .newspainbet-container {
      padding: 0 var(--container-step-tablet);
    }
  }
  
  @media (max-width: 500px) {
    .newspainbet-container {
      padding: 0 var(--container-step-mobile);
      gap: 20px;
    }
  }
  
  h1 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 60px;
    line-height: 120%;
    color: #151412;
    margin: 0px;
  }
  
  @media (max-width: 991px) {
    h1 {
      font-size: 50px;
    }
  }
  
  @media (max-width: 600px) {
    h1 {
      font-size: 39px;
    }
  }
  
  h2 {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 32px;
    line-height: 120%;
    text-transform: uppercase;
    margin: 0px;
    margin-bottom: 20px;
  }
  
  @media (max-width: 991px) {
    h2 {
      font-size: 28px;
    }
  }
  
  @media (max-width: 600px) {
    h2 {
      font-size: 24px;
    }
  }
  
  h2 {
    position: relative;
    display: inline-block; /* мобилка: линия только под текст */
    width: fit-content;
  }
  
  h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -20px; /* отступ 20px */
    height: 4px;
    background-color: #dacfbe;
    width: 100%;
    border-radius: 50px;
  }
  
  @media (max-width: 600px) {
    h2 {
      display: block;
      width: 100%;
    }
  
    h2::after {
      width: 100%;
    }
  }

  h3 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 150%;
    color: #151412;
    margin: 0px;
  }
  
  @media (max-width: 991px) {
    h3 {
      font-size: 18px;
    }
  }
  
  @media (max-width: 600px) {
    h3 {
      font-size: 16px;
    }
  }
  
  p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    margin: 0px;
  }
  
  @media (max-width: 991px) {
    p {
      font-size: 18px;
    }
  }
  
  @media (max-width: 600px) {
    p {
      font-size: 16px;
    }
  }
  
  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;
    }
  }

  .newspainbet-btn-1{
    background: #151412;
    border-radius: 30px;
    padding: 14px 0px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-transform: uppercase;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
  }

  .newspainbet-site-header{
    padding: 29.5px 0px;
  }

  .newspainbet-header-inner{
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .newspainbet-logo{
    height: 16px;
  }

  .newspainbet-nav-list{
    flex-direction: row;
    gap: 40px;
    font-family: var(--font-family);
    font-weight: 300;
    font-size: 14px;
    line-height: 150%;
    text-transform: uppercase;
    color: #fff;
  }



  .newspainbet-hero{
    background: url("/newspainbet-assets/newspainbet-img/newspainbet-hero_bg.webp") no-repeat center;
    background-size: cover;
    border-radius: 0 0 60px 60px;
    padding-top: 185px;
    padding-bottom: 145px;
  }

  .newspainbet-hero-inner{
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .newspainbet-hero-content{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }

  .newspainbet-hero-text{
    font-size: 20px;
  }

  .newspainbet-hero-btn{
    max-width: 300px;
  }



  .newspainbet-features h2{
    color: #fff;
  }

  .newspainbet-features-grid{
    background: #f1eae9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
    border-radius: 60px;
  }
  
  .newspainbet-features-list{
    display: grid;
    grid-template-columns: max-content max-content;
    grid-template-rows: 1fr 1fr;
    gap: 40px;
  }

  .newspainbet-feature-item{
    max-width: 256px;
  }

  .newspainbet-feature-text{
    color: #696969;
  }

  .newspainbet-games{
    background: #f1eae9;
    border-radius: 60px;
  }

  .newspainbet-highlight-game{
    position: relative;
    width: 100%;
    aspect-ratio: 1240 / 800;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
  }

  .newspainbet-highlight-iframe{
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .newspainbet-highlight-content{
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    backdrop-filter: blur(5px);
    background: rgba(27, 26, 41, 0.6);
  }

  .newspainbet-highlight-title{
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 38px;
    line-height: 120%;
    text-align: center;
    color: #fff;
  }

  .newspainbet-highlight-btn{
    border: 1px solid #dacfbe;
    border-radius: 30px;
    padding: 14px 24px;
    display: flex;
    justify-content: center;
    max-width: 300px;
    width: 100%;
    background: #151412;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-transform: uppercase;
    color: #dacfbe;
  }

  .newspainbet-highlight-game h2::after{
    display: none;
  }

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

  .newspainbet-game-item{
    border-radius: 40px 40px 0 0;
    max-width: 280px;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .newspainbet-game-btn{
    border: 1px solid #dacfbe;
    border-radius: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 14px 0px;
    background: #151412;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-transform: uppercase;
    color: #dacfbe;
  }

  footer{
    background: url(/newspainbet-assets/newspainbet-img/newspainbet-footer_bg.webp) no-repeat center;
    background-size: cover;
    border-radius: 60px 60px 0 0;
    padding: 40px 0px;
  }

  .newspainbet-footer-top{
    display: flex;
    gap: 16px;
  }

  footer p{
    font-size: 16px;
  }

  footer h3{
    font-size: 16px;
  }

  .newspainbet-footer-title{
    margin-bottom: 8px;
  }

  .newspainbet-footer-middle{
    display: flex;
    gap: 40px;
  }

  .newspainbet-footer-block{
    flex: 1;
  }

  .newspainbet-footer-bottom{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .newspainbet-footer-block h3{
    margin-bottom: 16px;
  }

  .newspainbet-footer-nav-list{
    flex-direction: row;
    gap: 40px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    color: #151412;
  }

  .newspainbet-footer-copy{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #696969;
  }

  .newspainbet-about-title{
    color: #fff;
  }

  .newspainbet-about-subtitle{
    margin-bottom: 20px;
  }

  .newspainbet-about-text{
    color: #696969;
  }

  .newspainbet-about-grid{
    padding: 40px;
    background: #f1eae9;
    box-sizing: border-box;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .newspainbet-about-content{
    display: flex;
    flex-direction: column;
    gap: 63px;
  }


  .newspainbet-about-vision-mission{
    display: flex;
    gap: 40px;
  }

  .newspainbet-about-vision, .newspainbet-about-mission{
    flex: 1;
  }
  
  .newspainbet-about-text.newspainbet-special{
    margin-top: 20px;
  }

  .newspainbet-faq h2{
    color: #fff;
  }

  .newspainbet-faq-list{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 600px));
    gap: 40px;
    justify-content: center;
    align-items: stretch;
  }

  .newspainbet-faq-item{
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    max-width: 600px;
    height: fit-content;
  }

  .newspainbet-faq-question{
    background: linear-gradient(90deg, #fff 0%, #dacfbe 49.52%, #fffbfc 100%);
    padding: 24px;
  }

  .newspainbet-faq-question h3{
    font-size: 16px;
    color: #151412;
  }

  .newspainbet-faq-answer{
    padding: 24px;
  }

  .newspainbet-faq-answer p{
    font-size: 16px;
    color: #151412;
  }

  .newspainbet-contact_us{
    background: url(/newspainbet-assets/newspainbet-img/newspainbet-contacts_bg.webp);
    border-radius: 0 0 60px 60px;
    background-size: cover;
    background-position: center;
    padding: 186px 0px;
  }

  .newspainbet-contact_us-inner{
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .newspainbet-contact_us-form{
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 853px;
    width: 100%;
    flex: 1;
  }

  .newspainbet-contact_us-fields{
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .newspainbet-contact_us-input{
    border: 1px solid #e6e6e6;
    border-radius: 1000px;
    padding: 14px 18px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #696969;
  }

  .newspainbet-contact_us-textarea{
    border: 1px solid #e6e6e6;
    border-radius: 20px;
    padding: 14px 18px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #696969;
  }

  .newspainbet-contact_us-btn{
    max-width: 300px;
    border-radius: 30px;
    padding: 14px 0px;
    background: #151412;
    border: 0px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    text-transform: uppercase;
    color: #fff;
  }

  .newspainbet-contact_us-img{
    aspect-ratio: 1 / 1;
    flex: 1;
    max-width: 347px;
    width: 100%;
  }

  .newspainbet-play_responsible-content{
    max-width: 853px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .newspainbet-responsible-title{
    color: #fff;
  }

  .newspainbet-responsible-intro, .newspainbet-responsible-tips{
    color: #a7a7a7;
    font-size: 16px;
  }



  .newspainbet-responsible-text, .newspainbet-responsible-subtitle{
    font-size: 16px;
    color: #dacfbe;
  }

  @media screen and (max-width: 1190px) {
    .newspainbet-features-grid{
      gap: 20px;
      padding: 20px 16px;
      border-radius: 30px;
      align-items: center;
    }    

    .newspainbet-features-img{
      flex: 1;
      max-width: 130px;
      aspect-ratio: 221/1186;
    }

    .newspainbet-features-content{
      flex: 1;
      padding: 20px 8px;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
    }

    .newspainbet-features-list{
      grid-template-columns: 1fr;
    }

    .newspainbet-feature-item{
      max-width: 256px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
  }

  @media screen and (max-width: 1040px) {
    .newspainbet-footer-bottom{
      flex-direction: column;
      gap: 24px;
      align-items: start; 
    }    
  }

  @media screen and (max-width: 842px){
    .newspainbet-hero{
      padding: 40px 0px;
      border-radius: 0 0 30px 30px;
    }

    .newspainbet-hero-inner{
      flex-direction: column;
    }

    .newspainbet-hero-content{
      gap: 10px;
    }

    .newspainbet-hero-text{
      font-size: 16px;
    }

    .newspainbet-hero-btn{
      max-width: unset;
      padding: 10px 0px;
      font-size: 12px;
    }

    .newspainbet-hero-img{
      width: 100%;
    }
  }

  @media screen and (max-width: 730px) {
    .newspainbet-about-vision-mission{
      flex-direction: column;
    }
  }

  @media screen and (max-width: 692px) {
    .newspainbet-footer-nav-list{
      gap: 20px;
      font-size: 14px;
    }
  }

  @media screen and (max-width: 772px) {
    .newspainbet-contact_us-img{
      max-width: none;
    }

    .newspainbet-contact_us{
      padding: 40px 0px;
      border-radius: 0 0 30px 30px;
    }
  }

  @media screen and (max-width: 600px) {
    .newspainbet-games{
      border-radius: 30px;
    }

    .newspainbet-games-inner{
      gap: 20px;
    }

    .newspainbet-highlight-game{
      height: 640px;
      border-radius: 10px;
    }

    .newspainbet-highlight-content{
      gap: 0px;
    }

    .newspainbet-highlight-title{
      font-size: 24px;
      margin-bottom: 16px;
    }

    .newspainbet-highlight-btn{
      padding: 10px 0px;
      font-size: 12px;
    }

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

    footer{
      border-radius: 30px 30px 0 0;
    }

    .newspainbet-footer-middle{
      flex-direction: column;
      gap: 20px;
    }

    .newspainbet-footer-block h3{
      margin-bottom: 12px;
    }

    .newspainbet-footer-nav-list{
      flex-wrap: wrap;
    }

    footer p{
      font-size: 14px;
    }

    .newspainbet-footer-age-img{
      width: 60px;
    }

    .newspainbet-footer-top{
      gap: 8px;
    }

    .newspainbet-about-grid{
      flex-direction: column;
    }

    .newspainbet-about-content{
      gap: 20px;
    }

    .newspainbet-about-image, .newspainbet-about-image img{
      width: 100%;
    }

    .newspainbet-about-grid{
      border-radius: 30px;
    }

    .newspainbet-site-header{
      padding: 16px 0px;
    }

    .newspainbet-faq-list{
      grid-template-columns: 1fr;
      gap: 20px;
    }
  }

  @media screen and (max-width: 500px) {
    .newspainbet-features-grid{
      flex-direction: column;
    }
  }

  @media screen and (max-width: 360px) {
  }


  .newspainbet-burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 15px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001; /* выше меню */
    padding: 0px;
  }
  
  .newspainbet-burger span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
  }
  
  /* мобилька */
  @media (max-width: 692px) {
    .newspainbet-burger {
      display: flex;
    }
  
    .newspainbet-main-nav {
      position: fixed;
      top: 0;
      right: -100%; /* спрятано */
      width: 70%;
      height: 100%;
      background: #151412;
      flex-direction: column;
      padding: 80px 20px;
      transition: right 0.3s ease;
      z-index: 1000;
    }
  
    .newspainbet-main-nav.newspainbet-active {
      right: 0; /* выезжает */
    }
  
    .newspainbet-nav-list {
      flex-direction: column;
      gap: 20px;
    }
  
    .newspainbet-nav-item a {
      color: #fff;
      font-size: 18px;
    }
  }

  .newspainbet-terms .newspainbet-container{
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 30px;
    background: #f1eae9;
  }

  .newspainbet-terms ul{
    list-style: disc;
    padding-left: 15px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    margin: 0px;
  }

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