/* ===== ODD ONE OUT ===== */
/* File: /games/odd-one-out/styles-odd-one-out.css */

#game-odd-one-out {
  width: 100%;
  height: 100%;
  background: #0d1012;
  overflow: hidden;
}

.odd-one-out-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 500px;
  background: radial-gradient(ellipse at 50% 0%, #12261e 0%, #0d1012 70%);
  font-family: 'Space Mono', 'Courier New', monospace;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  padding: 0 0 24px 0;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: visible;
}

.odd-one-out-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 0;
  box-sizing: border-box;
}

.odd-one-out-title {
  font-size: clamp(18px, 4.5vw, 26px);
  font-weight: 700;
  color: #6dffb0;
  letter-spacing: 0.04em;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.odd-one-out-stats-row {
  display: flex;
  gap: 8px;
}

.odd-one-out-stat-display {
  font-size: 12px;
  font-weight: 700;
  color: #e0e8f0;
  background: rgba(109, 255, 176, 0.1);
  border: 1.5px solid #6dffb0;
  border-radius: 8px;
  padding: 5px 10px;
}

.odd-one-out-grid-area {
  width: 100%;
  max-width: 440px;
  padding: 14px 8px 0;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0px;
}

.odd-one-out-character-button {
  height: clamp(20px, 5.2vw, 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #d8f0e0;
  font-size: clamp(9px, 2vw, 12px);
  font-family: 'Space Mono', monospace;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.15s, transform 0.1s;
}

.odd-one-out-character-button:active {
  transform: scale(0.9);
}

.odd-one-out-character-button-correct {
  color: #6dffb0 !important;
}

.odd-one-out-character-button-incorrect {
  color: #ff6b6b !important;
}

.odd-one-out-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: rgba(13, 16, 18, 0.94);
  border-radius: 12px;
  text-align: center;
  padding: 24px;
  box-sizing: border-box;
  z-index: 5;
}

.odd-one-out-overlay-hidden {
  display: none;
}

.odd-one-out-overlay-heading {
  font-size: 22px;
  font-weight: 700;
  color: #6dffb0;
  margin: 0;
}

.odd-one-out-overlay-text {
  font-size: 13px;
  color: #c8ccd8;
  max-width: 320px;
  line-height: 1.5;
  margin: 0;
}

.odd-one-out-overlay-score {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
}

.odd-one-out-primary-button {
  background: rgba(109, 255, 176, 0.1);
  border: 1.5px solid #6dffb0;
  border-radius: 10px;
  color: #6dffb0;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Space Mono', monospace;
  padding: 10px 24px;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s;
}

.odd-one-out-primary-button:active {
  background: rgba(109, 255, 176, 0.28);
}


