#warning-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    transition: opacity 0.6s ease;
}

.warning-box {
display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #330000;
    padding: 40px;
    border-radius: 4px;
    max-width: 450px;
    width: 90%;
    color: #FFFFFF;
    font-family: "Varela Round", sans-serif;
}

.warning-box h2 {
    margin-top: 0;
    color: #d63031;
}

.warning-box p {
    text-align: center;
    width: 100%;
    margin: 20px 0;
    color: #FFFFFF;
}

.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.btn:hover {
    background: #fe5858;
    transform: translateY(-2px);
    transform: scale(1.1);
}

.accept { background: #8d0800; color: white; }
.decline { background: #dfe6e9; color: #2d3436; }

.hidden {
    opacity: 0 !important;
    pointer-events: none;
}
