Template:18PlusDisclaimer/styles.css
Template page
More actions
.age-overlay {
display: none;
position: fixed;
z-index: 9999;
top: 0; left: 0;
width: 100%; height: 100%;
background-color: rgba(0, 0, 0, 0.85);
justify-content: center;
align-items: center;
text-align: center;
}
.age-popup {
background: white;
padding: 30px;
border-radius: 12px;
max-width: 400px;
box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.age-popup h2 {
margin-bottom: 15px;
}
.btn-group {
display: flex;
justify-content: center;
gap: 10px;
margin-top: 20px;
}
.age-popup button {
padding: 10px 20px;
font-size: 16px;
background: #d62828;
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
transition: background 0.3s;
}
.age-popup button:hover {
background: #a41e1e;
}