<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* === Общие стили === */
body {
  font-family: "Outfit", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f3e5f5;
  color: #333;
}

/* === Контейнер === */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

html {
  scroll-behavior: smooth;
}

/* === Header (нефиксированный) === */
.header {
  background: linear-gradient(90deg, #6a1b9a, #8e24aa);
  padding: 20px 0;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo img {
  height: 40px;
}
.header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.header nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: 0.3s;
}
.header nav ul li a:hover {
  color: #ffcc00;
}

/* === Hero === */
.hero {
  background: linear-gradient(90deg, #6a1b9a, #9c27b0);
  color: white;
  text-align: center;
  padding: 120px 0;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.hero .btn {
  background-color: #ffcc00;
  padding: 12px 24px;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}
.hero .btn:hover {
  background: #e6b800;
}

/* === About === */
.about {
  background: #f3e5f5;
  padding: 80px 0;
}
.about .about-content {
  display: flex;
  align-items: center;
  gap: 30px;
}
.about img {
  width: 50%;
  border-radius: 10px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}
.about .text {
  width: 50%;
}
.about .text ul {
  list-style: none;
  padding: 0;
}
.about .text li {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* === Screenshots === */
/* === Screenshots Section === */
.screenshots {
  background: #e1bee7;
  padding: 80px 0;
  text-align: center;
}
.screenshots h2 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  color: #6a1b9a;
}
.screenshots .gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.screenshots .screenshot {
  width: 23%;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.screenshots .screenshot:hover {
  transform: scale(1.05);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

/* === Lightbox (модальное окно) === */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  text-align: center;
  padding-top: 50px;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}
.close:hover {
  color: #ffcc00;
}

/* === Адаптивность Screenshots === */
@media (max-width: 1024px) {
  .screenshot {
    width: 30%;
  }
}
@media (max-width: 768px) {
  .gallery {
    flex-wrap: wrap;
  }
  .screenshot {
    width: 45%;
  }
}
@media (max-width: 480px) {
  .gallery {
    flex-direction: column;
  }
  .screenshot {
    width: 90%;
  }
}
/* === Features Section === */
.features {
  background: linear-gradient(90deg, #6a1b9a, #8e24aa);
  padding: 80px 0;
  text-align: center;
  color: white;
}
.features h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}
.features .features-intro {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.features .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.features .feature-item {
  background: white;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.features .feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}
.features .feature-item .feature-icon {
  background: #8e24aa;
  color: white;
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: background 0.3s ease;
}
.features .feature-item .feature-icon:hover {
  background: #6a1b9a;
}
.features .feature-item h3 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #6a1b9a;
  margin-bottom: 10px;
}
.features .feature-item p {
  font-size: 1.1rem;
  color: #555;
}

/* === Адаптивность Features === */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* === Reviews === */
/* === Reviews Section === */
.reviews {
  background: linear-gradient(90deg, #6a1b9a, #8e24aa);
  padding: 80px 0;
  text-align: center;
  color: white;
}
.reviews h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
}
.reviews .reviews-intro {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 40px;
}
.reviews .reviews-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.reviews .review {
  background: white;
  padding: 25px;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 30%;
  position: relative;
}
.reviews .review:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}
.reviews .review .review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.reviews .review .review-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid #8e24aa;
}
.reviews .review .review-header h3 {
  font-size: 1.3rem;
  color: #6a1b9a;
  margin: 0;
}
.reviews .review p {
  font-size: 1.1rem;
  color: #333;
  font-style: italic;
  line-height: 1.5;
  padding: 0 10px;
}
.reviews .review .rating {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #ffcc00;
  color: #333;
  padding: 5px 10px;
  font-size: 1rem;
  border-radius: 5px;
  font-weight: bold;
}

/* === Адаптивность Reviews === */
@media (max-width: 1024px) {
  .review {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .reviews-grid {
    flex-direction: column;
  }
  .review {
    width: 80%;
  }
}
@media (max-width: 480px) {
  .review {
    width: 100%;
  }
  .review-header img {
    width: 40px;
    height: 40px;
  }
  .review-header h3 {
    font-size: 1.1rem;
  }
  p {
    font-size: 1rem;
  }
}
/* === Footer === */
.footer {
  background: #6a1b9a;
  color: white;
  text-align: center;
  padding: 20px 0;
}
.footer a {
  color: #ffcc00;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}

/* === Адаптивность === */
@media (max-width: 1024px) {
  .about-content {
    flex-direction: column;
  }
  .about-content img {
    width: 80%;
  }
  .about-content .text {
    width: 100%;
  }
  .features-grid,
  .reviews-grid {
    flex-direction: column;
  }
  .feature-item,
  .review {
    width: 80%;
  }
  .gallery img {
    width: 45%;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 80px 0;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .about-content img {
    width: 100%;
  }
  .features-grid .feature-item {
    width: 100%;
  }
  .reviews-grid .review {
    width: 100%;
  }
  .gallery img {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 60px 0;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
  .hero .btn {
    padding: 10px 18px;
    font-size: 1rem;
  }
  .gallery img {
    width: 100%;
  }
  .features-grid,
  .reviews-grid {
    flex-direction: column;
  }
  .feature-item,
  .review {
    width: 100%;
  }
}
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #1c1c28;
  color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  max-width: 300px;
  z-index: 1000;
  display: none;
}
.cookie-consent__text {
  font-size: 0.9rem;
  margin-bottom: 15px;
  text-align: center;
}
.cookie-consent__actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.cookie-consent__actions .cookie-consent__btn {
  flex: 1;
  padding: 10px;
  font-size: 0.9rem;
  font-weight: bold;
  text-transform: uppercase;
  border: 1px solid #29b6f6;
  border-radius: 5px;
  background-color: transparent;
  color: #29b6f6;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cookie-consent__actions .cookie-consent__btn:hover {
  background-color: #29b6f6;
  color: #ffffff;
}
.cookie-consent__actions .accept {
  border-color: #00e676;
  color: #00e676;
}
.cookie-consent__actions .accept:hover {
  background-color: #00e676;
}
.cookie-consent__actions .decline {
  border-color: #f44336;
  color: #f44336;
}
.cookie-consent__actions .decline:hover {
  background-color: #f44336;
}

.privacy-content {
  background: #f3e5f5;
  padding: 60px 0;
}
.privacy-content .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.privacy-content h2 {
  font-size: 2rem;
  color: #6a1b9a;
  margin-bottom: 15px;
}
.privacy-content p,
.privacy-content ul {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}
.privacy-content ul {
  padding-left: 20px;
}
.privacy-content ul li {
  margin-bottom: 10px;
}
.privacy-content a {
  color: #8e24aa;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}
.privacy-content a:hover {
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */</pre></body></html>