/* Общие стили */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-image: url('images/kudini.png'), linear-gradient(to right, #000, #000);
  background-size: contain;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

/* Контейнер для содержимого */
.container {
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  width: 100%;
  max-width: 600px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.container:hover {
  transform: scale(1.05);
}

header h1 {
  font-size: 3.2em;
  color: #fff;
  margin-bottom: 10px;
}

header p {
  color: #ddd;
  font-size: 1.1em;
}

.content h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #fff;
}

.content p {
  font-size: 1.2em;
  color: #bbb;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  background-color: #4C9EFB;
  color: white;
  padding: 15px 40px;
  font-size: 1.2em;
  border-radius: 50px;
  text-decoration: none;
  margin-top: 20px;
}

.btn:hover {
  background-color: #3388cc;
}

footer {
  margin-top: 40px;
  font-size: 0.9em;
  color: #bbb;
}

/* Анимация падающих символов */
#falling-symbols {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.falling-symbol {
  position: absolute;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  animation: fall 10s linear infinite;
}

@keyframes fall {
  0% {
    top: -10%;
    opacity: 0.8;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Медиа-запросы для мобильных устройств */
@media (max-width: 768px) {
  body {
    padding: 0 10px;
  }

  .container {
    padding: 20px;
    max-width: 100%;
  }
}
