body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    width: 90%;
    max-width: 600px;
    text-align: center;
}

h1 {
    color: #5a67d8;
}

#question {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    min-height: 50px;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.option {
    background-color: #5a67d8;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.option:hover {
    background-color: #434190;
}

#result-area {
    margin-top: 2rem;
}

#enneagram-type {
    color: #dd6b20;
    font-size: 1.5rem;
}
