body {
    background-color: var(--bg);
    font-family: 'Segoe UI', sans-serif;
}

.container {
    width: 500px;
    min-height: 375px;
    display: grid;
    grid-template-areas:
        "header header"
        "f1 f2"
        "reset reset";
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    margin: 30px auto;
    padding: 15px;
    border-radius: 16px;
    background: var(--light);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

#question {
    grid-area: header;
    background-color: var(--primary);
    color: white;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    font-size: 1.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.answer, #reset {
    background-color: var(--primary-light);
    border: none;
    border-radius: 12px;
    font-size: 1.8em;
    color: var(--text);
    padding: 20px;
    transition: 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: bold;
}

#answer1 { grid-area: f1; }
#answer2 { grid-area: f2; }
#reset { 
    grid-area: reset;
    font-size: 1.2em;
}

.answer:hover, #reset:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.answer:active {
    transform: translateY(0);
    box-shadow: none;
}
