.wordle-page { --wordle-green: #2e9b68; --wordle-yellow: #d79b24; --wordle-gray: #8b91a1; }
body.dark-mode .wordle-header h1, body.dark-mode .wordle-header p { color: #f4f4f8; }
body.dark-mode .wordle-header p { color: #aeb2c3; }
.wordle-container { max-width: 620px; }
.wordle-top-label { color: #6354db; font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.wordle-heading-icon { width: 70px; height: 70px; margin: 0 auto 12px; border-radius: 19px; display: inline-flex; align-items: center; justify-content: center; background: #dff7e8; color: #157347; font-size: 2.1rem; font-weight: 900; box-shadow: inset 0 0 0 1px rgba(46,155,104,.15); }
.wordle-panel { padding: clamp(18px, 4vw, 30px); }
.wordle-status { min-height: 28px; margin-bottom: 18px; color: var(--muted-text, #74798a); text-align: center; font-size: .9rem; font-weight: 700; }
.wordle-board { width: min(350px, 100%); display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 7px; margin: 0 auto 24px; }
.wordle-cell { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border: 2px solid #d7dbe5; border-radius: 8px; background: var(--card-bg, #fff); color: var(--text-color, #171a2b); font-size: clamp(1.25rem, 7vw, 1.8rem); font-weight: 900; line-height: 1; }
.wordle-cell.filled { border-color: #8a90a0; animation: wordlePop .12s ease-out; }
.wordle-cell.correct, .wordle-cell.present, .wordle-cell.absent { color: #fff; border-color: transparent; animation: wordleFlip .46s ease both; animation-delay: calc(var(--index) * 70ms); }
.wordle-cell.correct { background: var(--wordle-green); }
.wordle-cell.present { background: var(--wordle-yellow); }
.wordle-cell.absent { background: var(--wordle-gray); }
@keyframes wordlePop { 50% { transform: scale(1.08); } }
@keyframes wordleFlip { 0% { transform: rotateX(0); } 45% { transform: rotateX(90deg); } 100% { transform: rotateX(0); } }
.wordle-keyboard { width: min(520px, 100%); display: flex; flex-direction: column; gap: 7px; margin: 0 auto 24px; }
.wordle-actions { margin-top: 6px; }
.wordle-keyboard-row { display: flex; justify-content: center; gap: 5px; min-width: 0; }
.wordle-key { flex: 1 1 0; min-width: 0; min-height: 49px; padding: 0 4px; border: 0; border-radius: 7px; background: #e9ebf2; color: #292d3d; font-size: .78rem; font-weight: 900; touch-action: manipulation; transition: transform .12s ease, background .18s ease; }
.wordle-key.wide { flex: 1.55 1 0; font-size: .68rem; }
.wordle-key:hover { transform: translateY(-1px); }
.wordle-key:active { transform: scale(.95); }
.wordle-key.correct, .wordle-key.present, .wordle-key.absent { color: #fff; }
.wordle-key.correct { background: var(--wordle-green); }
.wordle-key.present { background: var(--wordle-yellow); }
.wordle-key.absent { background: var(--wordle-gray); }
.wordle-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; margin: 24px auto 0; max-width: 480px; padding-top: 20px; border-top: 1px solid var(--border-color, #e5e7eb); }
.wordle-stats div { min-width: 0; text-align: center; }
.wordle-stats strong { display: block; color: var(--text-color, #171a2b); font-size: 1.35rem; }
.wordle-stats span { display: block; margin-top: 4px; color: var(--muted-text, #74798a); font-size: .65rem; font-weight: 800; text-transform: uppercase; }
body.dark-mode .wordle-cell { border-color: #444857; }
body.dark-mode .wordle-key { background: #303442; color: #f4f4f8; }
body.dark-mode .wordle-heading-icon { background: #173b2b; color: #7be0aa; }
@media (max-width: 480px) { .wordle-top-label { display: none; } .wordle-board { gap: 5px; } .wordle-keyboard { gap: 5px; } .wordle-keyboard-row { gap: 3px; } .wordle-key { min-height: 44px; font-size: .7rem; } .wordle-key.wide { font-size: .59rem; } }
@media (max-width: 350px) { .wordle-panel { padding-inline: 12px; } .wordle-key { min-height: 40px; } .wordle-stats strong { font-size: 1.1rem; } .wordle-stats span { font-size: .56rem; } }
@media (prefers-reduced-motion: reduce) { .wordle-cell, .wordle-key { animation: none !important; transition: none; } }
