body {
color: red;
}
.popup-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.589);
z-index: 2000;
justify-content: center;
align-items: center;
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
}
.popup-glass {
background-color: rgba(158, 158, 158, 0.103);
backdrop-filter: blur(25px);
-webkit-backdrop-filter: blur(25px);
border-radius: 25px;
border: solid 1px rgba(255, 255, 255, 0.219);
width: 70%;
max-width: 450px;
padding: 40px;
box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
color: white;
text-align: center;
}
.popup-header {
font-family: sans-serif;
font-size: 1.8rem;
margin-bottom: 15px;
}
.popup-text {
font-family: sans-serif;
line-height: 1.6;
margin-bottom: 30px;
opacity: 0.9;
}
.popup-close-btn {
background: white;
color: black;
border: none;
padding: 12px 30px;
border-radius: 50px;
font-weight: bold;
cursor: pointer;
transition: transform 0.2s ease, background 0.2s ease;
}
.popup-close-btn:hover {
transform: scale(1.05);
background: rgba(255, 255, 255, 0.8);
}