* {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.7rem;
}

/* Main container */
#main {
    width: 100%;
    overflow-x: hidden;
}

/* Quiz wrapper */
.puppy-quiz {
    background: #cfe3e3;
    min-height: calc(100vh - 100px);
    padding: 0 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Progress bar section */
.quiz-progress {
    width: 100%;
    height: 6px;
    background: #ddd;
    position: fixed;
    top: 0;
    left: 0;
}

.quiz-progress-bar {
    height: 100%;
    width: 12%;
    background: #6bbf59;
    transition: width 0.3s ease;
}

/* Quiz container and counter */
.quiz-container {
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.quiz-counter {
    font-weight: 600;
    margin-bottom: 30px;
}

/* Quiz steps/questions */
.quiz-step {
    display: none;
}

.quiz-step.active {
    display: block;
}

.quiz-step h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 30px;
}

/* Answer buttons */
.answers {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.answer-btn {
    padding: 18px;
    border-radius: 8px;
    border: none;
    background: #eee;
    font-size: 1.7rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.25s;
}

.answer-btn:hover {
    background: #ddd;
    transform: scale(1.02);
}

/* Form styling */
.quiz-form {
    margin-top: 30px;
}

.quiz-form input {
    width: 100%;
    padding: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-bottom: 16px;
}

.form-row {
    display: flex;
    gap: 12px;
}

.result-btn {
    background: #2f8f4e;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
}

/* Mobile responsive */
@media (max-width: 600px) {
    .quiz-step h2 {
        font-size: 3.2rem;
    }

    .form-row {
        flex-direction: column;
    }
}
