/* --- Overlay Styling --- */
#biosurgico-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
   /* display: none;  Hidden by default, JS will show it */
    display:flex;
    align-items:center;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* --- Popup Box Styling --- */
#biosurgico-popup-content {
    background: #111; /* Dark background color */
    padding: 80px 70px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    color: white;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    /* Adding the visual effect - radial gradient for the "sunburst" look */
    background-image: 
        radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 80%),
        repeating-radial-gradient(circle at center, #111, #000 50px);
}

/* --- Text Styling --- */
#biosurgico-popup-content h1 {
    font-family: Arial, sans-serif; /* Use a bold, blocky font if available */
    font-size: 36px;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    color: #fff;
}

/* --- Button Styling (Pink/Magenta) --- */
.popup-read-more-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ff3366; /* Bright Pink */
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.popup-read-more-btn:hover {
    background-color: #e6004c;
    color: #ffffff;
}

/* --- Close Button Styling --- */
#biosurgico-popup-close-btn {
    position: absolute;
    top: 10px;
    right: 5px;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

#biosurgico-popup-close-btn:hover {
    opacity: 1;
}