* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; background-color: #e8d8b7; }
body {
font-family: 'Inter', sans-serif;
background-color: #e8d8b7;
background-image: 
radial-gradient(circle at center, transparent 40%, rgba(74, 14, 28, 0.4) 100%),
repeating-linear-gradient(45deg, rgba(0,0,0,0.02) 0px, rgba(0,0,0,0.02) 2px, transparent 2px, transparent 4px);
color: #2b1100;
overflow-x: hidden;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
}
#noise-layer {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
pointer-events: none;
z-index: 9999;
opacity: 0.08;
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100" height="100" fill="%23fff" filter="url(%23n)"/></svg>');
}
#page-container {
width: 100%;
max-width: 1200px;
display: flex;
flex-direction: column;
align-items: center;
box-shadow: 0 0 80px rgba(0,0,0,0.6);
background: transparent;
position: relative;
}
#map-wrapper {
position: relative;
width: 100%;
}
#center-logo {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 60%;
max-width: 600px;
opacity: 0.5;
mix-blend-mode: multiply;
z-index: 5;
pointer-events: none;
filter: grayscale(1) sepia(1) hue-rotate(-50deg) saturate(2) contrast(1.2);
}
#main-map {
width: 100%;
height: auto;
display: block;
mix-blend-mode: multiply;
filter: contrast(1.1) sepia(0.3);
}
.map-btn {
position: absolute;
width: 36px;
height: 36px;
transform: translate(-50%, -50%);
background: transparent;
border: none;
cursor: pointer;
z-index: 10;
animation: pulse-cross 2s infinite;
}
.map-btn::before, .map-btn::after {
content: '';
position: absolute;
top: 50%;
left: 50%;
width: 28px;
height: 6px;
background: #8b0000;
box-shadow: 0 0 6px rgba(139,0,0,0.8), inset 0 0 2px rgba(0,0,0,0.5);
border-radius: 2px;
}
.map-btn::before {
transform: translate(-50%, -50%) rotate(45deg);
}
.map-btn::after {
transform: translate(-50%, -50%) rotate(-45deg);
}
.map-btn:hover {
animation: none;
transform: translate(-50%, -50%) scale(1.3);
}
.map-btn:hover::before, .map-btn:hover::after {
background: #ff2222;
box-shadow: 0 0 12px #ff2222;
}
@keyframes pulse-cross {
0% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); filter: drop-shadow(0 0 8px red); }
100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
}
.mem-thumb {
position: absolute;
top: 30px;
left: 50%;
transform: translateX(-50%);
width: 40px;
height: 40px;
border: 2px solid #8b0000;
border-radius: 4px;
background-size: cover;
background-position: center;
box-shadow: 2px 2px 8px rgba(0,0,0,0.6);
cursor: pointer;
pointer-events: auto;
transition: transform 0.2s, z-index 0s;
z-index: 20;
}
.mem-thumb:hover {
transform: translateX(-50%) scale(1.3) rotate(-5deg);
z-index: 50;
border-color: #ff2222;
}
.modal {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
z-index: 1000;
opacity: 1;
visibility: visible;
transition: all 0.4s ease;
}
.modal.hidden {
opacity: 0;
visibility: hidden;
pointer-events: none;
}
.modal-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.85);
backdrop-filter: blur(8px);
}
.modal-paper {
position: relative;
width: 90%;
max-width: 550px;
padding: 3rem;
background: #e8d8b7;
background-image: 
radial-gradient(circle at center, transparent 50%, rgba(74, 14, 28, 0.2) 100%);
border: 3px solid #4a0e1c;
border-radius: 4px;
box-shadow: inset 0 0 50px rgba(0,0,0,0.4), 0 15px 40px rgba(0,0,0,0.8);
transform: scale(1);
transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal.hidden .modal-paper {
transform: scale(0.9);
}
.modal-paper h3 {
font-family: 'Cinzel', serif;
color: #4a0e1c;
font-size: 2.2rem;
margin-bottom: 2rem;
text-align: center;
text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
input[type="password"] {
width: 100%;
padding: 1.2rem;
background: rgba(255,255,255,0.3);
border: 2px solid #8b0000;
font-family: 'Cinzel', serif;
font-size: 1.5rem;
color: #4a0e1c;
text-align: center;
margin-bottom: 2rem;
outline: none;
}
input[type="password"]:focus {
box-shadow: 0 0 15px rgba(139,0,0,0.6);
}
.action-btn {
display: block;
width: 100%;
padding: 1.2rem;
background: linear-gradient(to bottom, #8b0000, #4a0e1c);
border: 1px solid #000;
font-family: 'Cinzel', serif;
font-size: 1.2rem;
font-weight: 700;
color: #e8d8b7;
text-transform: uppercase;
cursor: pointer;
transition: filter 0.2s, transform 0.2s;
box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}
.action-btn:hover {
filter: brightness(1.2);
transform: translateY(-2px);
}
.action-btn.mini {
width: auto;
padding: 0.7rem 1.5rem;
font-size: 0.9rem;
}
.action-btn.outline {
background: transparent;
color: #4a0e1c;
border: 2px solid #4a0e1c;
}
.btn-close {
position: absolute;
top: 20px;
right: 20px;
width: 30px;
height: 30px;
background: transparent;
border: none;
cursor: pointer;
}
.btn-close::before, .btn-close::after {
content: '';
position: absolute;
top: 14px;
left: 2px;
width: 26px;
height: 3px;
background: #4a0e1c;
transition: background 0.2s;
}
.btn-close::before { transform: rotate(45deg); }
.btn-close::after { transform: rotate(-45deg); }
.btn-close:hover::before, .btn-close:hover::after { background: #ff2222; }
.upload-zone {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 1.5rem;
}
#img-preview {
width: 140px;
height: 140px;
border: 3px dashed #4a0e1c;
background: rgba(74,14,28,0.05);
background-size: cover;
background-position: center;
transition: border-color 0.2s;
position: relative;
cursor: pointer;
}
#img-preview::after {
content: '+';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 2.5rem;
color: #4a0e1c;
opacity: 0.6;
}
#img-preview.has-img::after { display: none; }
#img-upload { display: none; }
.fmt-tools {
display: flex;
gap: 10px;
margin-bottom: 12px;
}
.fmt-tools button {
width: 40px;
height: 40px;
background: rgba(255,255,255,0.4);
border: 2px solid #4a0e1c;
color: #4a0e1c;
font-family: 'Cinzel', serif;
font-weight: bold;
font-size: 1.1rem;
cursor: pointer;
}
.fmt-tools button:hover { background: rgba(74,14,28,0.2); }
#text-canvas {
width: 100%;
height: 200px;
border: 2px solid #4a0e1c;
padding: 1.2rem;
font-family: 'Inter', sans-serif;
color: #2b1100;
overflow-y: auto;
margin-bottom: 2rem;
background: rgba(255,255,255,0.3);
outline: none;
white-space: pre-wrap;
font-size: 1.05rem;
line-height: 1.6;
}
#read-img {
width: 100%;
height: 300px;
background-size: contain;
background-repeat: no-repeat;
background-position: center;
margin-bottom: 1.5rem;
}
#read-content {
font-size: 1.15rem;
line-height: 1.8;
}
#legal-body {
max-height: 60vh;
overflow-y: auto;
font-size: 0.95rem;
line-height: 1.6;
}
.gold-link {
color: #8b0000;
text-decoration: underline;
font-weight: 700;
}
#gdpr-banner {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background: rgba(43,17,0,0.95);
color: #e8d8b7;
padding: 1.5rem 3rem;
display: flex;
justify-content: space-between;
align-items: center;
z-index: 900;
transform: translateY(0);
transition: transform 0.5s;
border-top: 3px solid #8b0000;
}
#gdpr-banner.hidden { transform: translateY(100%); }
#gdpr-banner a { color: #8b0000; text-decoration: underline; }
.gdpr-btns { display: flex; gap: 1rem; }
footer {
width: 100%;
background: #0a0a0a;
padding: 3rem;
text-align: center;
border-top: 3px solid #4a0e1c;
margin-top: auto;
z-index: 5;
}
#footer-branding {
margin-bottom: 2rem;
padding-bottom: 2rem;
border-bottom: 1px solid #4a0e1c;
}
#footer-logo {
width: 200px;
margin-bottom: 1rem;
filter: grayscale(1) sepia(1) hue-rotate(-50deg) saturate(2) contrast(1.2);
}
.footer-title {
font-family: 'Cinzel', serif;
font-size: 1.6rem;
color: #b38728;
margin-bottom: 0.5rem;
}
.footer-subtitle {
font-family: 'Cinzel', serif;
font-size: 1rem;
color: #e8d8b7;
letter-spacing: 0.05rem;
text-transform: uppercase;
}
footer a {
color: #b38728;
text-decoration: none;
font-family: 'Cinzel', serif;
font-size: 1rem;
text-transform: uppercase;
margin: 0 2rem;
transition: color 0.3s;
}
footer a:hover { color: #ffebcd; }
