<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  overflow-x: hidden;
  background: #0c0c1b;
  min-height: 100vh;
}

.bg-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -2;
  top: 0;
  left: 0;
  overflow: hidden;
}

.gif-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  opacity: 0.2;
  filter: blur(10px);
  flex-wrap: wrap;
}

.gif {
  width: 300px;
  max-width: 90vw;
  height: auto;
  object-fit: cover;
}

.card {
  background: rgba(20, 20, 40, 0.8);
  border-radius: 24px;
  padding: 30px 25px;
  max-width: 420px;
  margin: 80px auto 40px;
  box-shadow: 0 0 50px rgba(128, 0, 255, 0.3);
  backdrop-filter: blur(12px);
  position: relative;
  text-align: center;
  z-index: 2;
}

.card .avatar {
  width: 100%;
  max-width: 360px;
  border-radius: 16px;
  box-shadow: 0 0 20px #fff;
  margin-bottom: 20px;
  object-fit: contain;
}

.card h1 {
  font-size: 26px;
  margin: 0 0 10px;
  color: #fff;
  text-shadow: 0 0 10px #000;
}

.card .subtitle {
  font-size: 15px;
  color: #ffe1f4;
  margin-bottom: 25px;
  line-height: 1.5;
  padding: 0 10px;
}

.card .buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.card .buttons a {
  display: block;
  width: 100%;
  max-width: 280px;
  text-align: center;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #6200ea, #ff69b4);
  box-shadow: 0 4px 15px rgba(255, 0, 128, 0.4);
  border: none;
  transition: all 0.3s ease;
}

.card .buttons a:hover {
  background: linear-gradient(135deg, #ffffff, #ffc6ff);
  color: #000;
  transform: scale(1.03);
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: #bbb;
  background: #080818;
  border-top: 1px solid #222;
}

@media (max-width: 480px) {
  .card {
    padding: 20px 15px;
  }

  .card h1 {
    font-size: 22px;
  }

  .card .subtitle {
    font-size: 14px;
  }

  .card .buttons a {
    font-size: 14px;
    padding: 12px;
  }
}
.faq-item {
  text-align: left;
  margin-bottom: 18px;
}

.faq-item h3 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #ffd8f8;
}

.faq-item p {
  font-size: 14px;
  color: #fff;
  line-height: 1.5;
}

/* Ð¡Ð»Ð°Ð¹Ð´ÐµÑ€ */
.slider {
  overflow: hidden;
  width: 100%;
  max-width: 360px;
  margin: 20px auto;
  position: relative;
}

.slide-track {
  display: flex;
  animation: scroll 25s linear infinite;
  gap: 16px;
}

.slide-track img {
  width: 100%;
  max-width: 300px;
  border-radius: 16px;
  box-shadow: 0 0 10px #000;
  flex-shrink: 0;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
</pre></body></html>