@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body {
    background: #F8F0E5;
    box-sizing: border-box;
}

.video__container {
    width: 100vw;
    position: relative;
    overflow: hidden;
    background: #000;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.video__container::before {
    content: "";
    display: block;
    padding-top: 55.83%; /* 1072/1920 * 100 */
}

.video__container video,
.video__container .lazy {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

.img__cover-75 {
    width: 100%;
    height: 75vh;
    object-fit: cover;
}

.quiz-intro {
    text-align: center;
    margin: -80px auto 0;
    padding: 0 0 30px;
    max-width: 1400px;
}

.quiz-intro h2 {
    font-size: 72px;
    font-weight: 700;
    color: #EE2064;
    margin-bottom: 30px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.quiz-intro p {
    font-size: 28px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #333;
}

.quiz-intro p:last-of-type:not(.disclaimer) {
    font-size: 32px;
    font-weight: 600;
    margin-top: 35px;
}

.quiz-intro .disclaimer {
    font-size: 18px;
    color: #666;
    font-style: italic;
    margin-top: 30px;
    opacity: 0.8;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: transparent;
    border-radius: 20px;
    box-shadow: none;
}

.question-counter {
    text-align: center;
    margin-bottom: 30px;
    font-size: 18px;
    color: #A94442;
}

#question-text {
    font-size: 24px;
    text-align: center;
    margin-bottom: 40px;
    color: #A94442;
    line-height: 1.4;
}

.options {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.options button {
    padding: 30px;
    border: 2px solid #A94442;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    white-space: pre-line;
    text-align: center;
    color: #A94442;
    position: relative;
    overflow: hidden;
}

.options button:hover,
.options button.selected {
    border-color: #A94442;
    background: #A94442;
    color: white;
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 10px 20px rgba(169, 68, 66, 0.2);
}

.options button:active {
    transform: scale(0.98);
    box-shadow: 0 5px 10px rgba(169, 68, 66, 0.2);
}

.options button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out;
}

.options button:hover::before {
    width: 300px;
    height: 300px;
}

.navigation {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.navigation button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 31, 113, 0.2);
    color: #ff1f71;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navigation button:not(:disabled):hover {
    background: rgba(255, 31, 113, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 31, 113, 0.2);
}

.navigation button:not(:disabled):active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(255, 31, 113, 0.2);
}

.navigation button:disabled {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
}

.result {
    display: none;
    text-align: center;
    margin-top: 2rem;
}

.result-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: #F8F0E5;
    border-radius: 10px;
}

.result h2 {
    color: #EE2064;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.result p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.restart-quiz {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border: none;
    border-radius: 5px;
    background: #EE2064;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.restart-quiz:hover {
    background: #D41A57;
}

@media (max-width: 768px) {
    .quiz-container {
        padding: 15px;
        margin: 0 10px;
    }

    #question-text {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .options button {
        padding: 15px;
        font-size: 14px;
        min-height: 80px;
    }

    .navigation button {
        padding: 8px 16px;
        font-size: 14px;
    }

    .result h2 {
        font-size: 1.5rem;
    }

    .result p {
        font-size: 1rem;
    }

    .restart-quiz {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}
