body {
    margin: 0;
    font-family: 'IBM Plex Sans', sans-serif;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    line-height: 1.6;
  }

  /* Хедер */
  .site-header {
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }

  .header-logo-image {
    height: 50px;
    transition: transform 0.3s;
  }

  .header-logo-image:hover {
    transform: scale(1.1);
  }

  /* Основной контейнер */
  .body-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
  }

  /* Секция hero */
  .hero {
    max-width: 900px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
  }

  .hero-title {
    font-size: 2.5em;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
  }

  .hero-title a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s;
  }

  .hero-title a:hover {
    color: #ffa500;
  }

  .hero-paragraph {
    font-size: 1.2em;
    margin-bottom: 30px;
    text-align: center;
  }

  /* Анимационные фигуры */
  .hero-figure {
    position: relative;
    width: 100%;
    height: 396px;
    margin-top: 20px;
  }

  .placeholder {
    display: block;
    width: 100%;
    height: 100%;
  }

  .hero-figure-box {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #ffd700;
    opacity: 0.8;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    animation: float 6s ease-in-out infinite;
  }

  /* Расположение и ротация фигур */
  .hero-figure-box-01 { top: 10%; left: 20%; transform: rotate(45deg); }
  .hero-figure-box-02 { top: 20%; right: 15%; transform: rotate(-45deg); }
  .hero-figure-box-03 { top: 70%; left: 10%; }
  .hero-figure-box-04 { top: 60%; right: 20%; transform: rotate(-135deg); }
  .hero-figure-box-05 { top: 50%; left: 50%; transform: translate(-50%, -50%) rotate(0deg); }
  .hero-figure-box-06 { top: 15%; right: 25%; }
  .hero-figure-box-07 { bottom: 10%; left: 30%; }
  .hero-figure-box-08 { bottom: 20%; right: 10%; transform: rotate(-22deg); }
  .hero-figure-box-09 { bottom: 25%; left: 15%; transform: rotate(-52deg); }
  .hero-figure-box-10 { bottom: 15%; right: 20%; transform: rotate(-50deg); }

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
  
/* Информация о гео */
#geo_provider_info {
  margin-top: 20px;
  font-size: 14px;
  color: #ddd;
  text-align: center;
}

/* Кнопки и интерактив */
button {
  background: #ffd700;
  color: #000;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
button:hover {
  background: #ffa500;
}
