/* ====== ベース ====== */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0f2b1d;
  --bg2: #15402a;
  --felt: #1b5e3a;
  --accent: #ffd54a;
  --accent-d: #e6b800;
  --text: #f5f7f2;
  --muted: #9fb6a8;
  --card-bg: #ffffff;
  --red: #d33b3b;
  --black: #1c1c1c;
  --panel: rgba(0, 0, 0, 0.28);
  --danger: #ff6b6b;
  --radius: 14px;
}

html, body {
  height: 100%;
}
body {
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  color: var(--text);
  background: radial-gradient(ellipse at top, var(--bg2), var(--bg));
  min-height: 100vh;
}

#app { min-height: 100vh; }
.hidden { display: none !important; }

.screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* ====== ボタン・入力 ====== */
.btn {
  border: none;
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .08s ease, filter .15s ease, opacity .15s ease;
  color: #1a1a1a;
}
.btn:hover { filter: brightness(1.05); }
.btn:active { transform: translateY(1px); }
.btn:disabled { opacity: .4; cursor: not-allowed; filter: grayscale(.3); }
.btn-primary { background: linear-gradient(180deg, var(--accent), var(--accent-d)); }
.btn-secondary { background: #d7e6dc; }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid rgba(255,255,255,.3); }
.btn-danger { background: var(--danger); color: #fff; }
.btn-block { display: block; width: 100%; }
.btn-small { padding: 7px 12px; font-size: 13px; }

.field { display: block; text-align: left; margin: 14px 0; }
.field > span { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.95);
  color: #1a1a1a;
  font-size: 16px;
}
.code-input { text-transform: uppercase; letter-spacing: .35em; text-align: center; font-weight: 700; }
.error-msg { color: var(--danger); font-size: 13px; min-height: 18px; margin-top: 10px; }

/* ====== ホーム ====== */
.home-card, .lobby-card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 28px;
  width: 100%;
  max-width: 380px;
  text-align: center;
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 50px rgba(0,0,0,.4);
}
.logo { font-size: 34px; margin-bottom: 4px; }
.tagline { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.divider { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 12px; margin: 18px 0; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,.15); }

/* ====== ロビー ====== */
.lobby-card h2 { margin-bottom: 6px; }
.lobby-hint { color: var(--muted); font-size: 13px; margin-bottom: 10px; }
.room-code-display {
  font-size: 46px;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--accent);
  background: rgba(0,0,0,.3);
  border-radius: 14px;
  padding: 14px 10px;
  margin-bottom: 10px;
}
.players-title { margin: 20px 0 10px; font-size: 16px; text-align: left; }
.player-list { list-style: none; text-align: left; }
.player-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
}
.player-list .pname { font-weight: 600; }
.badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}
.badge-host { background: var(--accent); color: #1a1a1a; }
.badge-cpu { background: #5b8def; color: #fff; }
.badge-you { background: #2fbf71; color: #fff; }
.player-list .spacer { flex: 1; }
.btn-remove {
  background: transparent;
  border: none;
  color: var(--danger);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
}
.lobby-controls { display: flex; gap: 10px; margin-top: 18px; }
.lobby-controls .btn { flex: 1; }
.wait-msg { color: var(--muted); font-size: 14px; margin-top: 16px; }

/* ====== 対戦ボード ====== */
.board { width: 100%; max-width: 980px; margin: 0 auto; padding: 14px; }
.screen#screen-board { align-items: flex-start; }
.board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.board-roomcode { font-size: 13px; color: var(--muted); }
.board-roomcode span { color: var(--accent); font-weight: 700; letter-spacing: .12em; }
.turn-banner {
  flex: 1;
  min-width: 200px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(0,0,0,.25);
}
.turn-banner.you { background: linear-gradient(180deg, var(--accent), var(--accent-d)); color: #1a1a1a; animation: pulse 1.4s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,213,74,.5);} 50% { box-shadow: 0 0 0 8px rgba(255,213,74,0);} }

.opponents {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 22px;
}
.opp-panel {
  background: rgba(0,0,0,.22);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 12px;
  min-width: 150px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
}
.opp-panel.drawer { border-color: #6fd3ff; }
.opp-panel.target { border-color: var(--accent); box-shadow: 0 0 18px rgba(255,213,74,.4); }
.opp-panel.finished { opacity: .55; }
.opp-head { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 8px; font-weight: 700; }
.opp-role { font-size: 11px; color: var(--muted); margin-bottom: 8px; min-height: 14px; }
.opp-role.target-text { color: var(--accent); font-weight: 700; }
.opp-cards { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; }
.opp-finished-tag { font-size: 13px; color: #2fbf71; font-weight: 700; }
/* 観戦時に表向きで見える相手の手札は少し小さく表示 */
.opp-cards.revealed .card { width: 34px; height: 48px; }
.opp-cards.revealed .card-face .c-rank, .opp-cards.revealed .card-face .c-suit { font-size: 13px; }
.opp-cards.revealed .card-joker { font-size: 9px; }
.opp-cards.revealed .card-joker::after { font-size: 15px; }

/* カード共通 */
.card {
  width: 44px;
  height: 62px;
  border-radius: 8px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  user-select: none;
  position: relative;
  box-shadow: 0 2px 5px rgba(0,0,0,.35);
}
.card-face { background: var(--card-bg); color: var(--black); }
.card-face.red { color: var(--red); }
.card-face .c-rank { font-size: 17px; line-height: 1; }
.card-face .c-suit { font-size: 17px; line-height: 1; }
.card-joker {
  background: linear-gradient(135deg, #7b2ff7, #f107a3);
  color: #fff;
  font-size: 11px;
  letter-spacing: .04em;
}
.card-joker::after { content: "🃏"; font-size: 20px; }
.card-back {
  background:
    repeating-linear-gradient(45deg, #21477f 0 6px, #1a3a68 6px 12px);
  border: 2px solid rgba(255,255,255,.2);
  color: transparent;
}
.card-back::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,.25);
}

/* target の引けるカード */
.opp-cards.clickable .card-back { cursor: pointer; transition: transform .12s, box-shadow .12s; }
.opp-cards.clickable .card-back:hover { transform: translateY(-8px); box-shadow: 0 8px 16px rgba(0,0,0,.5); }

.my-area {
  background: rgba(0,0,0,.25);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 18px;
}
.my-label { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.my-hand { display: flex; flex-wrap: wrap; gap: 6px; min-height: 64px; }
.my-hand .card { width: 50px; height: 70px; }
.my-empty { color: var(--muted); font-size: 14px; padding: 12px; }

.log-area { background: rgba(0,0,0,.2); border-radius: var(--radius); padding: 12px 14px; }
.log-title { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.event-log { list-style: none; max-height: 160px; overflow-y: auto; font-size: 14px; }
.event-log li { padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.event-log li.hl { color: var(--accent); font-weight: 700; }

/* ====== 決着オーバーレイ ====== */
.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.7);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; z-index: 50;
  backdrop-filter: blur(3px);
}
.overlay-card {
  background: var(--bg2);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 28px;
  width: 100%; max-width: 420px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.finish-title { font-size: 26px; margin-bottom: 12px; }
.finish-loser {
  font-size: 20px; font-weight: 800;
  background: linear-gradient(135deg, #7b2ff7, #f107a3);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 18px;
}
.finish-ranking { list-style: none; text-align: left; margin-bottom: 20px; }
.finish-ranking li {
  display: flex; gap: 10px; align-items: center;
  padding: 8px 12px; border-radius: 10px;
  background: rgba(255,255,255,.06); margin-bottom: 6px;
}
.finish-ranking li.loser { background: rgba(241,7,163,.2); }
.finish-ranking .rank-pos { font-weight: 800; color: var(--accent); width: 34px; }
.finish-ranking .rank-pos.loser { color: var(--danger); }

/* ====== ゲーム選択（ホーム） ====== */
.game-picker { display: flex; flex-direction: column; gap: 10px; }
.game-card {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  background: rgba(255,255,255,.06);
  border: 2px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  color: var(--text);
  transition: border-color .15s, background .15s, transform .08s;
}
.game-card:hover { background: rgba(255,255,255,.1); }
.game-card:active { transform: translateY(1px); }
.game-card.selected {
  border-color: var(--accent);
  background: rgba(255,213,74,.14);
  box-shadow: 0 0 14px rgba(255,213,74,.25);
}
.game-card .game-emoji { font-size: 30px; line-height: 1; }
.game-card .game-info { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.game-card .game-name { font-weight: 800; font-size: 16px; }
.game-card .game-desc { font-size: 12px; color: var(--muted); }

.badge-uno { background: #fdd835; color: #1a1a1a; }
.finish-ranking li.winner { background: rgba(255,213,74,.22); }
.finish-ranking li.winner .rank-pos { color: var(--accent); }

/* ====== UNO: 中央の場 ====== */
.uno-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  background: rgba(0,0,0,.25);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 18px;
}
.uno-topwrap { display: flex; align-items: center; justify-content: center; }
.uno-info { display: flex; flex-direction: column; gap: 6px; font-size: 14px; }
.uno-info-line { display: flex; align-items: center; gap: 8px; color: var(--text); }
.uno-info-line.uno-pending { color: var(--accent); font-weight: 800; }
.uno-colorchip {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 30px; padding: 2px 10px; border-radius: 999px;
  color: #fff; font-weight: 800; font-size: 13px;
}

/* ====== UNO: カード ====== */
.uno-card {
  width: 52px;
  height: 74px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
  background: #43a047;
  border: 3px solid rgba(255,255,255,.85);
  box-shadow: 0 2px 6px rgba(0,0,0,.4);
  user-select: none;
  position: relative;
}
.uno-card.uno-light { color: #1a1a1a; }
.uno-card .uno-glyph { font-size: 22px; line-height: 1; }
.uno-card.uno-wild {
  background: conic-gradient(#e53935 0 25%, #fdd835 25% 50%, #43a047 50% 75%, #1e88e5 75% 100%);
  color: #fff;
}
.uno-card.uno-wild .uno-glyph {
  background: rgba(0,0,0,.55); border-radius: 6px; padding: 2px 6px;
}
.uno-card.uno-back {
  background: repeating-linear-gradient(45deg, #21477f 0 6px, #1a3a68 6px 12px);
  border-color: rgba(255,255,255,.3);
  color: transparent;
}
.uno-card.uno-back::after { content: "UNO"; color: rgba(255,255,255,.5); font-size: 11px; }
/* 相手手札は小さめ */
.uno-opp-cards .uno-card { width: 26px; height: 38px; border-width: 2px; }
.uno-opp-cards .uno-card .uno-glyph { font-size: 13px; }
/* 自分の手札 */
.my-hand .uno-card { width: 56px; height: 80px; }
.my-hand .uno-card .uno-glyph { font-size: 24px; }
.my-hand .uno-card.playable {
  cursor: pointer;
  outline: 3px solid var(--accent);
  transform: translateY(-6px);
  transition: transform .12s, box-shadow .12s;
}
.my-hand .uno-card.playable:hover { transform: translateY(-14px); box-shadow: 0 10px 18px rgba(0,0,0,.5); }
.my-hand .uno-card.unplayable { opacity: .55; }

/* ====== UNO: 操作ボタン ====== */
.uno-controls { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.uno-wait-text { color: var(--muted); font-size: 14px; }

/* ====== UNO: 色選択モーダル ====== */
.color-card { max-width: 360px; }
.color-choices { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 18px 0; }
.color-choice {
  border: none;
  border-radius: 12px;
  padding: 22px 0;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  cursor: pointer;
  transition: transform .08s, filter .15s;
}
.color-choice:hover { filter: brightness(1.08); }
.color-choice:active { transform: translateY(1px); }

/* ====== 汎用の中央領域 / 操作ボタン群 ====== */
.game-extra {
  background: rgba(0,0,0,.22);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 14px;
  overflow-x: auto;
}
.play-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  align-items: center;
}
.play-hint { color: var(--muted); font-size: 13px; }
.btn-play-card {
  background: var(--card-bg);
  color: var(--black);
  font-weight: 800;
  padding: 8px 12px;
  min-width: 44px;
  border-radius: 8px;
}
.btn-play-card.red { color: var(--red); }
.btn-play-card:hover { filter: brightness(1.05); transform: translateY(-1px); }

/* ====== 七並べ ====== */
.sevens-board { display: flex; flex-direction: column; gap: 6px; min-width: 560px; }
.sevens-row { display: flex; align-items: center; gap: 4px; }
.sevens-suit { width: 22px; text-align: center; font-size: 20px; font-weight: 800; color: var(--text); }
.sevens-suit.red { color: var(--red); }
.sevens-row .card { width: 32px; height: 46px; }
.sevens-row .card-face .c-rank, .sevens-row .card-face .c-suit { font-size: 12px; }
.card-slot {
  width: 32px; height: 46px; border-radius: 8px;
  border: 1.5px dashed rgba(255,255,255,.22);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.28); font-size: 11px; font-weight: 700;
}
.opp-panel.busted { opacity: .55; border-color: var(--danger); }

/* ====== 大富豪 ====== */
.daifugo-field { text-align: center; }
.daifugo-field-label { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.daifugo-field-cards { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; min-height: 64px; align-items: center; }
.daifugo-field-cards .card { width: 44px; height: 62px; }
.daifugo-field-empty { color: var(--muted); font-size: 13px; }
.daifugo-info { text-align: center; margin-top: 10px; }
.daifugo-revolution { color: var(--accent); font-weight: 800; }

/* ====== 神経衰弱 ====== */
.memory-grid {
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  gap: 5px;
  min-width: 560px;
}
.memory-cell { width: 100%; aspect-ratio: 5 / 7; height: auto; }
.card-back.memory-back { width: 100%; height: 100%; }
.memory-back.clickable { cursor: pointer; transition: transform .12s, box-shadow .12s; }
.memory-back.clickable:hover { transform: translateY(-4px); box-shadow: 0 6px 14px rgba(0,0,0,.5); }
.memory-faceup .c-rank, .memory-faceup .c-suit { font-size: 13px; }
.memory-justflipped { outline: 2px solid var(--accent); box-shadow: 0 0 12px rgba(255,213,74,.5); }
.memory-taken {
  border-radius: 8px;
  border: 1.5px dashed rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
}
.memory-remaining { margin-top: 10px; text-align: center; color: var(--muted); font-size: 13px; }

/* ====== ブラックジャック ====== */
.bj-dealer { text-align: center; }
.bj-seat-label { display: flex; justify-content: center; gap: 10px; align-items: baseline; margin-bottom: 8px; }
.bj-seat-label > span:first-child { font-weight: 800; }
.bj-total { font-size: 13px; color: var(--accent); }
.bj-cards { display: flex; gap: 5px; justify-content: center; flex-wrap: wrap; min-height: 64px; align-items: center; }
.bj-cards .card { width: 44px; height: 62px; }
.bj-status { font-size: 13px; color: var(--muted); margin-top: 6px; }
.bj-status.win { color: #7be37b; font-weight: 800; }
.bj-status.lose { color: var(--danger); font-weight: 800; }
.opp-panel.bj-win { border-color: #7be37b; box-shadow: 0 0 14px rgba(123,227,123,.35); }
.opp-panel.bj-lose { border-color: var(--danger); opacity: .8; }

/* ====== セレクト入力（ホーム/ロビーのスキル・ゲーム選択） ====== */
.select-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.95);
  color: #1a1a1a;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* ====== ロビー: ゲーム/スキル表示・host 設定 ====== */
.lobby-settings {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(0,0,0,.22);
  border-radius: 12px;
  padding: 12px 14px;
  margin: 6px 0 4px;
  text-align: left;
}
.lobby-setting-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.lobby-setting-label { font-size: 12px; color: var(--muted); }
.lobby-setting-value { font-weight: 700; font-size: 14px; }
.lobby-host-settings {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 8px;
  padding-top: 6px;
}
.lobby-host-settings .field { margin: 8px 0; }

/* ====== スキルパネル（対戦ボード） ====== */
.skill-panel {
  background: rgba(123, 47, 247, 0.14);
  border: 1px solid rgba(177, 124, 255, 0.35);
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 14px;
}
.skill-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.skill-panel-title { font-weight: 800; font-size: 15px; color: #d9c2ff; }
.skill-points-badge {
  font-size: 13px;
  font-weight: 800;
  color: #1a1a1a;
  background: linear-gradient(180deg, #c79bff, #a868ff);
  border-radius: 999px;
  padding: 4px 12px;
}
.skill-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.btn-skill {
  background: linear-gradient(180deg, #8b5cf6, #6d28d9);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 13px;
  font-size: 13px;
}
.btn-skill:hover:not(:disabled) { filter: brightness(1.1); transform: translateY(-1px); }
.btn-skill.skill-unusable { opacity: .4; }
.skill-btn-label { white-space: nowrap; }
.skill-uses {
  font-size: 11px;
  background: rgba(0,0,0,.3);
  border-radius: 999px;
  padding: 1px 7px;
  font-weight: 700;
}
.skill-select-hint {
  background: rgba(255,213,74,.18);
  border: 1px solid rgba(255,213,74,.4);
  color: var(--accent);
  font-weight: 700;
  font-size: 13px;
  border-radius: 10px;
  padding: 8px 12px;
  margin-bottom: 10px;
}
.badge-skill { background: linear-gradient(180deg, #c79bff, #a868ff); color: #1a1a1a; }

/* スキルでマス選択中の神経衰弱マス */
.memory-back.skill-target-cell {
  outline: 2px solid #b17cff;
  box-shadow: 0 0 12px rgba(177,124,255,.6);
  cursor: pointer;
}

/* ====== スキル: あなただけの情報 ====== */
.skill-reveals {
  margin-top: 12px;
  border-top: 1px solid rgba(177,124,255,.25);
  padding-top: 10px;
}
.skill-reveals-title { font-size: 13px; font-weight: 800; color: #d9c2ff; margin-bottom: 8px; }
.skill-reveals-list { display: flex; flex-direction: column; gap: 8px; }
.skill-reveal-item {
  background: rgba(0,0,0,.28);
  border-radius: 10px;
  padding: 10px 12px;
}
.skill-reveal-text { font-size: 14px; font-weight: 600; }
.skill-reveal-cards { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 8px; }
.skill-reveal-cards .card { width: 36px; height: 50px; }
.skill-reveal-cards .card-face .c-rank, .skill-reveal-cards .card-face .c-suit { font-size: 13px; }

/* ====== スキル対象選択モーダル ====== */
.skill-target-desc { color: var(--muted); font-size: 13px; margin-bottom: 16px; }
.skill-target-choices {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  max-height: 50vh;
  overflow-y: auto;
}
.skill-target-choice { text-align: center; }
#finish-host-controls .btn { margin-bottom: 8px; }

/* ====== レスポンシブ ====== */
@media (max-width: 560px) {
  .card { width: 38px; height: 54px; }
  .card-face .c-rank, .card-face .c-suit { font-size: 14px; }
  .my-hand .card { width: 44px; height: 62px; }
  .opp-panel { min-width: 130px; }
  .room-code-display { font-size: 38px; }
  .uno-card { width: 44px; height: 64px; }
  .my-hand .uno-card { width: 48px; height: 70px; }
  .uno-card .uno-glyph { font-size: 18px; }
  .sevens-board, .memory-grid { min-width: 480px; }
}
