@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  border: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  width: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
  background: transparent;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

body {
  font-family: "Roboto", sans-serif;
  background: #000;
}

.lock {
  overflow: hidden;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: #000;
}

[class*=__container] {
  max-width: 1110px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.title {
  color: #FFFAFA;
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
}

[class*=__text] {
  color: #FFFAFA;
  font-size: 16px;
  font-weight: 400;
}

.main {
  flex: 1 1 auto;
}

.text-center {
  text-align: center;
}

section {
  scroll-margin-top: 100px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 60;
  background: #000;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.header__logo {
  position: relative;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFF;
  font-size: 28px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .menu__icon {
    display: flex;
    align-items: center;
    z-index: 50;
    position: relative;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    right: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background: #fff;
  }
  .menu__icon_privacy span, .menu__icon_privacy::before, .menu__icon_privacy::after {
    right: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background: #000;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
    height: 2px;
  }
  .menu__icon::before {
    top: 8px;
  }
  .menu__icon::after {
    bottom: 8px;
    height: 2px;
  }
  .menu__icon span {
    height: 2px;
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .menu__icon_active span {
    transform: rotate(45deg) scale(0) translate(0px, -50%);
  }
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
  }
}
@media (max-width: 767px) {
  .menu__body {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    padding: 100px 15px 0;
    background: #000;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body_active {
    left: 0;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 16;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .menu__list {
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.menu__link {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
}
@media (hover: hover) and (pointer: fine) {
  .menu__link {
    position: relative;
  }
  .menu__link::after {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    left: 0;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
    background-color: #fff;
  }
  .menu__link:hover::after {
    transform-origin: bottom left;
    transform: scaleX(1);
  }
}

.footer {
  background: #000;
  padding: 40px 0;
}
@media (max-width: 767px) {
  .footer {
    padding: 30px 0;
  }
}
.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 40px;
}
.footer__menu a {
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 575px) {
  .footer__menu {
    flex-direction: column;
    gap: 10px;
  }
}
.footer__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__row a img {
  width: 140px;
}
.footer__line {
  background: rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 1px;
}
.footer__text {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}
.footer__column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__txt {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
}

@keyframes overlayIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes overlayOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes popupIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes popupOut {
  from {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
  to {
    opacity: 0;
    transform: scale(0.85) translateY(-20px);
  }
}
@keyframes cookiesIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes cookiesOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(30px);
  }
}
.cookies {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 40px;
  max-width: 800px;
  width: 100%;
  border-radius: 30px;
  background: #FFF;
}
@media (max-width: 767px) {
  .cookies {
    padding: 40px 20px;
  }
}
.cookies__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookies__title {
  color: #000;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 600;
  line-height: 120%;
}
.cookies__text {
  color: #000;
  font-size: 16px;
  font-weight: 400;
}
.cookies__btns {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 575px) {
  .cookies__btns {
    flex-direction: column;
    width: 100%;
  }
}
.cookies__btn {
  color: #FFFAFA;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 60px;
  padding: 18px 60px;
}
.cookies__btn:first-child {
  background: #F09;
}
.cookies__btn:last-child {
  opacity: 0.4;
  background: #F09;
}
@media (max-width: 575px) {
  .cookies__btn {
    width: 100%;
  }
}
.cookies--active {
  display: block;
  animation: cookiesIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.cookies--hiding {
  display: block;
  animation: cookiesOut 0.3s ease forwards;
}

.age {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5411764706);
}
.age--active {
  display: flex;
  animation: overlayIn 0.3s ease forwards;
}
.age--active .age__content {
  animation: popupIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.age--hiding {
  display: flex;
  animation: overlayOut 0.3s ease forwards;
}
.age--hiding .age__content {
  animation: popupOut 0.3s ease forwards;
}
.age__content {
  border-radius: 30px;
  background: #8D0055;
  padding: 40px;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 15px;
}
@media (max-width: 767px) {
  .age__content {
    padding: 40px 20px;
  }
}
.age__row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.age__title {
  color: #FFF;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 600;
  line-height: 120%;
}
.age__text {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
}
.age__btns {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 575px) {
  .age__btns {
    flex-direction: column;
  }
}
.age__btn {
  color: #FFFAFA;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 60px;
  padding: 18px 60px;
}
.age__btn:first-child {
  background: #F09;
}
.age__btn:last-child {
  color: #000;
  opacity: 0.4;
  background: #FFF;
}
@media (max-width: 575px) {
  .age__btn {
    width: 100%;
  }
}

.hero {
  margin: 72px 0 0;
}
.hero__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__content {
  margin-top: -70px;
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .hero__content {
    margin-top: 20px;
    flex-direction: column;
  }
}
.hero__title {
  color: #FFFAFA;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 600;
  line-height: 120%;
  text-transform: uppercase;
}
.hero__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 510px;
}
.hero__link {
  color: #FFFAFA;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 60px;
  background: #F09;
  padding: 22px 58px;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
}

.games {
  padding: 80px 0;
  position: relative;
  z-index: 2;
}
.games_page, .games_policy {
  margin: 72px 0 0;
}
@media (max-width: 767px) {
  .games {
    padding: 40px 0;
  }
}
.games__text {
  margin: 30px 0;
}
@media (max-width: 767px) {
  .games__text {
    margin: 20px 0;
  }
}
.games__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.games__card {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: #000;
  box-shadow: 0 0 24.8px 0 rgba(206, 0, 123, 0.4);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .games__card {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.games__logo {
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.games__pay {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  max-width: 200px;
}
.games__icon {
  background: #fff;
  border-radius: 6px;
  padding: 10px 5px;
  height: -moz-fit-content;
  height: fit-content;
}
.games__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.games__name {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.54px;
}
@media (max-width: 991px) {
  .games__name {
    text-align: center;
  }
}
.games__rating {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.games__rating p {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: -0.6px;
}
.games__rating h3 {
  color: #FFF;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.48px;
}
.games__link {
  color: #FFFAFA;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  flex-shrink: 0;
  border-radius: 60px;
  background: #F09;
  padding: 14px 20px;
}
.games__blur {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 767px) {
  .games__blur {
    left: auto;
    right: 0;
    transform: none;
  }
}

.players {
  padding: 80px 0;
  background: url(/wp-content/themes/casinopilotrev/assets/img/blur-1.webp) no-repeat center/cover;
}
@media (max-width: 767px) {
  .players {
    padding: 40px 0;
    background: url(/wp-content/themes/casinopilotrev/assets/img/blur-1-mob.webp) no-repeat center/cover;
  }
}
.players__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .players__content {
    gap: 20px;
  }
}
.players__img {
  max-width: 800px;
  margin: 0 auto;
}
.players__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.players__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.players__grid_reviews {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 20px;
}
@media (max-width: 767px) {
  .players__grid_reviews {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .players__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.players__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 10px;
  border-radius: 30px;
  background: #8D0055;
}
.players__name {
  color: #FFF;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
}

.start {
  padding: 80px 0;
  background: url(/wp-content/themes/casinopilotrev/assets/img/bg-1.webp) no-repeat center/cover;
}
@media (max-width: 767px) {
  .start {
    padding: 40px 0;
    background: url(/wp-content/themes/casinopilotrev/assets/img/bg-1-mob.png) no-repeat center/cover;
  }
}
.start__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.reviews {
  padding: 80px 0;
  background: url(/wp-content/themes/casinopilotrev/assets/img/blur-2.webp) no-repeat center/cover;
}
@media (max-width: 767px) {
  .reviews {
    padding: 40px 0;
    background: url(/wp-content/themes/casinopilotrev/assets/img/blur-2-mob.webp) no-repeat center/cover;
  }
}
.reviews__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .faq {
    padding: 40px 0;
  }
}
.faq__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .faq__content {
    gap: 20px;
  }
}
.faq__column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq__item {
  border-radius: 20px;
  border: 1px solid #FFF;
  padding: 16px 20px;
}
.faq__item.active .faq__text {
  display: block;
}
.faq__item.active .faq__plus {
  transform: rotate(45deg);
}
.faq__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}
.faq__name {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 150%;
}
.faq__text {
  margin-top: 20px;
  display: none;
}
.faq__plus {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s ease;
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  background: #fff;
  border-radius: 2px;
}
.faq__plus::before {
  width: 24px;
  height: 2px;
  top: 11px;
  left: 0;
}
.faq__plus::after {
  width: 2px;
  height: 24px;
  top: 0;
  left: 11px;
}

.choose {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .choose {
    padding: 40px 0;
  }
}
.choose__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 767px) {
  .choose__content {
    gap: 20px;
  }
}
.choose__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.choose__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.choose__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.choose__grid_sub {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .choose__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}