﻿.wordsearch_game { max-width:950px; margin:0 auto; }
.wordsearch_top { display:flex; justify-content:space-between; align-items:center; margin-bottom:15px; }
.wordsearch_title { text-align:center; font-size:21px; font-weight:600; margin-bottom:18px; }
.wordsearch_layout { display:grid; grid-template-columns:minmax(0,1fr) 150px; gap:30px; align-items:start; }
.wordsearch_board { display:grid; grid-template-columns:repeat(var(--grid-size),minmax(0,1fr)); border:1px solid #777; padding:8px; gap:2px; }
.wordsearch_cell { aspect-ratio:1/1; min-width:0; padding:0; border:0; background:transparent; color:#244675; font-size:16px; font-weight:600; cursor:pointer; border-radius:3px; }
.wordsearch_cell:hover { background:#eef3f8; }
.wordsearch_cell.wordsearch_found { background:#fff600; }
.wordsearch_cell.wordsearch_wrong { background:#f3dede; }
.wordsearch_solution .wordsearch_cell[data-correct="1"]:not(.wordsearch_found) { background:#fff7a5; }
.wordsearch_words { text-align:center; }
.wordsearch_word_count { margin-bottom:15px; }
.wordsearch_show { margin-bottom:14px; }
.wordsearch_word { padding:3px 0; }
.wordsearch_word_found { text-decoration:line-through; opacity:.45; }
.wordsearch_message { text-align:center; font-size:20px; font-weight:600; margin-top:18px; }
.wordsearch_play_again { text-align:center; margin-top:12px; }

@media (max-width:700px) {
    .wordsearch_layout { grid-template-columns:1fr; gap:18px; }
    .wordsearch_board { width:100%; box-sizing:border-box; padding:4px; gap:1px; }
    .wordsearch_cell { font-size:clamp(10px,3vw,15px); }
    .wordsearch_words { display:flex; flex-wrap:wrap; justify-content:center; gap:5px 14px; }
    .wordsearch_word_count, .wordsearch_show { flex-basis:100%; }
}