#game-wrapper { text-align: center; padding: 80px 20px 40px; }
#game-wrapper h1 { color: #2c3e50; margin-bottom: 20px; }
.dark-mode #game-wrapper h1 { color: #ecf0f1; }
#game-info { display: flex; justify-content: center; align-items: center; gap: 25px; margin-bottom: 20px; flex-wrap: wrap; }
.info-item { font-size: 18px; font-weight: bold; color: #2c3e50; }
.dark-mode .info-item { color: #ecf0f1; }
.info-item span { color: #3498db; }
#start-btn { padding: 10px 20px; font-size: 16px; background: #2ecc71; color: white; border: none; border-radius: 5px; cursor: pointer; }
#game-area { max-width: 500px; margin: 0 auto 20px; }
#word-display { font-size: 36px; font-weight: bold; color: #2c3e50; min-height: 50px; margin-bottom: 15px; }
.dark-mode #word-display { color: #ecf0f1; }
#word-display .correct { color: #2ecc71; }
#word-display .wrong { color: #e74c3c; text-decoration: underline; }
#word-input { width: 100%; padding: 15px; font-size: 20px; border: 2px solid #3498db; border-radius: 8px; text-align: center; }
#word-input:focus { outline: none; border-color: #2980b9; }
