/* ===== ОСНОВНОЙ ФОН (ТЁМНО-ТЁМНО СЕРЫЙ, КАК TELEGRAM) ===== */
body {
  margin: 0;
  padding: 0;
  background: #0f0f0f; /* ТОЛЬКО ФОН */
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ===== ЗАГОЛОВОК ===== */
h1 {
  text-align: center;
  margin: 12px 0;
  font-size: 22px;
}

/* ===== КОНТЕНТ ===== */
#content {
  padding: 10px;
}

/* ===== КАРТОЧКИ ===== */
.card {
  background: #1c1c1c; /* чуть светлее фона */
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
}

/* ===== КНОПКИ ===== */
button {
  background: #1f3cff; /* насыщенно тёмно-синий */
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  margin: 5px 0;
  width: 100%;
  font-size: 16px;
}

button:active {
  opacity: 0.8;
}

/* ===== INPUT / SELECT / TEXTAREA ===== */
input,
select,
textarea {
  width: 100%;
  background: #1c1c1c;
  color: #ffffff;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 8px;
}

/* ===== НИЖНЕЕ МЕНЮ ===== */
#menu {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f0f0f;
  display: flex;
  gap: 5px;
  padding: 8px;
  border-top: 1px solid #222;
}

#menu button {
  flex: 1;
  margin: 0;
}

/* ===== МОДАЛЬНОЕ ОКНО ===== */
#modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

#modal-body {
  background: #1c1c1c;
  padding: 15px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
}

#modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}