/* Единый стиль для всех игр */
.game-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #000;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  height: 48px;
}

.game-back-btn {
  background: #333;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s;
}

.game-back-btn:hover {
  background: #444;
}

.game-leaderboard-btn {
  background: #1775ff;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 8px;
  font-size: 18px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.game-leaderboard-btn:hover {
  background: #0d5bb8;
}

.game-content {
  margin-top: 48px;
  min-height: calc(100vh - 48px);
}

/* Мобильные стили */
@media (max-width: 768px) {
  .game-header {
    padding: 8px 12px;
    height: 44px;
  }
  
  .game-back-btn {
    padding: 6px 10px;
    font-size: 13px;
  }
  
  .game-leaderboard-btn {
    width: 32px;
    height: 32px;
    padding: 6px;
    font-size: 16px;
  }
  
  .game-content {
    margin-top: 44px;
    min-height: calc(100vh - 44px);
  }
}

/* Очень маленькие экраны */
@media (max-width: 480px) {
  .game-header {
    padding: 6px 8px;
    height: 40px;
  }
  
  .game-back-btn {
    padding: 4px 8px;
    font-size: 12px;
  }
  
  .game-leaderboard-btn {
    width: 28px;
    height: 28px;
    padding: 4px;
    font-size: 14px;
  }
  
  .game-content {
    margin-top: 40px;
    min-height: calc(100vh - 40px);
  }
}
