/* Сброс базовых отступов */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at top, #222 0%, #000 70%);
  color: #fff;
}

/* Центрирование всей игры */
#arkanoid-page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Контейнер игры */
.arkanoid-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 24px 24px;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(255, 204, 0, 0.25);
}

/* Заголовок */
.arkanoid-title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffcc00;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.6);
}

/* Само игровое поле */
#gameCanvas {
  border: 3px solid #ffcc00;
  border-radius: 10px;
  background: linear-gradient(to bottom, #111, #000);
  box-shadow:
    0 0 20px rgba(255, 204, 0, 0.3),
    inset 0 0 10px rgba(255, 255, 255, 0.05);
  max-width: 90vw;
  max-height: 70vh;
}

/* Ссылка назад */
.back-link {
  margin-top: 10px;
  font-size: 14px;
  color: #aaa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: #ffcc00;
  text-shadow: 0 0 6px rgba(255, 204, 0, 0.6);
}