       #verification-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(79, 49, 49, 0.75);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999999;
            backdrop-filter: blur(5px);
            
        }
        
        #verification-modal.hidden {
            display: none;
        }
        
        .verification-content {
            font-family: 'Roboto Slab', Arial, sans-serif;
            background: #edcebc;
            padding: 40px;
            border-radius: 12px;
            max-width: 450px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }
        
        .verification-content h2 {
            margin: 0 0 20px 0;
            color: #4f3131;
            font-size: 24px;
        }
        
        .verification-content p {
            margin: 0 0 30px 0;
            color: #4f3131;
            font-size: 16px;
            line-height: 1.5;
        }
        
.verification-button {
    font-family: 'Roboto Slab', Arial, sans-serif;
    background: #4f3131;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(79, 49, 49, 0.3);
}

.verification-button:hover {
    background: #b2663d;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(178, 102, 61, 0.5),
                0 0 30px rgba(178, 102, 61, 0.3);
}
        
        body.unverified {
            overflow: hidden;
        }
