/* Основные стили для страницы-заглушки */
body {
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: linear-gradient(135deg, #74ebd5, #ACB6E5);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  color: #fff;
}

.container {
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  max-width: 400px;
}

h1 {
  font-size: 72px;
  margin: 0;
  font-weight: 700;
  letter-spacing: 10px;
}

p {
  font-size: 20px;
  margin: 20px 0;
}

.button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  color: #fff;
  background-color: #ff7e5f;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.button:hover {
  background-color: #eb6750;
}