*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #242020;
  font-family: Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.game-container {
  text-align: center;
  background-color: #131313;
  border-radius: 20px;
  padding: 40px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6),
    inset 0 0 20px rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.action-btn {
  padding: 14px 35px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(45deg, #6e45e2, #a855f7);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(110, 69, 226, 0.4),
    0 0 10px rgba(110, 69, 226, 0.2);
  position: relative;
  overflow: hidden;
}

.action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(110, 69, 226, 0.6),
    0 0 15px rgba(110, 69, 226, 0.4);
}

.action-btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(110, 69, 226, 0.6);
}

.game-info {
  text-transform: uppercase;
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}
