/* Сброс стилей */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
}

body, html {
  height: 100%;
  background: #111; /* тёмный фон */
  color: #FFD700; /* жёлтый текст */
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  text-align: center;
}

/* Заголовки */
h1, h2 {
  text-shadow: 0 0 5px #FFD700;
}

h2 {
  margin-bottom: 15px;
  font-size: 1.8rem;
}

/* Canvas фейерверка */
canvas#fireworks {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* Форма */
.alpha-form {
  display: none; /* скрыта по умолчанию */
  flex-direction: column;
  gap: 12px;
  width: 92%;
  max-width: 600px;
  padding: 28px;
  border-radius: 8px;
  background: #32323291;
  box-shadow: 0 0 10px #686868;
  animation: glow 2s infinite alternate;

  /* Центрирование */
  margin: 0 auto;
}
.alpha-form.visible {
  display: flex; /* показываем форму через JS */
}
.alpha-form.hidden {
  display: none !important;
}


/* Логотип */
.logo {
  width: 120px;
  height: auto;
  margin: 0 auto 15px auto;
  animation: glow-logo 1.5s infinite alternate;
  border-radius: 7%;
}

/* Мерцание логотипа */
@keyframes glow-logo {
  from { filter: drop-shadow(0 0 5px #FFD700); }
  to   { filter: drop-shadow(0 0 20px #FFFF33); }
}

/* Input поля */
.alpha-form input {
  padding: 10px;
  border: 2px solid #FFD700;
  border-radius: 6px;
  background: #aeaeae;
  color: #000;
  font-size: 1rem;
  outline: none;
}

.alpha-form input::placeholder {
  color: #000;
}

/* Select */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #aeaeae url("data:image/svg+xml;utf8,<svg fill='%23666' height='20' viewBox='0 0 24 24' width='20'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 0.75rem center;
  background-size: 1rem;
  font-size: 1rem;
  cursor: pointer;
  color: #000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: border-color 0.2s, box-shadow 0.2s;
}

select:focus {
  outline: none;
  border-color: #f4ef52;
  box-shadow: 0 0 0 3px rgba(255, 235, 59, 0.2);
}

option {
  color: #000;
  padding: 0.5rem;
}

/* Кнопка */
.alpha-form button {
  padding: 10px;
  background: #FFD700;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  color: #111;
  transition: 0.3s;
}

.alpha-form button:hover {
  background: #FFC107;
}

/* Сообщение */
#alpha-msg {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #FFEB3B;
}

/* Анимация формы */
@keyframes glow {
  from { box-shadow: 0 0 10px #FFD700; }
  to   { box-shadow: 0 0 25px #FFFF33; }
}

/* Скрытие формы через класс */
.alpha-form.hidden {
  display: none;
}
