body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

.bg-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  overflow: hidden;
  z-index: -10;
}

.stars, .stars2, .stars3 {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent url('/static/8.jpg') repeat top center;
  animation: starAnim 200s linear infinite;
}

.stars2 {
  background-size: contain;
  animation-duration: 400s;
  opacity: 0.5;
}

.stars3 {
  background-size: cover;
  animation-duration: 600s;
  opacity: 0.3;
}

@keyframes starAnim {
  0% { transform: translateY(0); }
  100% { transform: translateY(-2000px); }
}

@keyframes moveBg {
  0% { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.05) translate(-20px, 20px); }
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

h1 {
  text-align: center;
  font-size: 2.8em;
  margin-bottom: 20px;
  text-shadow: 0 0 12px #ff0066;
}

p, ul {
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 1.1em;
  line-height: 1.6;
}

ul li {
  margin-bottom: 10px;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-500%); }
}

.video-section {
  text-align: center;
  margin-bottom: 60px;
}

video {
  width: 100%;
  max-width: 960px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: linear-gradient(45deg, #ff0059, #ff9900);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s ease;
  font-size: 1.1em;
}

.btn:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #ff9900, #ff0059);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin: 60px 0;
}

.feature {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(255,255,255,0.08);
}

.feature:hover {
  transform: translateY(-6px);
}

.feature img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 16px;
}

.feature h3 {
  margin: 0 0 10px;
  color: #ffd966;
  font-size: 1.3em;
}

.feature p {
  color: #ddd;
  font-size: 1em;
}

@media (max-width: 768px) {
  h1 { font-size: 2em; }
}

footer {
  text-align: center;
  padding: 30px 20px;
  background: #111;
  font-size: 0.9em;
  color: #999;
  margin-top: 80px;
  border-top: 1px solid #333;
}

footer a {
  color: #ff9900;
  text-decoration: none;
}

.btn-mirror {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: linear-gradient(45deg, #ff0059, #ff9900);
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s ease;
  font-size: 1.1em;
}

.btn-mirror:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #ff9900, #ff0059);
}
