Wykrywanie i blokada po lokalizacji

This commit is contained in:
2026-05-25 23:59:00 +02:00
parent 05dfe4c3a6
commit 297ef31eca
3 changed files with 156 additions and 18 deletions

View File

@@ -62,6 +62,44 @@ body {
min-height: 20px;
}
#geoScreen {
position: fixed;
inset: 0;
z-index: 150;
background: var(--bg);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 40px;
text-align: center;
transition: opacity 0.5s ease, visibility 0.5s;
}
.geo-icon {
font-size: 80px;
margin-bottom: 16px;
animation: bounce 2s infinite;
}
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-15px); }
}
.geo-text h2 {
font-family: 'Playfair Display', serif;
margin: 0 0 12px;
color: var(--primary);
}
.geo-msg {
color: var(--text-muted);
font-size: 15px;
line-height: 1.5;
margin-bottom: 16px;
}
/* --- MAIN LAYOUT --- */
.container {
max-width: 500px;