#ttiow-game {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px;
    background: #f4fafc;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.ttiow-title {
    text-align: center;
    font-size: 1.6em;
    color: #0277bd;
    margin-bottom: 20px;
}

#ttiow-question-text {
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 500;
}

#ttiow-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#ttiow-options button {
    padding: 10px;
    font-size: 1em;
    border: none;
    border-radius: 6px;
    background-color: #e0e0e0;
    color: #000;
    cursor: pointer;
    transition: background 0.3s ease;
}

#ttiow-options button:hover {
    background-color: #d0ebff;
}

#ttiow-options button.correct {
    background-color: #a8e6cf;
    color: #000;
}

#ttiow-options button.wrong {
    background-color: #ff8a80;
    color: #000;
}

#ttiow-next-button,
#ttiow-restart-button,
#ttiow-reset-button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #0277bd;
    color: #fff;
    font-size: 1em;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#ttiow-next-button:disabled {
    background-color: #aaa;
    cursor: not-allowed;
}

#ttiow-next-button:hover:not(:disabled),
#ttiow-restart-button:hover,
#ttiow-reset-button:hover {
    background-color: #01579b;
}

#ttiow-result {
    text-align: center;
}

#ttiow-score-text {
    font-size: 1.3em;
    margin: 10px 0;
    font-weight: 600;
    color: #388e3c;
}

#ttiow-timer,
#ttiow-overall-timer {
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
    color: #d32f2f;
    margin-bottom: 10px;
}

.ttiow-score-panel {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
    font-weight: bold;
    color: #333;
}
