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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

a:hover {
  color: #7b1fa2;
}

ul {
  list-style: none;
}

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

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

.btn {
  display: inline-block;
  padding: 12px 25px;
  border: none;
  border-radius: 30px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: #9c27b0;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #771e86;
  color: #ffffff;
}

.btn-secondary {
  background-color: transparent;
  color: #9c27b0;
  border: 1px solid #9c27b0;
}

.btn-secondary:hover {
  background-color: rgba(156, 39, 176, 0.1);
}

.btn-submit {
  background-color: #9c27b0;
  color: #ffffff;
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
}

.btn-submit:hover {
  background-color: #771e86;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  text-align: center;
  font-weight: 700;
  color: #9c27b0;
  position: relative;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: #9c27b0;
}

.header {
  background: -webkit-gradient(linear, left top, right top, from(#bc30b7), to(#420040));
  background: linear-gradient(90deg, #bc30b7 0%, #420040 100%);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
  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;
}

.header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 26px;
  font-weight: 600;
  color: #fff;
}

.header .logo img {
  max-height: 40px;
}

.header .nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .nav-item {
  margin-left: 30px;
}

.header .nav-item:first-child {
  margin-left: 0;
}

.header .nav-link {
  font-weight: 500;
  font-size: 1rem;
  padding: 5px 0;
  color: #ffffff;
  position: relative;
}

.header .nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #9c27b0;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.header .nav-link:hover {
  color: #9c27b0;
}

.header .nav-link:hover:after {
  width: 100%;
}

.hero {
  background: url(./assets/1.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 80px;
  padding: 120px 0 120px;
}

.hero-content {
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  min-height: 450px;
}

.hero-image {
  position: relative;
  margin-bottom: 30px;
}

.hero-image .cats-image {
  max-width: 100%;
  border-radius: 10px;
}

.hero-image .game-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 80%;
}

.hero .google-play-btn {
  display: inline-block;
}

.hero .google-play-btn img {
  max-width: 200px;
}

.game-description {
  padding: 80px 0;
  background-color: #9c27b0;
  color: #fff;
}

.game-description .game-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

.game-description .game-content h1 {
  color: inherit;
  margin-bottom: 0;
  text-align: left;
}

.game-description .game-content .upper, .game-description .game-content .lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.game-description .game-content .text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.game-description .game-content .game-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 300px;
}

.game-description .game-content .game-image img {
  width: 100%;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.game-description .game-content .game-text {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  min-width: 300px;
}

.game-description .game-content .game-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.game-description .game-content .game-text h3 {
  font-size: 1.4rem;
  margin: 1.5rem 0 1rem;
  color: #9c27b0;
}

.game-description .game-content .game-text ul {
  margin-left: 20px;
  margin-bottom: 1.5rem;
}

.game-description .game-content .game-text ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}

.game-description .game-content .game-text ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #9c27b0;
}

.features {
  padding: 80px 0;
  background-color: #f0e5ff;
}

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

.features .feature-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  text-align: center;
}

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

.features .feature-card .feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  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;
}

.features .feature-card .feature-icon img {
  max-width: 100%;
  max-height: 100%;
}

.features .feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #9c27b0;
  font-weight: 600;
}

.features .feature-card p {
  font-size: 0.95rem;
  color: #333333;
}

.cta {
  padding: 60px 0;
  background-color: #9c27b0;
  background-image: url(./assets/4.1.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.cta-content {
  padding: 10px;
  border-radius: 10px;
  background-color: #9c27b0;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
}

.cta-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 250px;
  max-width: 300px;
}

.cta-image img {
  width: 100%;
}

.cta-text {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  min-width: 300px;
  color: #ffffff;
}

.cta-text h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.cta-text .google-play-btn {
  display: inline-block;
}

.cta-text .google-play-btn img {
  max-width: 200px;
}

.reviews {
  padding: 80px 0;
  background: -webkit-gradient(linear, left top, right top, from(#bc30b7), to(#420040));
  background: linear-gradient(90deg, #bc30b7 0%, #420040 100%);
}

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

.reviews h2 {
  color: #fff;
}

.reviews .review-card {
  background-color: #f0e5ff;
  padding: 30px;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.reviews .review-card .reviewer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}

.reviews .review-card .reviewer-avatar {
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: 50%;
  margin-right: 15px;
}

.reviews .review-card .reviewer-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.reviews .review-card .reviewer h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #9c27b0;
}

.reviews .review-card p {
  font-style: italic;
  line-height: 1.6;
}

.contact {
  padding: 80px 0;
  background-color: #f0e5ff;
}

.contact p {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

.contact-form {
  max-width: 500px;
  margin: 0 auto;
}

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

.contact-form input {
  width: 100%;
  padding: 15px;
  background-color: #ffffff;
  border: 1px solid rgba(156, 39, 176, 0.3);
  border-radius: 30px;
  color: #333333;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
}

.contact-form input:focus {
  outline: none;
  border-color: #9c27b0;
  -webkit-box-shadow: 0 0 0 2px rgba(156, 39, 176, 0.2);
          box-shadow: 0 0 0 2px rgba(156, 39, 176, 0.2);
}

.contact-form input::-webkit-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.contact-form input:-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.contact-form input::-ms-input-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.contact-form input::placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.footer {
  background: -webkit-gradient(linear, left top, right top, from(#bc30b7), to(#420040));
  background: linear-gradient(90deg, #bc30b7 0%, #420040 100%);
  padding: 30px 0;
  border-top: 1px solid rgba(51, 51, 51, 0.1);
  color: #fff;
}

.footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  font-size: 0.9rem;
  color: #ffffff;
  opacity: 0.7;
}

.footer-links a:hover {
  opacity: 1;
  color: #ce93d8;
}

.footer-links .copyright {
  opacity: 0.7;
  font-size: 0.9rem;
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  padding: 20px;
  z-index: 9999;
  -webkit-box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
  display: none;
}

.cookie-popup.show {
  display: block;
}

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

.cookie-popup .cookie-content h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #333333;
}

.cookie-popup .cookie-content p {
  margin-bottom: 20px;
  color: #333333;
}

.cookie-popup .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}

.cookie-popup .cookie-buttons .btn {
  min-width: 150px;
}

.cookie-popup .cookie-buttons .btn-primary {
  background-color: #9c27b0;
}

.cookie-popup .cookie-buttons .btn-secondary {
  background-color: #d88be5;
  color: #333333;
  border: none;
}

.success-message {
  display: none;
  background-color: #e8f5e9;
  border: 1px solid #4caf50;
  color: #2e7d32;
  padding: 15px;
  border-radius: 30px;
  margin-top: 20px;
  text-align: center;
}

.success-message.show {
  display: block;
}

.error {
  border-color: #f44336 !important;
  -webkit-box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.2) !important;
          box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.2) !important;
}

.error-message {
  color: #f44336;
  font-size: 0.85rem;
  margin-top: 5px;
  padding-left: 15px;
}

@media (max-width: 992px) {
  .features-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  .upper, .lower {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
}

@media (max-width: 768px) {
  .header .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header .logo {
    margin-bottom: 15px;
  }
  .header .nav-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .header .nav-item {
    margin: 0 10px;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .cta-content {
    text-align: center;
  }
  .cta-content .cta-text {
    text-align: center;
  }
  .cookie-buttons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .features-grid,
  .reviews-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .game-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cookie-content h2 {
    font-size: 1.5rem;
  }
  .cookie-content p {
    font-size: 0.9rem;
  }
  .cookie-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cookie-buttons .btn {
    width: 100%;
  }
}

.privacy {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #fff;
  color: #121221;
}

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