body {
  margin: 0;
  background-color: #87ceeb;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: 'Arial', sans-serif;
}

/* Основной контейнер */
.game-container {
  width: 600px;
  height: 650px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  cursor: default;
}

/* Начальная страница */
#introScreen {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
}

/* Шапка */
.header {
  background-image: url('1.jpg');
  width: 100%;
}

/* Текст в шапке */
.header .title-text {
  padding: 0px;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}

.header .text {
  padding: 0px;
  font-size: 25px;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  margin-top: 0px;
}

/* Заголовок "Тренирует:" */
.description .title {
  text-align: center;
  font-weight: bold;
  font-size: 25px;
  color: #294296;
  margin-top: 5px;
  margin-bottom: 0;
}

.bold-text {
  font-weight: bold;
}

/* Остальной текст */
.description .text-block {
  text-align: left;
  padding-left: 20px;
  font-size: 18px;
  color: #333;
}

/* Для каждого блока с изображением и текстом */
.text-block .item {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  margin-top: 0;
}

/* Размер и стиль изображения */
.icon {
  width: 30px; 
  height: auto;
  margin-right: 15px; 
}

.description {
  width: 70%;
  box-sizing: border-box;
}

/* Кнопка "Далее" */
.blue-button {
  background-color: #004080;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 18px;
  border-radius: 8px;
  cursor: pointer;
  margin-bottom: 40px;
  transition: background-color 0.3s;
}

.blue-button:hover {
  background-color: #0066cc;
}

/* Игра */
#gameScreen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  box-sizing: border-box;
}

/* Заголовок игры */
#gamePrompt {
  font-size: 22px;
  margin-bottom: 15px;
  text-align: center;
}

/* Блок с числовыми кнопками */
.buttons-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.number-btn {
  padding: 15px 25px;
  font-size: 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  min-width: 80px;
  text-align: center;
}

.number-btn:hover {
  opacity: 0.8;
}

.correct {
  background-color: #66cc66;
}

.incorrect {
  background-color: #ff6666;
}