body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e0f7d4;
    text-align: center;
}
header {
    background-color: #a7e063;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #2e7d32;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header a {
    color: #2e7d32;
    text-decoration: none;
    display: inline-block;
}
#streak-counter {
    position: absolute;
    top: 70px;
    left: 20px;
    font-size: 24px;
    font-weight: bold;
}
#pokemon-guess { width: 200px; padding: 5px; }
.stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 10px; }
.stats p { padding: 5px 10px; border-radius: 5px; font-weight: bold; }
.correct { background-color: lightgreen; }
.wrong { background-color: lightcoral; }
.highlight { background-color: yellow; }
.guess-container { display: flex; align-items: center; justify-content: center; margin-top: 15px; gap: 15px; }
.suggestions { border: 1px solid #ccc; max-height: 150px; overflow-y: auto; position: relative; background: white; z-index: 1000; margin-top: 5px; }
.suggestion-item { padding: 5px; cursor: pointer; }
.suggestion-item:hover { background-color: #f0f0f0; }
.arrow { font-size: 1.2em; }
#countdown { margin-top: 20px; font-size: 1.5em; }
#countdown-section { display: none; }
#win-message { font-size: 2em; font-weight: bold; display: none; }