/* Score Retry Page Styles */

.score-page {
    position: relative;
    width: 1440px;
    height: 1024px;
    margin: 0 auto;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Top Bar with Percentage */
.score-top-bar {
    position: absolute;
    top: 380px;
    left: -30px;
    width: 1492px;
    height: 347px;
    background-color: transparent;
}

.congratulations {
    position: absolute;
    top: -236px;
    left: -12px;
    width: 2163px;
    height: 233px;
    font-family: Limelight;
    font-size: 217.895px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #000;
    margin: 0;
    background-color: #FFFFFF;
}

.score-percentage {
    position: absolute;
    top: 412px;
    left: -30px;
    font-family: 'GFS Didot', serif;
    font-size: 250px;
    font-weight: 400;
    color: #000;
    margin: 0;
    line-height: normal;
    width: 1492px;
    height: 283px;
    background-color: #A2B19F;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bottom Bar with Message */
.score-bottom-bar {
    position: absolute;
    top: 762px;
    left: -46px;
    width: 1579px;
    height: 63px;
    background-color: #A2B19F;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-message {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 35.424px;
    font-weight: 400;
    color: #000;
    margin: 0;
    line-height: normal;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Close Button */
.score-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 66px;
    height: 64px;
    border: none;
    background-color: #D3D3D3;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.score-close-btn svg {
    width: 32px;
    height: 32px;
    color: #2B2B2B;
}

.score-close-btn:hover {
    background-color: rgba(163, 177, 138, 0.1);
}

/* Action Buttons */
.action-buttons {
    position: absolute;
    top: 930px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 20;
}

.retry-btn {
    position: absolute;
    left: 64px;
    width: 307px;
    height: 91px;
    padding: 0;
    font-size: 35.424px;
    font-weight: 400;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Helvetica Neue', sans-serif;
    color: #000;
    background-color: #A3B18A;
}

.giveup-btn {
    position: absolute;
    right: 64px;
    width: 307px;
    height: 91px;
    padding: 0;
    font-size: 35.424px;
    font-weight: 400;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Helvetica Neue', sans-serif;
    color: #000;
    background-color: #A3B18A;
}

.retry-btn:hover {
    background-color: #A2B19F;
    box-shadow: 0 4px 12px rgba(163, 177, 138, 0.3);
}

.giveup-btn:hover {
    background-color: #A2B19F;
    box-shadow: 0 4px 12px rgba(163, 177, 138, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1440px) {
    .score-page {
        width: 100%;
        height: auto;
        min-height: 1024px;
    }

    .congratulations {
        font-size: clamp(80px, 15vw, 217.895px);
        top: 80px;
    }

    .score-top-bar {
        top: auto;
        height: 300px;
    }

    .score-percentage {
        font-size: clamp(120px, 20vw, 250px);
    }

    .score-bottom-bar {
        height: auto;
        padding: 20px 0;
    }

    .score-message {
        font-size: clamp(20px, 5vw, 35.424px);
        padding: 0 20px;
    }
}
.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.notification-modal {
    position: relative;
    width: 709px;
    background-color: #FFFFFF;
    border-radius: 0;
    padding: 60px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/* Notification Close Button */
.notification-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: none;
    background-color: #D3D3D3;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close-btn svg {
    width: 24px;
    height: 24px;
    color: #2B2B2B;
}

/* Notification Icon */
.notification-icon {
    width: 117px;
    height: 117px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-icon svg {
    width: 100%;
    height: 100%;
}

/* Notification Title */
.notification-title {
    font-family: Limelight;
    font-size: 62.137px;
    font-weight: 400;
    color: #000;
    margin: 30px 0 20px 0;
    line-height: normal;
}

/* Notification Message */
.notification-message {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 35.424px;
    font-weight: 400;
    color: #000;
    margin: 20px 0 40px 0;
    line-height: 1.4;
}

/* Notification Buttons */
.notification-buttons {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

.notification-back-btn,
.notification-giveup-btn {
    width: 253px;
    height: 74.993px;
    border: none;
    border-radius: 41.205px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 29.193px;
    font-weight: 400;
    color: #000;
    background-color: #A3B18A;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-back-btn:hover,
.notification-giveup-btn:hover {
    background-color: #92a17a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 1440px) {
    .score-page {
        width: 100%;
        height: auto;
        min-height: 1024px;
    }

    .retry-heading {
        font-size: clamp(80px, 15vw, 217.895px);
    }

    .score-percentage {
        font-size: clamp(120px, 20vw, 250px);
    }

    .action-buttons {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px;
    }

    .notification-modal {
        width: 90%;
        max-width: 709px;
    }
}
