.games-card{background:var(--surface,#fff);border:1px solid var(--line,#e5e7eb);border-radius:12px;padding:1.25rem 1.25rem 1.5rem;box-shadow:0 2px 14px rgba(0,0,0,.04);}.games-header{display:flex;align-items:center;gap:.75rem;flex-wrap:wrap;padding-bottom:.85rem;margin-bottom:1rem;border-bottom:1px solid var(--line,#e5e7eb);}.games-icon{font-size:1.7rem;line-height:1;}.games-title{font-size:1.25rem;font-weight:700;margin:0;color:var(--text,#111);}.games-body{padding-top:.25rem;}.games-hud{display:flex;gap:.75rem;flex-wrap:wrap;align-items:stretch;margin-bottom:1rem;}.games-stat{flex:1 1 120px;background:var(--bg-soft,#f6f7fb);border:1px solid var(--line,#e5e7eb);border-radius:10px;padding:.65rem .85rem;text-align:center;}.games-stat-label{display:block;font-size:.72rem;text-transform:uppercase;letter-spacing:.05em;color:var(--muted,#6b7280);font-weight:600;margin-bottom:.15rem;}.games-stat-value{display:block;font-size:1.45rem;font-weight:800;color:var(--text,#111);line-height:1;}.games-board{margin:1rem 0 1.25rem;user-select:none;}.games-board-memory{perspective:1000px;transform-style:preserve-3d;}.games-board-memory .games-tile{height:200px;align-self:flex-start;}.games-tile{aspect-ratio:1 / 1;position:relative;cursor:pointer;transform-style:preserve-3d;transition:transform .55s cubic-bezier(.4,0,.2,1);border-radius:12px;}.games-tile:focus-visible{outline:3px solid #6366f1;outline-offset:3px;}.games-tile.is-flipped,.games-tile.is-matched{transform:rotateY(180deg);}.games-tile-face{position:absolute;inset:0;border-radius:12px;display:flex;align-items:center;justify-content:center;backface-visibility:hidden;-webkit-backface-visibility:hidden;box-shadow:0 2px 8px rgba(0,0,0,.08);}.games-tile-back{background:linear-gradient(135deg,#4f46e5 0%,#7c3aed 50%,#ec4899 100%);color:#fff;font-size:1.6rem;font-weight:800;}.games-tile-back::after{content:"?";text-shadow:0 2px 6px rgba(0,0,0,.25);}.games-tile-front{background:#fff;transform:rotateY(180deg);padding:.45rem;border:2px solid #e5e7eb;}.games-tile-front img{width:100%;height:100%;object-fit:contain;pointer-events:none;}.games-tile.is-matched .games-tile-front{border-color:#10b981;background:#ecfdf5;animation:gm-pulse .45s ease;}.games-feedback{min-height:1.6rem;margin-top:.5rem;font-weight:600;color:var(--muted,#6b7280);}.gm-toast{position:fixed;top:calc(var(--navbar-height,56px)+0.75rem);right:1rem;z-index:99999;min-width:240px;max-width:90vw;box-shadow:0 8px 30px rgba(0,0,0,.18);animation:gm-slide-in .25s ease;}.gm-success{animation:gm-pulse .45s ease;}.gm-error{animation:gm-shake .45s ease;}@keyframes gm-pulse{0%,100%{transform:scale(1) rotateY(180deg);}50%{transform:scale(1.06) rotateY(180deg);}}@keyframes gm-shake{0%,100%{transform:translateX(0) rotateY(180deg);}25%{transform:translateX(-6px) rotateY(180deg);}75%{transform:translateX(6px) rotateY(180deg);}}@keyframes gm-slide-in{from{transform:translateX(20px);opacity:0;}to{transform:translateX(0);opacity:1;}}[data-theme="dark"] .games-card{background:#1a1d29;border-color:#2a2f3e;}[data-theme="dark"] .games-stat{background:#232735;border-color:#2f3445;}[data-theme="dark"] .games-tile-front{background:#f8fafc;border-color:#4b5563;}