  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }


    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  overflow: hidden;
  height: 100vh;
background-color: black!important;

  position: relative;
  color: white;
}

body::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

/* 📱 Для телефонов отдельная картинка! */
@media (max-width: 768px) {
  body {
    
    background-repeat: no-repeat !important;
    background-position: center top !important;
    background-size: contain !important;
    background-color: black !important;
  }
      /* Контейнер логотипов */
.logo-container {
  position: relative;
  width: 100%;
  height: 150px; /* можно больше или меньше, если надо */
  z-index: 10;
}

/* Круглый логотип "Logo S" в левом верхнем углу */
.logo-round {
  position: absolute;
  top: 30px;
  left: 20px;
  width: 50px!important;
  height: 50px!important;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid gold;
  box-shadow: 0 0 25px 10px gold; /* 🔥 СИЛЬНОЕ СВЕЧЕНИЕ! */
  background: black; /* если вдруг надо, чтобы круг был на чёрном фоне */
}

/* Логотип "Starinup" по центру сверху */
.starinup-logo {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  height: 100px!important; /* 👍 Только высота */
  width: 150px!important; /* ширина автоматически */
  background: none!important;
  border: none;
  box-shadow: none;
  mix-blend-mode: screen;
  box-shadow: 0 0 25px 10px gold; /* 🔥 СИЛЬНОЕ СВЕЧЕНИЕ! */
}

}



    /* Контейнер логотипов */
.logo-container {
  position: relative;
  width: 100%;
  height: 150px; /* можно больше или меньше, если надо */
  z-index: 10;
}

/* Круглый логотип "Logo S" в левом верхнем углу */
.logo-round {
  position: absolute;
  top: 30px;
  left: 20px;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid gold;
  box-shadow: 0 0 25px 10px gold; /* 🔥 СИЛЬНОЕ СВЕЧЕНИЕ! */
  background: black; /* если вдруг надо, чтобы круг был на чёрном фоне */
}

/* Логотип "Starinup" по центру сверху */
.starinup-logo {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  
  height: 200px; /* 👍 Только высота */
  width: 300px; /* ширина автоматически */
  
  background: none!important;
  border: none;
  box-shadow: none;
  
  mix-blend-mode: screen;
}



    .phrase-block {
      position: absolute;
      text-align: center;
      animation: float 10s infinite;
      opacity: 0.9;
    }
    .phrase-block h2 {
      font-size: 22px;
      margin-bottom: 5px;
    }
    .phrase-block p {
      font-size: 16px;
      font-weight: 300;
    }
    @keyframes float {
      0% { transform: translateY(0) rotate(-3deg); }
      50% { transform: translateY(-20px) rotate(3deg); }
      100% { transform: translateY(0) rotate(-3deg); }
    }

    /* Падающие звезды */
    #stars-canvas {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      pointer-events: none;
    }

    /* Шарики */
    .balloon {
      position: absolute;
      bottom: -150px;
      width: 40px;
      height: 60px;
      background: radial-gradient(circle at 30% 30%, #ff6666, #cc0000);
      border-radius: 50% 50% 45% 45%;
      animation: floatBalloon 20s infinite ease-in-out;
      opacity: 0.8;
      z-index: 3;
    }
    @keyframes floatBalloon {
      0% { transform: translateX(0) translateY(0); }
      50% { transform: translateX(100px) translateY(-600px) rotate(30deg); }
      100% { transform: translateX(0) translateY(0); }
    }

    /* Кубки */
    .trophy {
      position: absolute;
      width: 50px;
      height: auto;
      animation: blink 4s infinite;
      z-index: 4;
    }
    @keyframes blink {
      0%, 100% { opacity: 0; }
      50% { opacity: 1; }
    }

    #fireworks {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    pointer-events: none;
  }

  .police-shine {
  position: absolute; /* ✅ ДАЁМ ПОЗИЦИОНИРОВАНИЕ! */
  width: 150px;
  height: 80px;
  text-align: center!important;
  align-items: center !important;
  transform: translateY(-50%) !important;
  bottom:50px!important; /* Отступ сверху */
  right: 120px!important; /* Отступ справа */
  display: inline-block;
  padding: 2px 4px;
  background-color: black!important; 
  color: white;
  font-weight: bold;
  border: 4px solid gold;
  border-radius: 12%;
   box-shadow: 0 0 24px gold, 0 0 34px gold, 0 0 44px gold, 0 0 54px gold!important;
  text-decoration: none;
  font-size: 45px;
  animation: policeBlink 1s infinite;
  transition: 0.3s;
  z-index: 9999; /* 🔥 Чтобы всегда была наверху */
}


/* Анимация мерцания */
@keyframes policeBlink {
    0% {
      color: red;
      text-shadow: 0 0 10px red;
    }

    50% {
      color: blue;
      text-shadow: 0 0 10px blue;
    }

    100% {
      color: red;
      text-shadow: 0 0 10px red;
    }
  }
