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

@font-face {
  font-family: Inter;
  src: url("/h40d6dfc4-app/h40d6dfc4-assets/h40d6dfc4-fonts/h40d6dfc4-inter_semibold.woff2");
  display: swap;
  font-weight: 600;
}

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

@font-face {
  font-family: Roboto;
  src: url("/h40d6dfc4-app/h40d6dfc4-assets/h40d6dfc4-fonts/h40d6dfc4-roboto_bold.woff2");
  display: swap;
  font-weight: 700;
}

@font-face {
  font-family: Roboto;
  src: url("/h40d6dfc4-app/h40d6dfc4-assets/h40d6dfc4-fonts/h40d6dfc4-roboto_medium.woff2");
  display: swap;
  font-weight: 500;
}

@font-face {
  font-family: Roboto;
  src: url("/h40d6dfc4-app/h40d6dfc4-assets/h40d6dfc4-fonts/h40d6dfc4-roboto_regular.woff2");
  display: swap;
  font-weight: 400;
}
   
  /* ===== Переменные ===== */
  :root {
    --container-width: 1140px;
    --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: "Roboto", sans-serif;
  }

/* ===== Базовые ===== */
body {
  margin: 0;
  background: #1c1a1f;
}

.h40d6dfc4-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-step);
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .h40d6dfc4-container {
    padding: 0 var(--container-step-tablet);
  }
}

@media (max-width: 600px) {
  .h40d6dfc4-container {
    padding: 0 var(--container-step-mobile);
  }
}

h1 {
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 32px;
  color: #fff;
  margin: 0px;
}

h2 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  color: #fff;
  margin: 0px;
}

h3 {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: #fff;
  margin: 0px;
}

p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  margin: 0px;
}

@media (max-width: 991px) {
  p {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  p {
    font-size: 14px;
    text-align: center;
  }
}

ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0px;
  padding: 0px;
}

a {
  text-decoration: none;
  color: unset;
}

section {
  margin-bottom: 30px;
}

@media (max-width: 600px) {
  section {
    padding: 20px 0px;
  }
}

.h40d6dfc4-site-header{
  padding-top: 10px;
  padding-bottom: 15px;
}

.h40d6dfc4-header-container{
  flex-direction: row;
  justify-content: space-between;
}

.h40d6dfc4-header-age-notice{
  max-width: 462px;
  display: flex;
  gap: 5px;
  align-items: start;
}

.h40d6dfc4-age-text{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 130%;
  color: #fff;
}

.h40d6dfc4-why-section{
  background: #2f2a36;
  padding: 10px 0px;
}

.h40d6dfc4-why-wrapper{
  flex-direction: row;
}

.h40d6dfc4-why-image{
  flex: 1;
  max-width: 558px;
  width: 100%;
}

.h40d6dfc4-why-content{
  flex: 1;
}

.h40d6dfc4-why-title{
  margin-bottom: 10px;
}

.h40d6dfc4-why-list{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  padding-left: 15px;
  list-style: disc;
}

.h40d6dfc4-mb-15{
  margin-bottom: 15px;
}

.h40d6dfc4-testimonials-title{
  text-align: center;
}

.h40d6dfc4-testimonials-list{
  flex-direction: row;
  gap: 20px;
}

.h40d6dfc4-testimonial-item{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: start;
  padding: 16px;
  box-sizing: border-box;
  border: 1px solid #2350b4;
  border-radius: 8px;
  background: #2f2a36;
  flex: 1;
}

.h40d6dfc4-name_and_rating{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.h40d6dfc4-testimonial-name{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  color: #fff;
}

.h40d6dfc4-testimonial-rating{
  flex-direction: row;
  gap: 4px;
}

.h40d6dfc4-site-footer{
  padding: 20px 0px;
  background: #000;
}

.h40d6dfc4-footer-container{
  max-width: 1320px;
  gap: 24px;
}

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

.h40d6dfc4-footer-info-item{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.h40d6dfc4-footer-text{
  font-size: 15px;
  text-align: start;
}

.h40d6dfc4-footer-logo-list{
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.h40d6dfc4-footer-cookie-note{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 120%;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

.h40d6dfc4-footer-nav-list{
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: rgba(255, 255, 255, 0.6);
}

.h40d6dfc4-hero-section{
  padding: 10px 0px;
}

.h40d6dfc4-hero-content_body{
  align-items: center;
  padding: 88.5px 0px;
  border-radius: 10px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/h40d6dfc4-app/h40d6dfc4-assets/h40d6dfc4-images/h40d6dfc4-hero_bg.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.h40d6dfc4-feature-item{
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  padding: 5px 20px;
  font-family: var(--second-family);
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  background: #ce1126;
}

.h40d6dfc4-policy_hero_section_content{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 60px 0px;
  border-radius: 10px;
  background: #2350b4;
}

.h40d6dfc4-policy_page_content .h40d6dfc4-container{
  gap: 10px;
}

.h40d6dfc4-policy_page_content_content{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.h40d6dfc4-policy_page_content_content .h40d6dfc4-main_ul{
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.h40d6dfc4-policy_page_content_content .h40d6dfc4-main_ul ul{
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  padding-left: 25px;
  list-style: disc;
}

.h40d6dfc4-offer-item{
  display: flex;
  justify-content: center;
  width: 100%;
}

.h40d6dfc4-offer-card{
  display: flex;
  gap: 10px;
  max-width: 927px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  min-height: 161px;
  background: linear-gradient(90deg, #292333 0%, #2449ab 100%);
  border-radius: 10px;
}

.h40d6dfc4-offer-logo{
  max-width: 211px;
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex: 1;
}

.h40d6dfc4-offer-info{
  max-width: 255px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 10px;
  box-sizing: border-box;
  flex: 1;
}

.h40d6dfc4-offer-info-link{
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.h40d6dfc4-offer-title{
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}

.h40d6dfc4-offer-subtitle{
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  color: #fff;
}

.h40d6dfc4-offer-rating{
  max-width: 150px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
}

.h40d6dfc4-offer-rating-score{
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  color: #fff;
}

.h40d6dfc4-offer-stars{
  flex-direction: row;
  gap: 5px;
}

.h40d6dfc4-offer-list{
  gap: 10px;
}

.h40d6dfc4-offer-cta{
  max-width: 261px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  flex: 1;
  padding: 10px;
  box-sizing: border-box;
  background-image: url("/h40d6dfc4-app/h40d6dfc4-assets/h40d6dfc4-images/h40d6dfc4-pocker_cards_bg.png"), linear-gradient(rgba(252, 209, 22, 0.85), rgba(252, 209, 22, 0.85));
  background-size: cover;
  position: relative;
  overflow: hidden;
  height: 140px;
}

.h40d6dfc4-offer-cta::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(252, 209, 22, 0.85);
}

.h40d6dfc4-offer-cta-btn{
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  color: #fff;
  border-radius: 5px;
  padding: 10px 10px;
  box-sizing: border-box;
  background: #ce1126;
  max-width: 110px;
  width: 100%;
  position: relative;
}

.h40d6dfc4-why-content p{
  text-align: start;
}

.h40d6dfc4-offer-list-wrapper{
  border-radius: 10px;
  padding: 20px;
  background: #2157C0;
  background: url("/h40d6dfc4-app/h40d6dfc4-assets/h40d6dfc4-images/h40d6dfc4-casinos_bg.png");
}

.h40d6dfc4-offer_header_list{
  flex-direction: row;
  border-radius: 5px;
  max-width: 946px;
  padding: 10px;
  background: #ce1126;
  align-self: center;
  width: 100%;
  box-sizing: border-box;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  justify-content: center;
  gap: 150px;
}

.h40d6dfc4-offer-list-wrapper{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.h40d6dfc4-offer-logo a{
  height: 100px;
  max-width: 170px;
  width: 100%;
}

.h40d6dfc4-offer-logo a img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media screen and (max-width: 991px) {
  .h40d6dfc4-footer-info-list{
    flex-wrap: wrap;
    flex-direction: column;
  }

  .h40d6dfc4-footer-logo-list{
    justify-content: center;
    flex-wrap: wrap;
    row-gap: 15px;
    column-gap: 40px;
  }

  .h40d6dfc4-footer-nav-list{
    flex-wrap: wrap;
    gap: 40px;
  }

  .h40d6dfc4-why-wrapper{
    flex-direction: column;
    align-items: center;
  }

  .h40d6dfc4-offer_header_list{
    display: none;
  }
}

@media (max-width: 600px) {
  .h40d6dfc4-hero-content_body{
    padding: 16px;
    box-sizing: border-box;
  }

  .h40d6dfc4-why-list{
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    color: #fff;
  }

  .h40d6dfc4-offer-logo a{
    height: 76px;
    max-width: 130px;
    width: 100%;
  }



  .h40d6dfc4-offer-card{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
    min-height: unset;
    padding: 0px;
  }

  .h40d6dfc4-offer-logo,
  .h40d6dfc4-offer-info,
  .h40d6dfc4-offer-rating,
  .h40d6dfc4-offer-cta {
    max-width: unset;
    width: 100%;
    flex: unset;
  }

  .h40d6dfc4-offer-logo{
    order: 1;
  }

  .h40d6dfc4-offer-info{
    order: 3;
    padding: 24px 10px;
    box-sizing: border-box;
  }

  .h40d6dfc4-offer-rating{
    order: 2;
  }

  .h40d6dfc4-offer-cta{
    order: 4;
  }

  .h40d6dfc4-offer-cta {
    padding: 0;
  }

  .h40d6dfc4-testimonials-list{
    flex-direction: column;
  }

  .h40d6dfc4-testimonial-text{
    text-align: start;
  }

  .h40d6dfc4-footer-nav-list{
    flex-wrap: wrap;
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }

  .h40d6dfc4-begambleaware{
    width: 222px;
  }

  .h40d6dfc4-offer-list-wrapper{
    padding: 0px;
    background: none;
  }
}

.h40d6dfc4-overlay-age-cookie{
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #0000006e;
}

.h40d6dfc4-overlay-content{
  width: 100%;
  align-items: center;
}

.h40d6dfc4-modals-wrapper{
  max-width: 405px;
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #2f2a36;
}

.h40d6dfc4-age-verification{
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.h40d6dfc4-age-verification h3{
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  color: #fff;
}

.h40d6dfc4-age-verification p{
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #fff;
}

.h40d6dfc4-age-verification button{
  padding: 10px 0px;
  border-radius: 5px;
  border: 0px;
  background: #ce1126;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  color: #fff;
}

.h40d6dfc4-cookie-consent{
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.h40d6dfc4-cookie-consent .h40d6dfc4-modal-title{
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 24px;
  color: #fff;
}

.h40d6dfc4-cookie-consent .h40d6dfc4-modal-text{
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  color: #fff;
}

.h40d6dfc4-cookie-consent .h40d6dfc4-btn{
  border: 2px solid #ce1126;
  border-radius: 5px;
  padding: 10px 0px;
  font-family: var(--second-family);
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  color: #fff;
  background: none;
}

.h40d6dfc4-cookie-consent .h40d6dfc4-btn-accept-cookies{
  background: #ce1126;
}

.h40d6dfc4-policy_page_content a{
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: white;
}

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