@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  background-color: #2b1644;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  color: #d2b4ee;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  h3 {
    font-size: 1.25rem;
  }
}

p {
  margin-bottom: 16px;
}

ul {
  list-style: none;
  margin-bottom: 16px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

section {
  padding: 64px 0;
}

@media (max-width: 768px) {
  section {
    padding: 48px 0;
  }
}

.btn {
  display: inline-block;
  padding: 16px 48px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: none;
  outline: none;
}

.btn--purple {
  background-color: #8652b0;
  color: #ffffff;
}

.btn--purple:hover {
  background-color: #6c418e;
  color: #ffffff;
}

.btn--outline {
  background-color: transparent;
  border: 2px solid #8652b0;
  color: #ffffff;
}

.btn--outline:hover {
  background-color: #8652b0;
  color: #ffffff;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(43, 22, 68, 0.95);
  padding: 24px;
  z-index: 1000;
  -webkit-box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.cookie-popup.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.cookie-popup__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cookie-popup__content h2 {
  margin-bottom: 16px;
}

.cookie-popup__content p {
  margin-bottom: 24px;
}

.cookie-popup__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}

@media (max-width: 576px) {
  .cookie-popup__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  background-color: #42185e;
  padding: 16px 0;
  z-index: 100;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .header__content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 1.5rem;
}

.logo img {
  height: 30px;
  margin-right: 8px;
}

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

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .nav__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.nav__item {
  margin-left: 24px;
}

@media (max-width: 768px) {
  .nav__item {
    margin-left: 16px;
    margin-bottom: 8px;
  }
}

@media (max-width: 576px) {
  .nav__item {
    margin-left: 8px;
  }
}

.nav__link {
  font-weight: 500;
  position: relative;
}

.nav__link:after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #d2b4ee;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav__link:hover:after, .nav__link.active:after {
  width: 100%;
}

.hero {
  padding: 64px 0;
  background-image: url("./assets/1.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero__content {
  position: relative;
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .hero p {
    font-size: 1rem;
  }
}

.hero__notice {
  background-color: rgba(134, 82, 176, 0.3);
  border-left: 4px solid #8652b0;
  padding: 16px;
  margin-bottom: 24px;
  border-radius: 8px;
}

.hero__notice p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.google-play-btn {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.google-play-btn:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  opacity: 0.9;
}

.google-play-btn img {
  height: 60px;
}

.game__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 48px;
}

@media (max-width: 992px) {
  .game__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.game__info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.game__image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.game__image img {
  border-radius: 8px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.game__features {
  margin-left: 16px;
}

.game__features li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
}

.game__features li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #8652b0;
}

.benefits {
  text-align: center;
  background-color: #371c57;
}

.benefits h2 {
  margin-bottom: 48px;
}

.benefits__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .benefits__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .benefits__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.benefit-card {
  background-color: rgba(66, 24, 94, 0.5);
  padding: 24px;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.benefit-card__icon {
  margin: 0 auto 16px;
  width: 70px;
  height: 70px;
  background-color: rgba(134, 82, 176, 0.2);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.benefit-card__icon img {
  width: 40px;
  height: 40px;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.benefit-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.testimonials {
  text-align: center;
}

.testimonials h2 {
  margin-bottom: 48px;
}

.testimonials__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[3];
      grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .testimonials__grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .testimonials__grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background-color: rgba(66, 24, 94, 0.5);
  padding: 24px;
  border-radius: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-card__user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 16px;
}

.testimonial-card__user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial-card__user h3 {
  margin-bottom: 0;
  font-size: 1.1rem;
  text-align: left;
}

.testimonial-card__stars {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
}

.testimonial-card__stars img {
  width: 18px;
  height: 18px;
  margin-right: 3px;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 0;
  text-align: left;
}

.gallery {
  text-align: center;
  background-image: url("./assets/12.png");
  background-size: 1200px;
  background-position: top 240px center;
  background-repeat: no-repeat;
  position: relative;
  padding-bottom: 200px;
}

.gallery .container {
  position: relative;
}

.gallery h2 {
  margin-bottom: 48px;
}

.gallery__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 380px;
}

.gallery img {
  width: 100%;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
}

.contact {
  text-align: center;
  background-image: url("./assets/13.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.contact .container {
  position: relative;
  max-width: 800px;
}

.contact h2 {
  margin-bottom: 16px;
}

.contact > p {
  margin-bottom: 48px;
}

.contact-form {
  text-align: left;
  background-color: rgba(55, 28, 87, 0.8);
  padding: 48px;
  border-radius: 8px;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form .form-group {
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.9);
  color: #333333;
  font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  -webkit-box-shadow: 0 0 0 2px #8652b0;
          box-shadow: 0 0 0 2px #8652b0;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  margin-top: 16px;
  width: 100%;
}

.footer {
  background-color: #34134a;
  padding: 48px 0;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 48px;
}

.footer__links a {
  margin: 0 16px;
  font-weight: 500;
}

.footer__links a:hover {
  text-decoration: underline;
}

.footer__age-restriction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background-color: rgba(43, 22, 68, 0.3);
  padding: 24px;
  border-radius: 8px;
}

@media (max-width: 576px) {
  .footer__age-restriction {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}

.footer__age-restriction .age-icon {
  width: 50px;
  height: 50px;
  margin-right: 24px;
}

@media (max-width: 576px) {
  .footer__age-restriction .age-icon {
    margin-right: 0;
    margin-bottom: 16px;
  }
}

.footer__disclaimer {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.footer__disclaimer h3 {
  margin-bottom: 8px;
}

.footer__disclaimer p {
  font-size: 0.9rem;
  margin-bottom: 0;
  opacity: 0.8;
}

.success-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: calc(100vh - 70px - 300px);
  text-align: center;
}

.success-page .success-content h1 {
  font-size: 3rem;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .success-page .success-content h1 {
    font-size: 2.5rem;
  }
}

.success-page .success-content h2 {
  font-size: 2rem;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .success-page .success-content h2 {
    font-size: 1.5rem;
  }
}

.privacy {
  padding-top: 100px;
  padding-bottom: 100px;
}

.privacy h1 {
  font-size: 32px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 32px;
}
/*# sourceMappingURL=style.css.map */