.container {
text-align: center;
}
.modal-button {
padding: 15px 30px;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: #ffffff;
border: none;
border-radius: 25px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}
.modal-button:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}
.mask {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
z-index: 1000;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}
.mask.appear {
opacity: 1;
visibility: visible;
}
.modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
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.2);
color: #ffffff;
border: 2px solid rgba(255, 255, 255, 0.3);
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.3);
border-color: rgba(255, 255, 255, 0.5);
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 1px 2px rgba(0, 0, 0, 0.2);
}
.fullscreen-content .close-btn-container {
position: static;
margin-top: 30px;
}
.fullscreen-content .close-btn {
padding: 12px 30px;
background: rgba(255, 255, 255, 0.2);
color: #ffffff;
border: 2px solid rgba(255, 255, 255, 0.3);
border-radius: 25px;
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.3);
border-color: rgba(255, 255, 255, 0.5);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}
@media (max-width: 768px) {
.fullscreen-content {
padding: 40px 20px;
}
.fullscreen-content p {
font-size: 1rem;
}
}