:root {
    color-scheme: light;
}


body {
    font-family: -apple-system, BlinkMacSystemFont, sans-serif;
    background: #f6f7f9;
    margin: 0;
    padding: 0;
    color: #222222;   /* 🔴 IMPORTANT */
}

.container {
    max-width: 480px;
    margin: auto;
    padding: 20px;
}

/* Title */
.question-title {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #222222;
}

/* Progress bar */
.progress-wrapper {
    width: 100%;
    height: 12px;
    background: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 25px;
}

.progress-bar {
    height: 100%;
    background: #4CAF50;
    transition: width 0.3s ease;
}

/* Options */
.options-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.option-btn {
    font-size: 1.2rem;
    padding: 22px;
    border-radius: 12px;
    border: none;
    background: #ffffff;
    color: #111111;   /* 🔴 FORCE TEXT COLOR */
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    cursor: pointer;
    text-align: center;
}


.option-btn:active {
    transform: scale(0.98);
}

/* Reset button */
.reset-form {
    margin-top: 40px;
    text-align: center;
}

.reset-btn {
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: 8px;
    background: transparent;
    border: 2px solid #d9534f;
    color: #d9534f;
    cursor: pointer;
}

.reset-btn:hover {
    background: #d9534f;
    color: white;
}
