@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

/* Минималистичный космический фон */
body {
  margin: 0;
  padding: 0;
  background: #000000;
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Звездное небо - основной слой */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(1px 1px at 20px 30px, #ffffff, transparent),
    radial-gradient(1px 1px at 40px 70px, #ffffff, transparent),
    radial-gradient(1px 1px at 90px 40px, #ffffff, transparent),
    radial-gradient(1px 1px at 130px 80px, #ffffff, transparent),
    radial-gradient(1px 1px at 160px 30px, #ffffff, transparent),
    radial-gradient(1px 1px at 200px 60px, #ffffff, transparent),
    radial-gradient(1px 1px at 240px 20px, #ffffff, transparent),
    radial-gradient(1px 1px at 280px 90px, #ffffff, transparent),
    radial-gradient(1px 1px at 320px 50px, #ffffff, transparent),
    radial-gradient(1px 1px at 360px 80px, #ffffff, transparent),
    radial-gradient(1px 1px at 400px 40px, #ffffff, transparent),
    radial-gradient(1px 1px at 440px 100px, #ffffff, transparent),
    radial-gradient(1px 1px at 480px 70px, #ffffff, transparent),
    radial-gradient(1px 1px at 520px 30px, #ffffff, transparent),
    radial-gradient(1px 1px at 560px 90px, #ffffff, transparent),
    radial-gradient(1px 1px at 600px 60px, #ffffff, transparent),
    radial-gradient(1px 1px at 640px 20px, #ffffff, transparent),
    radial-gradient(1px 1px at 680px 80px, #ffffff, transparent),
    radial-gradient(1px 1px at 720px 50px, #ffffff, transparent),
    radial-gradient(1px 1px at 760px 110px, #ffffff, transparent),
    radial-gradient(1px 1px at 800px 40px, #ffffff, transparent),
    radial-gradient(1px 1px at 840px 100px, #ffffff, transparent),
    radial-gradient(1px 1px at 880px 70px, #ffffff, transparent),
    radial-gradient(1px 1px at 920px 30px, #ffffff, transparent),
    radial-gradient(1px 1px at 960px 90px, #ffffff, transparent);
  background-repeat: repeat;
  background-size: 1000px 500px;
  animation: starfield 40s linear infinite;
  opacity: 0.7;
  z-index: -2;
}

@keyframes starfield {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-500px); }
}



/* Мерцающие звезды */
.twinkle-stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.twinkle-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #ffffff;
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

.twinkle-star:nth-child(1) {
  top: 15%;
  left: 25%;
  animation-delay: 0s;
}

.twinkle-star:nth-child(2) {
  top: 35%;
  right: 30%;
  animation-delay: 0.5s;
}

.twinkle-star:nth-child(3) {
  bottom: 25%;
  left: 40%;
  animation-delay: 1s;
}

.twinkle-star:nth-child(4) {
  top: 70%;
  right: 20%;
  animation-delay: 1.5s;
}

.twinkle-star:nth-child(5) {
  bottom: 60%;
  right: 50%;
  animation-delay: 2s;
}

.twinkle-star:nth-child(6) {
  top: 50%;
  left: 15%;
  animation-delay: 2.5s;
}

@keyframes twinkle {
  0%, 100% { 
    opacity: 0.3;
    transform: scale(1);
    box-shadow: 0 0 4px #ffffff;
  }
  50% { 
    opacity: 1;
    transform: scale(1.5);
    box-shadow: 0 0 8px #ffffff, 0 0 12px #ffffff;
  }
}



/* Астероиды */
.asteroids {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.asteroid {
  position: absolute;
  width: 3px;
  height: 3px;
  background: #8b8b8b;
  border-radius: 50%;
  box-shadow: 0 0 5px #8b8b8b;
}

.asteroid:nth-child(1) {
  top: 10%;
  left: 20%;
  animation: asteroid1 15s linear infinite;
}

.asteroid:nth-child(2) {
  top: 30%;
  right: 30%;
  animation: asteroid2 18s linear infinite;
}

.asteroid:nth-child(3) {
  bottom: 40%;
  left: 60%;
  animation: asteroid3 22s linear infinite;
}

.asteroid:nth-child(4) {
  top: 70%;
  right: 10%;
  animation: asteroid4 20s linear infinite;
}

.asteroid:nth-child(5) {
  bottom: 20%;
  right: 50%;
  animation: asteroid5 25s linear infinite;
}

@keyframes asteroid1 {
  0% { transform: translateX(0px) translateY(0px); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(300px) translateY(-200px); opacity: 0; }
}

@keyframes asteroid2 {
  0% { transform: translateX(0px) translateY(0px); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(-250px) translateY(300px); opacity: 0; }
}

@keyframes asteroid3 {
  0% { transform: translateX(0px) translateY(0px); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(200px) translateY(250px); opacity: 0; }
}

@keyframes asteroid4 {
  0% { transform: translateX(0px) translateY(0px); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(-300px) translateY(-150px); opacity: 0; }
}

@keyframes asteroid5 {
  0% { transform: translateX(0px) translateY(0px); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateX(180px) translateY(-300px); opacity: 0; }
}

/* Цветные звезды */
.space-stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.space-stars::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(1px 1px at 50px 100px, #ff00ff, transparent),
    radial-gradient(1px 1px at 150px 150px, #00ffff, transparent),
    radial-gradient(1px 1px at 250px 50px, #00ff99, transparent),
    radial-gradient(1px 1px at 350px 200px, #ff6600, transparent),
    radial-gradient(1px 1px at 450px 100px, #9900ff, transparent),
    radial-gradient(1px 1px at 550px 150px, #ffff00, transparent),
    radial-gradient(1px 1px at 650px 80px, #ff1493, transparent),
    radial-gradient(1px 1px at 750px 180px, #00bfff, transparent),
    radial-gradient(1px 1px at 850px 120px, #32cd32, transparent),
    radial-gradient(1px 1px at 950px 220px, #ff4500, transparent);
  background-repeat: repeat;
  background-size: 1000px 500px;
  animation: coloredStars 30s linear infinite;
  opacity: 0.6;
}

@keyframes coloredStars {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-500px) rotate(360deg); }
}



/* Заголовок */
.title {
  font-size: 4.5rem;
  margin: 30px 0;
  color: #ff00ff;
  text-shadow: 
    0 0 10px #ff00ff,
    0 0 20px #ff00ff,
    0 0 30px #ff00ff,
    0 0 40px #00ffff,
    0 0 50px #00ffff,
    0 0 60px #ff00ff;
  animation: glowPulse 2s infinite alternate;
  font-weight: bold;
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
}

.title::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, #ff00ff, #00ffff, #ff00ff);
  background-size: 200% 200%;
  animation: borderGlow 3s ease-in-out infinite;
  z-index: -1;
  border-radius: 10px;
  opacity: 0.3;
}

@keyframes borderGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes glowPulse {
  from { 
    text-shadow: 
      0 0 10px #ff00ff,
      0 0 20px #ff00ff,
      0 0 30px #ff00ff,
      0 0 40px #00ffff,
      0 0 50px #00ffff;
  }
  to { 
    text-shadow: 
      0 0 20px #ff00ff,
      0 0 40px #ff00ff,
      0 0 60px #ff00ff,
      0 0 80px #00ffff,
      0 0 100px #00ffff,
      0 0 120px #ff00ff;
  }
}

/* Бегущая строка */
.marquee {
  overflow: hidden;
  box-sizing: border-box;
  border-top: 2px solid #ff00ff;
  border-bottom: 2px solid #00ffff;
  padding: 15px 0;
  margin: 20px 0 50px 0;
  background: rgba(255, 0, 255, 0.05);
  position: relative;
  transition: background 0.3s ease;
  z-index: 1;
}

.marquee::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 0, 255, 0.1) 50%, 
    transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.marquee-content {
  display: flex;
  animation: marquee 60s linear infinite;
  gap: 60px;
  width: max-content;
  will-change: transform;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.ticker {
  font-size: 1.8rem;
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff, 0 0 25px #ff00ff;
  font-weight: bold;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s ease;
  cursor: default;
}

.ticker:hover {
  transform: scale(1.2);
  text-shadow: 0 0 20px currentColor, 0 0 40px currentColor;
}

/* Цветовые варианты для тикеров */
.ticker:nth-child(6n+1) {
  color: #00ffff;
  text-shadow: 0 0 10px #00ffff, 0 0 25px #00ffff;
}

.ticker:nth-child(6n+2) {
  color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff, 0 0 25px #ff00ff;
}

.ticker:nth-child(6n+3) {
  color: #00ff99;
  text-shadow: 0 0 10px #00ff99, 0 0 25px #00ff99;
}

.ticker:nth-child(6n+4) {
  color: #ff6600;
  text-shadow: 0 0 10px #ff6600, 0 0 25px #ff6600;
}

.ticker:nth-child(6n+5) {
  color: #9900ff;
  text-shadow: 0 0 10px #9900ff, 0 0 25px #9900ff;
}

.ticker:nth-child(6n+6) {
  color: #ffff00;
  text-shadow: 0 0 10px #ffff00, 0 0 25px #ffff00;
}

@keyframes marquee {
  0% { 
    transform: translateX(0); 
  }
  100% { 
    transform: translateX(-50%); 
  }
}

/* Дополнительные анимации для тикеров */
@keyframes tickerGlow {
  0%, 100% {
    text-shadow: 0 0 10px currentColor, 0 0 25px currentColor;
  }
  50% {
    text-shadow: 0 0 20px currentColor, 0 0 40px currentColor, 0 0 60px currentColor;
  }
}

/* Анимации свечения для каждого цвета */
.ticker:nth-child(6n+1) {
  animation: tickerGlow 2s ease-in-out infinite;
}

.ticker:nth-child(6n+2) {
  animation: tickerGlow 2s ease-in-out infinite 0.3s;
}

.ticker:nth-child(6n+3) {
  animation: tickerGlow 2s ease-in-out infinite 0.6s;
}

.ticker:nth-child(6n+4) {
  animation: tickerGlow 2s ease-in-out infinite 0.9s;
}

.ticker:nth-child(6n+5) {
  animation: tickerGlow 2s ease-in-out infinite 1.2s;
}

.ticker:nth-child(6n+6) {
  animation: tickerGlow 2s ease-in-out infinite 1.5s;
}

/* Кнопки */
.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 100px 0;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.btn {
  position: relative;
  padding: 20px 40px;
  font-size: 1.2rem;
  border: 2px solid transparent;
  border-radius: 15px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-text {
  position: relative;
  z-index: 2;
  text-shadow: 0 0 10px rgba(0,0,0,0.8);
}

.btn-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}

/* ROADMAP кнопка */
.btn.roadmap {
  border-color: #ff00ff;
  box-shadow: 
    0 0 20px rgba(255, 0, 255, 0.5),
    0 0 40px rgba(255, 0, 255, 0.3),
    inset 0 0 20px rgba(255, 0, 255, 0.1);
}

.btn.roadmap .btn-glow {
  background: linear-gradient(45deg, #ff00ff, #ff66ff);
}

.btn.roadmap:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 10px 30px rgba(255, 0, 255, 0.8),
    0 0 60px rgba(255, 0, 255, 0.5),
    inset 0 0 30px rgba(255, 0, 255, 0.2);
}

.btn.roadmap:hover .btn-glow {
  opacity: 0.3;
}

/* BUY кнопка - главная */
.btn.buy.main-btn {
  padding: 25px 60px;
  font-size: 1.8rem;
  border-color: #00ff99;
  box-shadow: 
    0 0 30px rgba(0, 255, 153, 0.6),
    0 0 60px rgba(0, 255, 153, 0.4),
    0 0 90px rgba(0, 255, 153, 0.2),
    inset 0 0 30px rgba(0, 255, 153, 0.1);
  animation: buyGlow 3s ease-in-out infinite alternate;
}

.btn.buy .btn-glow {
  background: linear-gradient(45deg, #00ff99, #00cc7a, #00ff99);
}

.btn.buy:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 
    0 15px 40px rgba(0, 255, 153, 1),
    0 0 80px rgba(0, 255, 153, 0.7),
    0 0 120px rgba(0, 255, 153, 0.4),
    inset 0 0 40px rgba(0, 255, 153, 0.3);
}

.btn.buy:hover .btn-glow {
  opacity: 0.5;
}

@keyframes buyGlow {
  0% {
    box-shadow: 
      0 0 30px rgba(0, 255, 153, 0.6),
      0 0 60px rgba(0, 255, 153, 0.4),
      0 0 90px rgba(0, 255, 153, 0.2),
      inset 0 0 30px rgba(0, 255, 153, 0.1);
  }
  100% {
    box-shadow: 
      0 0 40px rgba(0, 255, 153, 0.8),
      0 0 80px rgba(0, 255, 153, 0.6),
      0 0 120px rgba(0, 255, 153, 0.4),
      inset 0 0 40px rgba(0, 255, 153, 0.2);
  }
}

/* TELEGRAM кнопка */
.btn.telegram {
  border-color: #00aaff;
  box-shadow: 
    0 0 20px rgba(0, 170, 255, 0.5),
    0 0 40px rgba(0, 170, 255, 0.3),
    inset 0 0 20px rgba(0, 170, 255, 0.1);
}

.btn.telegram .btn-glow {
  background: linear-gradient(45deg, #00aaff, #66ccff);
}

.btn.telegram:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 10px 30px rgba(0, 170, 255, 0.8),
    0 0 60px rgba(0, 170, 255, 0.5),
    inset 0 0 30px rgba(0, 170, 255, 0.2);
}

.btn.telegram:hover .btn-glow {
  opacity: 0.3;
}

/* Футер */
footer {
  margin-top: 100px;
  padding: 30px;
  position: relative;
  z-index: 1;
}

.avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  box-shadow: 0 0 25px #ff00ff, 0 0 40px #00ffff;
  margin-bottom: 20px;
  animation: avatarGlow 4s ease-in-out infinite alternate;
}

@keyframes avatarGlow {
  0% {
    box-shadow: 0 0 25px #ff00ff, 0 0 40px #00ffff;
  }
  100% {
    box-shadow: 0 0 35px #ff00ff, 0 0 50px #00ffff, 0 0 65px #00ff99;
  }
}

.disclaimer {
  font-size: 0.9rem;
  color: #bbb;
  text-shadow: 0 0 10px #ff00ff, 0 0 20px #00ffff;
}

/* Медиа-запросы для адаптивности */
@media (max-width: 768px) {
  .title {
    font-size: 2.5rem;
    margin: 20px 0;
  }
  
  .marquee {
    margin: 15px 0 30px 0;
    padding: 10px 0;
  }
  
  .ticker {
    font-size: 1.2rem;
    gap: 30px;
  }
  
  .marquee-content {
    gap: 30px;
    animation-duration: 40s;
  }
  
  .buttons {
    gap: 20px;
    margin: 50px 0;
  }
  
  .btn {
    padding: 15px 25px;
    font-size: 1rem;
  }
  
  .btn.buy.main-btn {
    padding: 20px 40px;
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 2rem;
    margin: 15px 0;
  }
  
  .ticker {
    font-size: 1rem;
  }
  
  .marquee-content {
    gap: 20px;
    animation-duration: 30s;
  }
  
  .buttons {
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .btn.buy.main-btn {
    padding: 15px 30px;
    font-size: 1.2rem;
  }
  
  .avatar {
    width: 80px;
    height: 80px;
  }
  
  .disclaimer {
    font-size: 0.8rem;
    padding: 0 15px;
  }
}

/* Дополнительные медиа-запросы для очень маленьких экранов */
@media (max-width: 360px) {
  .title {
    font-size: 1.8rem;
  }
  
  .ticker {
    font-size: 0.9rem;
  }
  
  .marquee-content {
    gap: 15px;
    animation-duration: 25s;
  }
  
  .btn {
    padding: 10px 15px;
    font-size: 0.8rem;
  }
  
  .btn.buy.main-btn {
    padding: 12px 25px;
    font-size: 1.1rem;
  }
}

/* Медиа-запрос для планшетов */
@media (min-width: 769px) and (max-width: 1024px) {
  .title {
    font-size: 3.5rem;
  }
  
  .buttons {
    gap: 30px;
  }
  
  .btn {
    padding: 18px 35px;
    font-size: 1.1rem;
  }
  
  .btn.buy.main-btn {
    padding: 25px 50px;
    font-size: 1.6rem;
  }
}

/* Дополнительные улучшения для мобильных устройств */
@media (max-width: 768px) {
  /* Улучшаем отображение звезд на мобильных */
  .falling-star {
    width: 1.5px;
    height: 1.5px;
  }
  
  .twinkle-star {
    width: 1.5px;
    height: 1.5px;
  }
  
  /* Улучшаем отображение аватара */
  .avatar {
    margin: 20px auto;
  }
  
  /* Улучшаем отступы для мобильных */
  header {
    padding: 15px 0;
  }
  
  footer {
    padding: 20px 15px;
  }
}

/* Улучшения для ландшафтной ориентации на мобильных */
@media (max-width: 768px) and (orientation: landscape) {
  .title {
    font-size: 2rem;
    margin: 10px 0;
  }
  
  .marquee {
    margin: 10px 0 20px 0;
  }
  
  .buttons {
    margin: 30px 0;
    gap: 15px;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .btn.buy.main-btn {
    padding: 15px 30px;
    font-size: 1.2rem;
  }
}

/* Улучшения для очень широких экранов */
@media (min-width: 1440px) {
  .title {
    font-size: 5rem;
  }
  
  .buttons {
    gap: 40px;
  }
  
  .btn {
    padding: 25px 50px;
    font-size: 1.3rem;
  }
  
  .btn.buy.main-btn {
    padding: 30px 60px;
    font-size: 1.8rem;
  }
  
  .avatar {
    width: 120px;
    height: 120px;
  }
}

/* Падающие звезды и космическая пыль */
.falling-stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.falling-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 4px #ffffff;
}

.falling-star:nth-child(1) {
  top: 10%;
  left: 20%;
  animation: fallingStar1 6s linear infinite;
}

.falling-star:nth-child(2) {
  top: 25%;
  right: 30%;
  animation: fallingStar2 8s linear infinite;
}

.falling-star:nth-child(3) {
  top: 40%;
  left: 60%;
  animation: fallingStar3 7s linear infinite;
}

.falling-star:nth-child(4) {
  top: 55%;
  right: 15%;
  animation: fallingStar4 9s linear infinite;
}

.falling-star:nth-child(5) {
  top: 70%;
  left: 40%;
  animation: fallingStar5 5s linear infinite;
}

.falling-star:nth-child(6) {
  top: 15%;
  left: 80%;
  animation: fallingStar6 10s linear infinite;
}

.falling-star:nth-child(7) {
  top: 35%;
  right: 60%;
  animation: fallingStar7 6.5s linear infinite;
}

.falling-star:nth-child(8) {
  top: 65%;
  right: 45%;
  animation: fallingStar8 7.5s linear infinite;
}

.falling-star:nth-child(9) {
  top: 80%;
  left: 25%;
  animation: fallingStar9 8.5s linear infinite;
}

.falling-star:nth-child(10) {
  top: 45%;
  left: 10%;
  animation: fallingStar10 9.5s linear infinite;
}

@keyframes fallingStar1 {
  0% { 
    transform: translateX(0px) translateY(0px);
    opacity: 0;
  }
  10% { 
    opacity: 1;
  }
  90% { 
    opacity: 1;
  }
  100% { 
    transform: translateX(200px) translateY(300px);
    opacity: 0;
  }
}

@keyframes fallingStar2 {
  0% { 
    transform: translateX(0px) translateY(0px);
    opacity: 0;
  }
  15% { 
    opacity: 1;
  }
  85% { 
    opacity: 1;
  }
  100% { 
    transform: translateX(-180px) translateY(250px);
    opacity: 0;
  }
}

@keyframes fallingStar3 {
  0% { 
    transform: translateX(0px) translateY(0px);
    opacity: 0;
  }
  20% { 
    opacity: 1;
  }
  80% { 
    opacity: 1;
  }
  100% { 
    transform: translateX(150px) translateY(200px);
    opacity: 0;
  }
}

@keyframes fallingStar4 {
  0% { 
    transform: translateX(0px) translateY(0px);
    opacity: 0;
  }
  12% { 
    opacity: 1;
  }
  88% { 
    opacity: 1;
  }
  100% { 
    transform: translateX(-220px) translateY(180px);
    opacity: 0;
  }
}

@keyframes fallingStar5 {
  0% { 
    transform: translateX(0px) translateY(0px);
    opacity: 0;
  }
  8% { 
    opacity: 1;
  }
  92% { 
    opacity: 1;
  }
  100% { 
    transform: translateX(120px) translateY(150px);
    opacity: 0;
  }
}

@keyframes fallingStar6 {
  0% { 
    transform: translateX(0px) translateY(0px);
    opacity: 0;
  }
  18% { 
    opacity: 1;
  }
  82% { 
    opacity: 1;
  }
  100% { 
    transform: translateX(180px) translateY(280px);
    opacity: 0;
  }
}

@keyframes fallingStar7 {
  0% { 
    transform: translateX(0px) translateY(0px);
    opacity: 0;
  }
  14% { 
    opacity: 1;
  }
  86% { 
    opacity: 1;
  }
  100% { 
    transform: translateX(-160px) translateY(220px);
    opacity: 0;
  }
}

@keyframes fallingStar8 {
  0% { 
    transform: translateX(0px) translateY(0px);
    opacity: 0;
  }
  16% { 
    opacity: 1;
  }
  84% { 
    opacity: 1;
  }
  100% { 
    transform: translateX(-140px) translateY(190px);
    opacity: 0;
  }
}

@keyframes fallingStar9 {
  0% { 
    transform: translateX(0px) translateY(0px);
    opacity: 0;
  }
  22% { 
    opacity: 1;
  }
  78% { 
    opacity: 1;
  }
  100% { 
    transform: translateX(200px) translateY(160px);
    opacity: 0;
  }
}

@keyframes fallingStar10 {
  0% { 
    transform: translateX(0px) translateY(0px);
    opacity: 0;
  }
  25% { 
    opacity: 1;
  }
  75% { 
    opacity: 1;
  }
  100% { 
    transform: translateX(160px) translateY(240px);
    opacity: 0;
  }
}
