.container {
text-align: center;
}
.modal-button {
padding: 15px 30px;
background: rgba(255, 255, 255, 0.1);
border: 2px solid rgba(255, 255, 255, 0.2);
border-radius: 15px;
font-size: 16px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
backdrop-filter: blur(10px);
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.modal-button:hover {
background: rgba(255, 255, 255, 0.2);
border-color: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.mask {
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
background: rgba(0, 0, 0, 0.6);
z-index: 1000;
opacity: 0; visibility: hidden;
transition: all 0.3s ease;
backdrop-filter: blur(5px);
}
.mask.appear {
opacity: 1; visibility: visible;
}
.modal {
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
z-index: 1001;
opacity: 0; visibility: hidden;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
}
.modal.appear {
opacity: 1; visibility: visible;
}
.modal-content {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
position: relative;
}
.close-btn-container {
position: absolute;
top: 20px;
right: 20px;
z-index: 10;
}
.close-btn {
width: 40px;
height: 40px;
background: rgba(255, 255, 255, 0.1);
color: #ffffff;
border: 2px solid rgba(255, 255, 255, 0.2);
border-radius: 50%;
font-size: 24px;
font-weight: 300;
cursor: pointer;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
line-height: 1;
backdrop-filter: blur(10px);
}
.close-btn:hover {
background: rgba(255, 255, 255, 0.2);
border-color: rgba(255, 255, 255, 0.4);
transform: scale(1.1);
}
.fullscreen-content {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 60px 40px;
text-align: center;
}
.fullscreen-content p {
color: rgba(255, 255, 255, 0.9);
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 20px;
max-width: 600px;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.fullscreen-content .close-btn-container {
position: static;
margin-top: 30px;
}
.fullscreen-content .close-btn {
padding: 12px 30px;
background: rgba(255, 255, 255, 0.1);
color: #ffffff;
border: 2px solid rgba(255, 255, 255, 0.2);
border-radius: 15px;
font-size: 16px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
display: inline-block;
backdrop-filter: blur(10px);
width: auto;
height: auto;
line-height: 1.2;
white-space: nowrap;
min-width: 120px;
}
.fullscreen-content .close-btn:hover {
background: rgba(255, 255, 255, 0.2);
border-color: rgba(255, 255, 255, 0.4);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
.fullscreen-content {
padding: 40px 20px;
}
.fullscreen-content p {
font-size: 1rem;
}
}