@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

a {
  text-decoration: none;
}

h1 {
  margin-bottom: 0;
}

section {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  section {
    margin-bottom: 15px;
  }
}

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  background: #000;
  color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
}
body.no-scroll {
  overflow: hidden;
}

@media (max-width: 768px) {
  h2 {
    font-size: 20px;
  }
  p {
    font-size: 14px;
  }
}
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 21px;
}
@media (max-width: 768px) {
  .container {
    padding: 16px;
  }
}

.hero-background {
  background: url("../images/chips-bg.webp") center/cover no-repeat lightgray;
  background-color: rgba(0, 0, 0, 0.57);
  background-blend-mode: overlay;
  padding-bottom: 10px;
}

.top-bar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: #000;
  align-self: stretch;
  font-size: 10px;
}
.top-bar__icon {
  max-width: 20px;
}
@media (max-width: 768px) {
  .top-bar {
    padding: 10px 16px;
    text-align: center;
  }
  .top-bar p {
    font-size: 8px;
  }
}

.header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.56);
}
.header__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.header__logo img {
  max-height: 50px;
}
.header__nav {
  position: relative;
}
.header__links {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.header__links.active {
  right: 0;
}
.header__item {
  list-style: none;
}
.header__item a {
  color: #FFFFFF;
  font-weight: 600;
}
.header__burger {
  position: relative;
  width: 30px;
  height: 25px;
  cursor: pointer;
  display: none;
  z-index: 110;
}
.header__burger.active .header__burger-line:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}
.header__burger.active .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger.active .header__burger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
.header__burger-line {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
  transition: all 0.3s;
}
@media (max-width: 860px) {
  .header__container {
    padding: 16px;
  }
  .header__burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
  }
  .header__links {
    display: none;
  }
  .header__links.active {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    list-style: none;
    transition: right 0.4s ease;
    z-index: 100;
  }
}

.hero {
  margin: 0;
  padding-bottom: 40px;
}
.hero__content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: repeat(3, max-content);
  gap: 8px;
}
.hero__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 120%;
  text-transform: uppercase;
}
.hero__badges {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.hero__image {
  grid-row: span 3/span 3;
  grid-column-start: 2;
  grid-row-start: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.hero__image img {
  max-width: 350px;
  width: 100%;
}
@media (max-width: 860px) {
  .hero {
    padding: 0;
  }
  .hero__content {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 8px;
  }
  .hero__title {
    grid-column: span 2/span 2;
    grid-column-start: 1;
    grid-row-start: 2;
    text-align: center;
    margin-bottom: 0;
  }
  .hero__subtitle {
    text-align: center;
    grid-column: span 2/span 2;
    grid-column-start: 1;
    grid-row-start: 3;
  }
  .hero__badges {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    grid-column-start: 2;
    grid-row-start: 1;
  }
  .hero__image {
    justify-content: flex-start;
    grid-row: 1;
    grid-column-start: 1;
    grid-row-start: 1;
  }
  .hero__image img {
    width: 100%;
  }
}

.badge {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  background: rgba(0, 17, 49, 0.6);
  white-space: nowrap;
}
@media (min-width: 768px) and (max-width: 900px) {
  .badge {
    max-width: 300px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .badge {
    font-size: 10px;
    width: 100%;
    padding: 4px 12px;
    max-width: 200px;
  }
  .badge::before {
    width: 16px;
    height: 13px;
  }
}

.casinos__update {
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}
.casinos__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.casino-card {
  cursor: pointer;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-radius: 20px;
  border: 3px solid #000;
  color: #FFFFFF;
}
.casino-card__image-wrapper {
  background: #000;
}
.casino-card__cta {
  background: rgba(0, 6, 17, 0.7);
}
.casino-card__image-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
}
.casino-card__rating-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}
.casino-card__logo {
  max-width: 90%;
}
.casino-card__info {
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  background: rgba(0, 6, 17, 0.7);
  padding: 20px;
}
.casino-card__bonus {
  text-align: left;
  font-size: 23px;
  font-style: normal;
  line-height: 150%;
}
.casino-card__bonus-title {
  font-weight: 600;
  text-transform: uppercase;
}
.casino-card__winners {
  max-width: 100%;
  display: flex;
  flex-direction: row;
  gap: 20px;
  backdrop-filter: blur(10px);
  animation: scroll-winners 30s linear infinite;
}
.casino-card__winner {
  flex-shrink: 0;
  white-space: nowrap;
  transition: transform 0.3s ease;
}
.casino-card__cta {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.casino-card__button {
  border-radius: 20px;
  background: #0055a1;
  box-shadow: 0 0 20px 0 rgba(0, 178, 255, 0.25);
  font-weight: 700;
  color: #FFFFFF;
  padding: 20px 0;
  max-width: 250px;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}
.casino-card__payments {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.casino-card__payment-item {
  height: 24px;
  padding: 6px;
  border-radius: 48%;
  background: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.casino-card__payment-icon {
  width: 100%;
}
@media (max-width: 768px) {
  .casino-card {
    grid-template-columns: 1fr 1fr;
  }
  .casino-card__rating-wrapper {
    font-size: 14px;
  }
  .casino-card__info {
    padding: 10px;
    justify-content: center;
  }
  .casino-card__logo {
    max-width: 100%;
  }
  .casino-card__winners {
    display: none;
  }
  .casino-card__cta {
    grid-column: span 2;
  }
  .casino-card__bonus {
    font-size: 16px;
  }
  .casino-card__button {
    max-width: 90%;
  }
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq__item {
  padding: 20px;
  border-radius: 15px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 6, 17, 0.42) 100%);
}
.faq__question-text {
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 0 0 12px 0;
}
.faq__question-text::before {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  margin-right: 10px;
  background: url("../images/icon-question.svg") no-repeat center/contain;
}

.info {
  background: linear-gradient(210deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 6, 17, 0.9) 100%);
  backdrop-filter: blur(10px);
}
.info__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.info__image {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.info__image img {
  max-width: 100%;
}
@media (max-width: 1024px) {
  .info__container {
    flex-direction: column-reverse;
    padding: 21px;
  }
}

.image-section__title {
  margin: 0 0 15px 0;
  font-size: 30px;
  text-transform: uppercase;
}
.image-section__image img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

.security {
  padding: 40px;
  border-radius: 40px;
  border: 1px solid #0045a9;
  background: rgba(255, 255, 255, 0.14);
}
.security__title {
  margin: 0 0 15px 0;
  font-size: 30px;
}
.security__text {
  font-size: 15px;
}
@media (max-width: 768px) {
  .security {
    padding: 20px;
  }
  .security__title {
    font-size: 20px;
  }
}

.content-block {
  max-width: 1240px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: rgba(0, 0, 0, 0.56);
  border-radius: 20px;
  margin: 20px auto;
}
.content-block h2, .content-block h3, .content-block h4, .content-block p, .content-block ul, .content-block ol {
  margin-bottom: 0;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__disclaimer {
  border-radius: 10px;
  border: 2px solid #D2161E;
  padding: 20px;
  text-align: center;
}
.footer__company {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.footer__company-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__company-email {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer__company-email::before {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  margin-right: 10px;
  background: url("../images/icon-mail.svg") no-repeat center/contain;
}
.footer__company-address {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer__company-address::before {
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  margin-right: 10px;
  background: url("../images/icon-point.svg") no-repeat center/contain;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__nav-item {
  list-style: none;
}
.footer__nav-item a {
  color: #FFFFFF;
}
.footer__logos {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.footer__logos img {
  width: 100%;
}
.footer__legal-text {
  text-align: center;
}
@media (max-width: 768px) {
  .footer__company {
    display: flex;
    flex-direction: column-reverse;
  }
  .footer__nav-list {
    padding: 0;
  }
  .footer__company-info {
    margin-bottom: 10px;
  }
  .footer__logos {
    flex-wrap: wrap;
    gap: 20px;
  }
}

@keyframes scroll-winners {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*# sourceMappingURL=styles.css.map */
