/* ========================= 3D HOLOGRAMM IMPRESSUM ========================= */
.impressum-card { position: relative; overflow: hidden; background: rgba(10,10,10,.45); backdrop-filter: blur(22px) saturate(160%); -webkit-backdrop-filter: blur(22px) saturate(160%); padding: 2rem; border-radius: 18px; margin: 2rem auto; max-width: 900px; box-shadow: 0 0 35px rgba(0,180,255,.35), inset 0 0 35px rgba(150,0,255,.35); transform-origin: center; transform: perspective(900px) rotateX(3deg); animation: cardFloat 7s ease-in-out infinite; color: #fff; }
@keyframes cardFloat { 0%,100% { transform: perspective(900px) rotateX(3deg) translateY(0); } 50% { transform: perspective(900px) rotateX(1deg) translateY(-6px); } }

.impressum-card::before { content: ""; position: absolute; inset: 0; pointer-events: none; background: repeating-linear-gradient(to bottom, rgba(255,255,255,.04) 0px, rgba(255,255,255,.04) 2px, transparent 3px, transparent 6px); animation: scanMove 6s linear infinite; z-index: 0; }
@keyframes scanMove { 0% { transform: translateY(-100%); } 100% { transform: translateY(100%); } }

.impressum-card::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 30% 40%, rgba(255,0,255,.35), transparent 70%); filter: blur(55px); animation: glowMove 8s ease-in-out infinite; z-index: 0; }
@keyframes glowMove { 0%,100% { opacity: .35; transform: translateX(0); } 50% { opacity: .75; transform: translateX(35px); } }

/* ========================= TEXT & HEADLINES ========================= */
.impressum-card h1 { font-size: 2rem; margin-bottom: 1rem; position: relative; z-index: 5; color: #00d1ff; text-shadow: 0 0 12px rgba(0,200,255,.8), 0 0 25px rgba(150,0,255,.6); }
.impressum-card h2 { margin-top: 1.8rem; font-size: 1.4rem; position: relative; z-index: 5; color: #b56bff; text-shadow: 0 0 10px rgba(150,0,255,.8), 0 0 20px rgba(0,200,255,.6); }
.impressum-card p, .impressum-card address, .impressum-card li { color: #e6e6e6; line-height: 1.7; position: relative; z-index: 5; }

/* ========================= LINKS ========================= */
.impressum-card a { color: #00d1ff; text-decoration: none; transition: .25s ease; position: relative; z-index: 5; }
.impressum-card a:hover { color: #b56bff; text-shadow: 0 0 10px rgba(0,200,255,.8), 0 0 20px rgba(150,0,255,.6); }

.impressum-links { margin-left: 18px; margin-bottom: 10px; position: relative; z-index: 5; }
.impressum-links li { margin-bottom: 6px; }

.seal { margin-top: 25px; font-size: .9rem; opacity: .8; position: relative; z-index: 5; }

/* ========================= MOBILE ========================= */
@media (max-width: 768px) { .impressum-card { transform: none; animation: none; border-radius: 12px; padding: 1.5rem; } }
