#mpp-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 9999;
display: none; } .mpp-popup-box {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: #dc3232; border: 2px solid #fdfcbe8f;
border-radius: 2rem;
padding: 20px;
z-index: 10000;
text-align: center;
display: none; max-width: 90%;
width: 400px;
box-sizing: border-box;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
font-family: Inter, sans-serif;
} .mpp-popup-box p {
color: #ffd700; font-weight: bold;
margin-top: 0 !important;
margin-bottom: 20px;
font-size: 1.1em;
line-height: 1.5;
} #mpp-popup-loyalty h3 {
color: #ffd700; font-size: 1.8em;
margin: -10px 0 25px 0;
} #mpp-register-button, #mpp-shop-button, .mpp-close-button {
display: block;
width: 100%;
height: 30px;
border-radius: 1.5rem;
border: 2px solid #fdfcbe8f;
background-color: transparent;
color: #ffd700; cursor: pointer;
font-weight: bold;
transition: all 0.3s ease;
padding: 0;
font-size: 16px;
font-family: Inter, sans-serif;
text-decoration: none;
line-height: 26px; box-sizing: border-box;
} #mpp-register-button, #mpp-shop-button {
margin-bottom: 10px;
} #mpp-register-button:hover, #mpp-shop-button:hover, .mpp-close-button:hover {
background-color: #ffd700; color: #dc3232; } @media (max-width: 600px) {
.mpp-popup-box {
width: 95%;
padding: 15px;
}
.mpp-popup-box p {
font-size: 1em;
}
}