.victorbd-floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffcc00;
    color: #1F1736;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
}

.victorbd-floating-btn:hover {
    background-color: #ffd633;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.7);
    transform: scale(1.05);
}

/* Modal Structure */
.modal {
    display: none; 
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Content */
.modal-content {
    background-color: #2a214a;
    color: #e0e0e0;
    padding: 30px;
    border: 1px solid #4a3f7a;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    position: relative;
    text-align: center;
    animation: fadeIn 0.3s ease-out;
}

/* Close Button */
.close-button {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-button:hover,
.close-button:focus {
    color: #fff;
}

/* Modal Heading */
.modal-content h2 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 26px;
}

/* Modal Paragraph */
.modal-content p {
    color: #d0cce0;
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.5;
}

/* Modal Button */
.modal-button {
    background-color: #ffcc00;
    color: #1F1736;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.modal-button:hover {
    background-color: #e6b800;
}

/* Simple fade-in animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}