.game-trigger {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

body.doom-unlocked .game-trigger {
  display: inline-flex;
}

.game-trigger-logo {
  width: 3rem;
  height: 2.25rem;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  display: block;
}

.game-menu {
  display: grid;
  gap: 0.75rem;
}

.doom-player {
  width: 100%;
  min-height: 460px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #0f131c;
  overflow: hidden;
}

.game-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

/* Doom Modal Fixes */
.game-modal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.game-modal-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.game-modal-logo {
  height: 1.5rem;
  width: auto;
  object-fit: contain;
}

.game-modal-close {
  position: static !important;
  width: 2.2rem !important;
  height: 2.2rem !important;
}

#game-modal .modal-dialog {
  max-width: 960px;
  padding: 1.25rem;
}

.doom-player {
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 400px;
  max-height: 70vh;
  background: #000;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #ff2a2a44;
}

#game-modal .modal-dialog {
  background: linear-gradient(145deg, #050a10, #1a0505);
  border-color: #ff2a2a33;
}
