/* =====================================================================
   SCOUNDREL — board.css
   Spielfeld "Der Raum" und der Knopf "Raum meiden"
   ===================================================================== */

.board{
  background:linear-gradient(180deg, var(--stone-hi), var(--stone) 60%, #15110b);
  border:1px solid var(--stone-edge);
  border-radius:14px;
  padding:22px clamp(12px,3vw,26px) 26px;
  box-shadow:var(--shadow), inset 0 1px 0 rgba(255,255,255,.04), inset 0 -30px 60px rgba(0,0,0,.45);
  position:relative;
}
.board-head{
  display:flex; align-items:center; justify-content:space-between; gap:12px;
  margin-bottom:16px;
}
.board-title{
  font-family:var(--display); font-weight:700; letter-spacing:.18em; text-transform:uppercase;
  font-size:clamp(12px,2.4vw,15px); color:var(--gold);
}
.board-title small{
  display:block; color:var(--ink-faint); letter-spacing:.04em; text-transform:none;
  font-style:italic; font-weight:400; font-size:12px; margin-top:2px;
}

.room{
  display:flex; gap:clamp(8px,2.4vw,18px); justify-content:center; align-items:flex-start;
  flex-wrap:wrap; min-height:178px;
}

.controls{ display:flex; justify-content:center; margin-top:20px; }
.avoid{
  font-family:var(--display); font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  font-size:clamp(12px,2.5vw,14px); cursor:pointer;
  color:var(--bg-0); background:linear-gradient(180deg,var(--gold-hi),var(--gold));
  border:1px solid var(--gold-deep); border-radius:30px; padding:11px 26px;
  box-shadow:0 6px 16px -4px rgba(201,168,74,.5), inset 0 1px 0 rgba(255,255,255,.4);
  transition:transform .15s, box-shadow .15s, filter .2s;
}
.avoid:hover:not(:disabled){ transform:translateY(-2px); box-shadow:0 10px 22px -4px rgba(201,168,74,.6); }
.avoid:focus-visible{ outline:3px solid var(--gold-hi); outline-offset:3px; }
.avoid:disabled{
  background:linear-gradient(180deg,#5a4e38,#403727); color:#9c8d70;
  border-color:#2e271a; box-shadow:none; cursor:not-allowed; filter:saturate(.4);
}
