.style-quiz-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    text-align: center;
}

.style-quiz-container h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.quiz-question {
    font-size: 28px;
    margin-bottom: 40px;
}

.quiz-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.quiz-option {
    cursor: pointer;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease;
}

.quiz-option:hover {
    transform: scale(1.02);
}

.quiz-option img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}

@media (min-width: 1024px) {

    .style-quiz-container {
        max-width: 1000px;
        margin: 30px auto;
    }

    .style-quiz-container h1 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .quiz-question {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .quiz-options {
        max-width: 900px;
        margin: 0 auto;
        gap: 20px;
    }

    .quiz-option img {
        height: 360px;
    }

}

.results-screen {
    max-width: 800px;
}

.result-style-name {
    font-size: 48px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.result-description {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.style-results-list {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

.style-result-block {
    padding: 30px;
    background: #f5f5f5;
    border-radius: 20px;
}

.style-result-block h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.style-result-block p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.style-result-button {
    display: inline-block;
    padding: 14px 24px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 16px;
}

.style-result-button:hover {
    opacity: 0.85;
}