@charset "UTF-8";
* {
  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%;
  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: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  background: #101010;
}

.lock {
  overflow: hidden;
}

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

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

.container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.container-second {
  max-width: 1370px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

h1 {
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: calc(768px - 1px)) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
@media (max-width: calc(768px - 1px)) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-family: Poppins;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

h4 {
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}

.violet {
  color: #aa6dff !important;
}

.violet-bg {
  background: #AA6DFF;
}

.violet-50-bg {
  background: rgba(170, 109, 255, 0.1);
}

.violet-50 {
  color: rgba(170, 109, 255, 0.6);
}

.black {
  color: #101010;
}

.white-bg {
  background: #FFF;
}

.main {
  flex: 1 1 auto;
}

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

.btn {
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 60px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: #aa6dff;
  color: #fff;
  text-align: center;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.btn-border {
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 60px;
  border: 2px solid rgba(170, 109, 255, 0.3);
  color: #aa6dff;
  text-align: center;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  background: #fff;
}

@media (max-width: calc(768px - 1px)) {
  .desktop {
    display: none;
  }
}

.mobile {
  display: none;
}
@media (max-width: calc(768px - 1px)) {
  .mobile {
    display: block;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1000;
  padding: 20px;
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 30px;
  border: 3px solid #aa6dff;
  background: #fff;
}
.cookies__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
  margin-bottom: 20px;
}
.cookies__btns {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  justify-content: center;
  flex-direction: column;
}

.footer {
  padding: 30px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.footer__content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.footer__content {
  display: flex;
  gap: 130px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (max-width: calc(1024px - 1px)) {
  .footer__content {
    gap: 30px;
  }
}
.footer__content-text {
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer__menu-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 14px;
}
@media (max-width: calc(768px - 1px)) {
  .footer__menu {
    flex-direction: column;
  }
}
.footer__menu a {
  color: #fff;
}
.footer__menu p {
  font-weight: 700;
  margin-bottom: 3px;
}
@media (max-width: calc(576px - 1px)) {
  .footer__content-img {
    width: 100%;
  }
}
.footer__text {
  color: rgba(255, 255, 255, 0.7);
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
}
.header__logo {
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 500;
}

@media (max-width: calc(768px - 1px)) {
  .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;
  }
}
@media (max-width: calc(768px - 1px)) and (max-width: calc(768px - 1px)) {
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    color: #101010;
  }
}
@media (max-width: calc(768px - 1px)) {
  .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%);
    background: #fff;
  }
}
@media (max-width: calc(768px - 1px)) and (max-width: calc(768px - 1px)) {
  .menu__icon_active span {
    background: #101010;
  }
}
@media (max-width: calc(768px - 1px)) {
  .menu__icon_active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
    background: #fff;
  }
}
@media (max-width: calc(768px - 1px)) and (max-width: calc(768px - 1px)) {
  .menu__icon_active::before {
    background: #101010;
  }
}
@media (max-width: calc(768px - 1px)) {
  .menu__icon_active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, 50%);
    background: #fff;
  }
}
@media (max-width: calc(768px - 1px)) and (max-width: calc(768px - 1px)) {
  .menu__icon_active::after {
    background: #101010;
  }
}
@media (max-width: calc(768px - 1px)) {
  .menu__body {
    display: block;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    padding: 100px 15px 15px;
    border-radius: 0 0 80px 80px;
    background: #fff;
    transition: left 0.3s ease 0s;
    overflow: auto;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .menu__body_active {
    left: 0;
    border-radius: 0;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 16;
  }
}
.menu__list {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: calc(768px - 1px)) {
  .menu__list {
    flex-direction: column;
  }
}
.menu__link {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: calc(768px - 1px)) {
  .menu__link {
    color: #101010;
  }
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #010119;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
}
.popup__content {
  display: flex;
  max-width: 420px;
  width: 100%;
  padding: 20px;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-radius: 30px;
  background: #fff;
}

.age-buttons {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 15px;
}

.hero {
  margin-top: 75px;
  padding: 100px 0;
  background: url(/wp-content/themes/casinopilotrev/img/hero-bg.webp) no-repeat center/cover;
}
.hero__content {
  display: flex;
  max-width: 1009px;
  width: 100%;
  padding: 50px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-radius: 40px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(25px);
  align-items: center;
  text-align: center;
}

.oferta {
  padding: 80px 0;
}
.oferta__content {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.oferta__content-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  max-width: 580px;
  width: 100%;
}
.oferta__card {
  border-radius: 34px;
  border: 4px solid #aa6dff;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
.oferta__card-top {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: calc(768px - 1px)) {
  .oferta__card-top {
    justify-content: flex-start;
  }
}
.oferta__card-top-text {
  width: 180px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 30px 0 20px 0;
  background: #aa6dff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
}
.oferta__stars {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: calc(768px - 1px)) {
  .oferta__stars {
    padding-top: 50px;
  }
}
.oferta__stars p {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
}
.oferta__card-center {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}
.oferta__center-text {
  max-width: 295px;
}
.oferta__card-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}
.oferta__card-bottom {
  display: flex;
  max-width: 560px;
  flex-wrap: wrap;
  gap: 10px;
}
.oferta__card-bottom-text {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.oferta__card-bottom-img {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.proximas {
  padding: 50px 0;
}
.proximas__content {
  display: flex;
  gap: 30px;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.proximas__cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.proximas__card {
  display: flex;
  flex-direction: column;
  padding: 20px;
  align-items: center;
  gap: 10px;
  border-radius: 24px;
  background: #fff;
  color: rgba(170, 109, 255, 0.6);
}
.proximas__card h4 {
  display: flex;
  padding: 50px 56px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  background: rgba(170, 109, 255, 0.2);
}
.proximas__title {
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}
.proximas__wrapper {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: calc(768px - 1px)) {
  .proximas__wrapper .btn {
    width: 100%;
  }
}

.yellow {
  background: rgba(255, 179, 0, 0.1);
}

.green {
  background: rgba(0, 221, 128, 0.1);
}

.viol {
  background: rgba(96, 116, 239, 0.1);
}

.search-box {
  display: flex;
  align-items: center;
  max-width: 700px;
  width: 100%;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
  padding: 5px 5px 5px 20px;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 18px;
  font-size: 16px;
  color: #333;
  border-radius: 50px 0 0 50px;
}

.search-box input::placeholder {
  color: #aaa;
}

.search-box button {
  background: linear-gradient(135deg, #a86cff, #8a47ff);
  border: none;
  padding: 12px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.search-box button:hover {
  background: linear-gradient(135deg, #b57cff, #9655ff);
  transform: scale(1.05);
}

.por {
  background: #fff;
  padding: 80px 0;
}
.por h2 {
  margin-bottom: 30px;
}
.por__cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.por__card {
  max-width: 386px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 24px;
}

.como {
  background: #fff;
  padding: 80px 0;
}
.como h2 {
  margin-bottom: 30px;
  text-align: center;
}
.como__content {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: calc(576px - 1px)) {
  .como__content img {
    width: 100%;
  }
}
.como__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pierdas {
  padding-top: 50px;
}
.pierdas__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}
.pierdas__content .proximas__wrapper {
  margin-bottom: 30px;
}

.preguntas {
  background: #fff;
  padding: 80px 0;
}
.preguntas__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.preguntas__cards {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.preguntas__card {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  border-radius: 20px;
  background: rgba(170, 109, 255, 0.1);
  max-width: 794px;
}

.noticias {
  background: #fff;
}
.noticias h2 {
  text-align: center;
  margin-bottom: 30px;
}
.noticias__cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.noticias__card {
  max-width: 386px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.juga {
  background: #fff;
  padding: 80px 0;
}
.juga__content {
  display: flex;
  flex-direction: column;
  max-width: 1201px;
  width: 100%;
  padding: 50px 134px;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background: #c62834;
  gap: 30px;
  text-align: center;
}
@media (max-width: calc(768px - 1px)) {
  .juga__content {
    padding: 20px 50px;
  }
}
.juga__content .contacts__address p {
  font-weight: 700;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  border: none;
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 0 0 1px #e0e0e0;
  font-size: 1rem;
  outline: none;
  transition: box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 2px #a259ff;
}

.contact-form textarea {
  border-radius: 1rem;
  resize: none;
}

.note {
  color: #777;
  font-size: 0.9rem;
  margin-top: 1rem;
}

.contact-info {
  color: #777;
  font-size: 0.9rem;
}

.contact-info a {
  color: #a259ff;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* --- адаптив --- */
@media (max-width: 600px) {
  .contact-section h2 {
    font-size: 1.6rem;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
  }
}
.tenes {
  background: #fff;
  padding-bottom: 80px;
}
.tenes__content {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
.tenes__content-text {
  max-width: 590px;
  width: 100%;
}
.tenes__content-text h2 {
  margin-bottom: 30px;
}
@media (max-width: calc(576px - 1px)) {
  .tenes img {
    width: 100%;
  }
}
.tenes__checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tenes__checkbox input {
  width: 24px;
  height: 24px;
}
.tenes .btn {
  width: fit-content;
  min-width: 230px;
}

.contacto {
  background: #fff;
  margin-top: 70px;
  padding-top: 30px;
  padding-bottom: 20px;
}
@media (max-width: calc(576px - 1px)) {
  .contacto img {
    width: 100%;
  }
}
.contacto__cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 20px;
}
.contacto__card {
  display: flex;
  flex-direction: column;
  max-width: 590px;
  width: 100%;
  padding: 20px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 24px;
}
.contacto__card .btn-border {
  width: fit-content;
}
.contacto__card-title {
  font-weight: 700;
}
.contacto__bottom {
  padding-bottom: 80px;
}
.contacto__bottom .contacto__card {
  max-width: 100%;
}

.privacy {
  margin: 86px 0 0;
}
.privacy h2,
.privacy h3 {
  text-align: left;
}
.privacy h2 {
  margin-bottom: 24px;
}
.privacy h3 {
  margin-bottom: 6px;
}
.privacy p {
  margin-bottom: 24px;
}

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