.game-container {
  max-width: 900px;
  min-height: 100vh;
  justify-content: flex-start;
}

/* Header & Scoreboard styling shared with theme */
.game-header {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--border-dim);
  padding-bottom: 15px;
}

.back-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: bold;
  border-bottom: 1px dashed transparent;
  transition: all 0.2s;
  display: inline-block;
}

.back-link:hover {
  color: var(--fg);
  border-bottom-color: var(--fg);
}

.header-right {
  display: flex;
  justify-content: flex-end;
}

.scoreboard-bar {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border: 1px solid var(--border-dim);
  background-color: var(--accent);
  padding: 15px 10px;
  margin-bottom: 30px;
}

.score-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  flex: 1;
}

.score-item .label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}

.score-item .val {
  font-size: 1.6rem;
  font-weight: bold;
}

.score-divider {
  width: 1px;
  height: 35px;
  background-color: var(--border-dim);
}

/* Arena Styles */
.arena-wrapper {
  width: 100%;
  height: 220px;
  border: 1px solid var(--border-dim);
  background-color: #0b0b0b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 550px) {
  .arena-wrapper {
    padding: 15px;
  }
}

.hand-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.side-label {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.hand-gesture {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  transition: transform 0.15s ease;
}

.hand-gesture.mirrored {
  transform: scaleX(-1);
}

.gesture-svg {
  width: 100%;
  height: 100%;
}

.result-banner {
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: -0.05em;
  text-align: center;
  padding: 10px 20px;
  border: 1px solid var(--border-dim);
  background-color: var(--bg);
  min-width: 100px;
  text-transform: uppercase;
}

/* Shake Animations */
@keyframes shakeLeftHand {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(-5deg); }
  75% { transform: translateY(10px) rotate(5deg); }
}

@keyframes shakeRightHand {
  0%, 100% { transform: scaleX(-1) translateY(0) rotate(0deg); }
  25% { transform: scaleX(-1) translateY(-15px) rotate(-5deg); }
  75% { transform: scaleX(-1) translateY(10px) rotate(5deg); }
}

.shaking-left {
  animation: shakeLeftHand 0.4s ease-in-out infinite;
}

.shaking-right {
  animation: shakeRightHand 0.4s ease-in-out infinite;
}

/* Bottom Dashboard Styles */
.dashboard {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.choices-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  width: 100%;
}

.choice-button {
  padding: 18px 10px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
}

.stats-commentary-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 20px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .stats-commentary-row {
    grid-template-columns: 1fr;
  }
}

.status-box, .taunt-box {
  border: 1px solid var(--border-dim);
  padding: 20px;
  position: relative;
  background-color: #0b0b0b;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.box-title {
  position: absolute;
  top: -10px;
  left: 15px;
  background-color: var(--bg);
  padding: 0 8px;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  border: 1px solid var(--border-dim);
}

.status-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.status-row:last-child {
  margin-bottom: 0;
}

.taunt-text {
  text-align: center;
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.4;
}

.reset-wrapper {
  display: flex;
  align-items: center;
}

.reset-button {
  height: 100%;
  width: 100%;
  padding: 12px 25px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.05em;
  min-height: 50px;
}

.reset-button.confirm-state {
  border-color: #ff3333;
  color: #ff3333;
  background: rgba(255, 51, 51, 0.05);
}

.reset-button.confirm-state:hover {
  background: #ff3333;
  color: #ffffff;
}

/* Result banner statuses */
.result-win {
  background-color: var(--fg);
  color: var(--bg);
  border-color: var(--fg);
}

.result-lose {
  border-style: double;
  border-width: 4px;
  text-decoration: line-through;
}

