* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  margin: 0;
  background: #0f172a;
  color: #e5e7eb;
}

.game {
  display: flex;
  height: 100vh;
}

/* ===== BOARD ===== */
.board {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(10, 1fr);
  gap: 4px;
  padding: 10px;
  flex: 1;
  background: #020617;
}

.cell {
  background: #111827;
  border-radius: 8px;
  padding: 6px;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: default;
  transition: transform 0.1s;
}

.cell:hover {
  transform: scale(1.02);
}

.cell strong {
  font-size: 13px;
}

/* ===== PANEL ===== */
.panel {
  width: 300px;
  padding: 20px;
  background: #020617;
  border-left: 1px solid #1f2933;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel h1 {
  margin: 0;
  text-align: center;
}

.stats div {
  margin-bottom: 6px;
}

/* ===== BUTTON ===== */
.roll {
  padding: 12px;
  font-size: 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: #2563eb;
  color: white;
}

.roll:disabled {
  background: #334155;
  cursor: not-allowed;
}

/* ===== LOG ===== */
.log {
  background: #020617;
  border: 1px solid #1f2933;
  border-radius: 8px;
  padding: 10px;
  min-height: 100px;
  font-size: 13px;
  overflow-y: auto;
}
