.container {
text-align: center;
}
.modal-button {
padding: 15px 30px;
background: linear-gradient(135deg, #2d5016 0%, #4a7c59 100%);
color: #ffffff;
border: 2px solid #4a7c59;
border-radius: 25px;
font-size: 16px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}
.modal-button:hover {
background: linear-gradient(135deg, #4a7c59 0%, #6b8e6b 100%);
border-color: #6b8e6b;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(74, 124, 89, 0.4);
}
.mask {
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
background: rgba(45, 80, 22, 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, #2d5016 0%, #4a7c59 50%, #6b8e6b 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.1);
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;
}
.close-btn:hover {
background: rgba(255, 255, 255, 0.2);
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 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.3);
border-radius: 25px;
font-size: 16px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s ease;
display: inline-block;
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.5);
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;
}
}