/* VOIDCOM: Path to the Stars - CSS */
/* 100% self-hosted. Keine externen Assets. */
/* Autor: Raik Schumacher */
/* Datum: 22.04.2026 */

/* Fonts (lokal gehostet!) */
@font-face {
    font-family: "Manrope";
    src: url("./fonts/Manrope.woff2") format("woff2-variations"),
         url("./fonts/Manrope.woff2") format("woff2");
    font-weight: 200 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "JetBrains Mono";
    src: url("./fonts/JetBrainsMono.woff2") format("woff2-variations"),
         url("./fonts/JetBrainsMono.woff2") format("woff2");
    font-weight: 100 800;
    font-style: normal;
    font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #FDFBF7;
    color: #1E293B;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.55;
}
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 900; letter-spacing: -0.025em; line-height: 1; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
img, svg { display: block; max-width: 100%; }

.mono { font-family: "JetBrains Mono", Menlo, Consolas, monospace; }

::selection { background: #FFB5A7; color: #1E293B; }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: #FFF4ED; }
::-webkit-scrollbar-thumb { background: #1E293B; border: 3px solid #FFF4ED; }
::-webkit-scrollbar-thumb:hover { background: #F97316; }

/* Layout helper */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
.hidden { display: none !important; }
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* Navigation */
.navbar {
    position: sticky; top: 0; z-index: 50;
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 2px solid #1E293B;
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 16px 20px;
    max-width: 1280px; margin: 0 auto;
}
@media (min-width: 768px) { .nav-inner { padding: 16px 32px; } }
.nav-logo { display: inline-flex; align-items: center; gap: 10px; }
.nav-logo-badge {
    width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
    background: #FFB5A7; border: 2px solid #1E293B;
    box-shadow: 3px 3px 0 0 #1E293B;
    transition: box-shadow .25s;
}
.nav-logo:hover .nav-logo-badge {
    box-shadow: 0 0 16px rgba(255,181,167,0.9), 3px 3px 0 0 #1E293B;
}
.nav-logo-text {
    font-family: "JetBrains Mono", monospace;
    font-size: 13px; font-weight: 900; text-transform: uppercase;
    letter-spacing: 0.22em; color: #1E293B;
}
.nav-links { display: none; align-items: center; gap: 4px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link {
    position: relative;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.18em; color: #1E293B;
    padding: 8px 12px; transition: color .2s;
}
.nav-link:hover { color: #F97316; }
.nav-link.active { color: #F97316; }
.nav-link.active::after {
    content: ""; position: absolute; left: 12px; right: 12px; bottom: -4px;
    height: 3px; background: #F97316;
}
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Sprach Switch */
.lang-switch {
    display: inline-flex; align-items: stretch;
    border: 2px solid #1E293B; background: #FDFBF7;
    box-shadow: 3px 3px 0 0 #1E293B;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em;
}
.lang-btn { padding: 8px 12px; color: #1E293B; transition: background .2s, color .2s; }
.lang-btn + .lang-btn { border-left: 2px solid #1E293B; }
.lang-btn:hover { background: #FFB5A7; }
.lang-btn:nth-child(2):hover { background: #A8E6CF; }
.lang-btn.active { background: #1E293B; color: #FDFBF7; }

/* für Mobilansicht */
.nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border: 2px solid #1E293B; background: #FDFBF7;
    box-shadow: 3px 3px 0 0 #1E293B;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-mobile {
    display: none;
    border-top: 2px solid #1E293B; background: #FDFBF7;
}
.nav-mobile.open { display: block; }
.nav-mobile-inner { max-width: 1280px; margin: 0 auto; padding: 12px 20px; display: flex; flex-direction: column; }
.nav-mobile .nav-link {
    padding: 14px 0;
    border-bottom: 1px dashed rgba(30, 41, 59, 0.3);
    font-size: 13px;
}

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    border: 2px solid #1E293B;
    padding: 12px 24px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em;
    color: #1E293B;
    box-shadow: 4px 4px 0 0 #1E293B;
    transition: transform .2s, box-shadow .25s, background .2s;
}
@media (min-width: 640px) { .btn { font-size: 13px; } }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(4px); box-shadow: 0 0 0 0 #1E293B; }
.btn--peach { background: #FFB5A7; }
.btn--peach:hover { background: #FFC9BE; box-shadow: 0 0 22px rgba(255,181,167,0.9), 4px 4px 0 0 #1E293B; }
.btn--mint { background: #A8E6CF; }
.btn--mint:hover { background: #BDEED9; box-shadow: 0 0 22px rgba(168,230,207,0.9), 4px 4px 0 0 #1E293B; }
.btn--sky { background: #9DDEFA; }
.btn--sky:hover { background: #B6E6FB; box-shadow: 0 0 22px rgba(157,222,250,0.9), 4px 4px 0 0 #1E293B; }
.btn--cream { background: #FDFBF7; }
.btn--cream:hover { background: #FFF4ED; box-shadow: 0 0 22px rgba(157,222,250,0.7), 4px 4px 0 0 #1E293B; }

/* Overline tag */
.overline {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.24em;
    color: #F97316;
}
.overline--badge {
    color: #1E293B; background: #FDFBF7;
    border: 2px solid #1E293B; padding: 6px 12px;
    box-shadow: 3px 3px 0 0 #1E293B;
}

/* Sections */
section { position: relative; }
.section-pad { padding: 80px 0; }
@media (min-width: 768px) { .section-pad { padding: 112px 0; } }

.divider-top { border-top: 2px solid #1E293B; }
.divider-bottom { border-bottom: 2px solid #1E293B; }

/* Hero */
.hero {
    position: relative; overflow: hidden;
    border-bottom: 2px solid #1E293B;
}

.hero-grid {
    position: relative; display: grid; gap: 48px; align-items: center;
    padding: 64px 20px 80px 20px;
}

@media (min-width: 1024px) {
    .hero-grid { grid-template-columns: 1.25fr 1fr; gap: 64px; padding: 96px 20px 112px 20px; }
}

.hero-title {
    margin-top: 32px;
    font-size: clamp(3rem, 9vw, 6.5rem);
    line-height: 0.92; letter-spacing: -0.04em;
}

.hero-title .accent { display: block; color: #F97316; }

.hero-lead {
    margin-top: 32px; max-width: 560px; font-size: 1.125rem; line-height: 1.65; color: #475569;
}
.hero-ctas { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }

/* Dekoratives Grid und Blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(64px); pointer-events: none; }

.blob--peach { background: #FFB5A7; opacity: .4; }
.blob--mint { background: #A8E6CF; opacity: .5; }
.blob--sky { background: #9DDEFA; opacity: .4; }

.grid-bg {
    position: absolute; inset: 0; pointer-events: none; opacity: .08;
    background-image:
        linear-gradient(to right, #1E293B 1px, transparent 1px),
        linear-gradient(to bottom, #1E293B 1px, transparent 1px);
    background-size: 48px 48px;
}

/* Hero screen chip */
.hero-screen-wrap { position: relative; }
.hero-screen-glow {
    position: absolute; inset: -16px; background: #FFB5A7; opacity: .4;
    filter: blur(32px); pointer-events: none;
}

.hero-chip {
    position: absolute; background: #FDFBF7;
    border: 2px solid #1E293B;
    padding: 8px 12px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em;
    box-shadow: 3px 3px 0 0 #1E293B;
}

.hero-chip--bl { bottom: -20px; left: -20px; background: #A8E6CF; }
.hero-chip--tr { top: -16px; right: -16px; }

/* Bilder Platzhalter und Farben */
.screen {
    position: relative; aspect-ratio: 16/9; width: 100%; overflow: hidden;
    border: 2px dashed #1E293B;
    transition: box-shadow .3s;
}

.screen--mint { background: #EAFDF5; }
.screen--mint:hover { box-shadow: 0 0 24px rgba(168,230,207,0.9); }
.screen--peach { background: #FFF4ED; }
.screen--peach:hover { box-shadow: 0 0 24px rgba(255,181,167,0.9); }
.screen--sky { background: #ECF8FE; }
.screen--sky:hover { box-shadow: 0 0 24px rgba(157,222,250,0.9); }
.screen--cream { background: #FDFBF7; }
.screen--cream:hover { box-shadow: 0 0 24px rgba(157,222,250,0.7); }

.screen::before {
    /* scanlines */
    content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .4;
    background-image: repeating-linear-gradient(0deg, rgba(30,41,59,0.06) 0 1px, transparent 1px 3px);
}

.screen::after {
    /* Pixelgitter */
    content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .6;
    background-image: radial-gradient(circle at 1px 1px, rgba(30,41,59,0.12) 1px, transparent 0);
    background-size: 14px 14px;
}

.screen-corner { position: absolute; width: 16px; height: 16px; border: 0 solid #1E293B; z-index: 1; }
.screen-corner.tl { top: 12px; left: 12px; border-top-width: 2px; border-left-width: 2px; }
.screen-corner.tr { top: 12px; right: 12px; border-top-width: 2px; border-right-width: 2px; }
.screen-corner.bl { bottom: 12px; left: 12px; border-bottom-width: 2px; border-left-width: 2px; }
.screen-corner.br { bottom: 12px; right: 12px; border-bottom-width: 2px; border-right-width: 2px; }

.screen-body {
    position: absolute; inset: 0; z-index: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px; padding: 24px; text-align: center;
}

.screen-dot {
    width: 12px; height: 12px; border: 2px solid #1E293B;
}

.screen-dot--mint { background: #A8E6CF; }
.screen-dot--peach { background: #FFB5A7; }
.screen-dot--sky { background: #9DDEFA; }
.screen-dot--cream { background: #FDFBF7; }

.screen-label {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em;
    color: #475569;
}

.screen-sub {
    font-family: "JetBrains Mono", monospace;
    font-size: 10px; text-transform: uppercase; letter-spacing: 0.24em;
    color: rgba(71, 85, 105, 0.7);
}

/* Marquee */
.marquee {
    position: relative; overflow: hidden;
    border-top: 2px solid #1E293B; border-bottom: 2px solid #1E293B;
    background: #A8E6CF; padding: 12px 0;
}

.marquee-track {
    display: flex; white-space: nowrap;
    animation: voidcom-marquee 38s linear infinite;
    will-change: transform;
}

.marquee-item {
    margin: 0 16px;
    font-family: "JetBrains Mono", monospace;
    font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em;
    color: #1E293B;
}

@keyframes voidcom-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Section headings */
.section-head { display: flex; flex-direction: column; gap: 12px; margin-bottom: 48px; }

@media (min-width: 768px) {
    .section-head { margin-bottom: 64px; }
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    line-height: 1; letter-spacing: -0.04em; max-width: 48rem;
}

.section-sub { max-width: 36rem; color: #475569; }

/* Kärtchen */
.bento { display: grid; gap: 24px; }

@media (min-width: 768px) {
    .bento { grid-template-columns: repeat(6, 1fr); }
}

.bento .card { grid-column: span 6; }

@media (min-width: 768px) {
    .bento .card.s3 { grid-column: span 3; }
    .bento .card.s2 { grid-column: span 2; }
    .bento .card.s6 { grid-column: span 6; }
}

.card {
    position: relative;
    background: #FDFBF7;
    border: 2px solid #1E293B;
    padding: 28px;
    transition: transform .3s, box-shadow .3s;
}

@media (min-width: 768px) {
    .card { padding: 32px; }
}

.card:hover { transform: translateY(-4px); }

.card--cream { background: #FDFBF7; }
.card--mint { background: #EAFDF5; }
.card--sky { background: #ECF8FE; }
.card--peach { background: #FFF4ED; }
.card--glow-peach:hover { box-shadow: 0 0 28px rgba(255,181,167,0.9); }
.card--glow-mint:hover { box-shadow: 0 0 28px rgba(168,230,207,0.9); }
.card--glow-sky:hover { box-shadow: 0 0 28px rgba(157,222,250,0.9); }

.card-bar { display: block; width: 56px; height: 6px; margin-bottom: 24px; }

.bar--peach { background: #FFB5A7; }
.bar--mint { background: #A8E6CF; }
.bar--sky { background: #9DDEFA; }

.card-tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em;
    color: #475569;
}

.card-title {
    margin-top: 12px;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    letter-spacing: -0.01em; line-height: 1.15;
}

.card-body { margin-top: 16px; max-width: 42rem; color: #475569; line-height: 1.65; }


/* Stats */
.stats-wrap { background: #FFF4ED; border-top: 2px solid #1E293B; border-bottom: 2px solid #1E293B; }
.stats {
    display: grid; gap: 20px;
}

@media (min-width: 640px) {
    .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .stats { grid-template-columns: repeat(4, 1fr); }
}

.stat {
    border: 2px solid #1E293B; padding: 24px;
    transition: box-shadow .3s;
}

.stat:hover { box-shadow: 0 0 22px rgba(168,230,207,0.85); }
.stat:nth-child(1) { background: #FDFBF7; }
.stat:nth-child(2) { background: #EAFDF5; }
.stat:nth-child(3) { background: #FDFBF7; }
.stat:nth-child(4) { background: #ECF8FE; }

.stat-value {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    letter-spacing: -0.04em; line-height: 1;
}

.stat-label {
    margin-top: 16px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.2em;
    color: #475569;
}

/* Call to Action */
.cta-strip {
    position: relative; overflow: hidden;
    border: 2px solid #1E293B; background: #FDFBF7;
    padding: 32px;
}

@media (min-width: 768px) {
    .cta-strip { padding: 56px; }
}

.cta-inner {
    position: relative; display: grid; gap: 32px;
}

@media (min-width: 768px) {
    .cta-inner { grid-template-columns: 1.4fr 1fr; align-items: end; }
}

.cta-title {
    margin-top: 16px;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -0.04em; line-height: 0.95;
}

.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; }

@media (min-width: 768px) {
    .cta-actions { justify-content: flex-end; }
}

/* Game intro */
.page-hero {
    position: relative; overflow: hidden;
    border-bottom: 2px solid #1E293B;
    padding: 80px 0;
}

@media (min-width: 768px) {
    .page-hero { padding: 112px 0; }
}

.page-hero--mint { background: #EAFDF5; }

.page-title {
    margin-top: 24px;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    line-height: 0.92; letter-spacing: -0.04em; white-space: pre-line;
}

.page-lead {
    margin-top: 32px; max-width: 640px; font-size: 1.125rem; line-height: 1.65; color: #475569;
}

/* Galerie */
.gallery-wrap { border-top: 2px solid #1E293B; background: #FFF4ED; }

.gallery-head { display: flex; flex-direction: column; gap: 12px; margin-bottom: 48px; }

@media (min-width: 768px) {
    .gallery-head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
    }

.gallery-note {
    max-width: 28rem;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: #475569;
}

.gallery { display: grid; gap: 24px; }

@media (min-width: 768px) { .gallery { grid-template-columns: 1fr 1fr; } }

/* Lore */
.lore-article {
    position: relative;
    background: #FDFBF7; border: 2px solid #1E293B;
    padding: 32px; box-shadow: 8px 8px 0 0 #1E293B;
}

@media (min-width: 768px) {
    .lore-article { padding: 56px; }
}

.lore-badge {
    position: absolute; top: -12px; left: -12px;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: #FFB5A7; border: 2px solid #1E293B;
    box-shadow: 3px 3px 0 0 #1E293B;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em;
}

.lore-body p { margin-bottom: 28px; font-size: 1.125rem; line-height: 1.65; color: #475569; }
.lore-body p:last-child { margin-bottom: 0; }

.lore-body p.quote {
    border-left: 4px solid #F97316; background: #FFF4ED;
    padding: 16px 20px; font-family: "JetBrains Mono", monospace;
    font-size: 1rem; font-style: italic; color: #1E293B;
}

.lore-foot {
    margin-top: 40px; padding-top: 32px;
    border-top: 2px dashed rgba(30,41,59,0.4);
    font-family: "JetBrains Mono", monospace;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em;
    color: #475569;
}

/* Roadmap timeline */
.timeline { position: relative; display: flex; flex-direction: column; gap: 32px; }

@media (min-width: 768px) {
    .timeline { gap: 48px; }
}

.timeline::before {
    content: ""; position: absolute; left: 16px; top: 0; bottom: 0;
    width: 2px; background: #1E293B;
}

@media (min-width: 768px) {
    .timeline::before { left: 50%; transform: translateX(-50%); }
}

.phase { position: relative; }

@media (min-width: 768px) {
    .phase { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
}

.phase-dot {
    position: absolute; left: 16px; top: 24px; transform: translateX(-50%);
    width: 20px; height: 20px; border: 2px solid #1E293B;
}

@media (min-width: 768px) {
    .phase-dot { left: 50%; }

}

.phase-dot--active { background: #A8E6CF; box-shadow: 0 0 18px rgba(168,230,207,1); }
.phase-dot--next { background: #9DDEFA; box-shadow: 0 0 18px rgba(157,222,250,1); }
.phase-dot--planned { background: #FFB5A7; box-shadow: 0 0 18px rgba(255,181,167,1); }
.phase-dot--someday { background: #FDFBF7; box-shadow: 0 0 14px rgba(30,41,59,0.25); }

.phase-inner { padding-left: 48px; }

@media (min-width: 768px) {
    .phase.left .phase-inner { padding-left: 0; padding-right: 48px; text-align: right; }
    .phase.right .phase-inner { grid-column: 2; padding-left: 48px; }
}

.phase-status {
    display: inline-flex; align-items: center; gap: 8px;
    border: 2px solid #1E293B; padding: 6px 12px;
    box-shadow: 3px 3px 0 0 #1E293B;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em;
    color: #1E293B;
}

.phase-status--active { background: #A8E6CF; }
.phase-status--next { background: #9DDEFA; }
.phase-status--planned { background: #FFB5A7; }
.phase-status--someday { background: #FDFBF7; }

.phase-card {
    margin-top: 16px;
    border: 2px solid #1E293B; background: #FDFBF7;
    padding: 24px; box-shadow: 4px 4px 0 0 #1E293B;
}

@media (min-width: 768px) { .phase-card { padding: 32px; } }

.phase-tag {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.24em;
    color: #475569;
}

.phase-title {
    margin-top: 8px;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    line-height: 1.1;
}

.phase-items { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; color: #475569; }

.phase-items li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; line-height: 1.55;
}

.phase-items li::before {
    content: ""; flex-shrink: 0; margin-top: 8px;
    width: 8px; height: 8px; background: #F97316;
}

@media (min-width: 768px) {
    .phase.left .phase-items li { flex-direction: row-reverse; text-align: right; }
}

/* Blog */
.blog-hero {
    position: relative; overflow: hidden;
    min-height: 70vh; border-bottom: 2px solid #1E293B;
    display: flex; align-items: center;
}

.blog-title {
    margin-top: 24px;
    font-size: clamp(2.75rem, 8vw, 6rem);
    line-height: 0.92; letter-spacing: -0.04em;
}

.blog-badge {
    display: inline-flex; align-items: center; gap: 12px;
    margin-top: 40px;
    border: 2px solid #1E293B; background: #A8E6CF;
    padding: 12px 20px; box-shadow: 4px 4px 0 0 #1E293B;
    font-family: "JetBrains Mono", monospace;
    font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em;
}

.blog-pulse {
    width: 8px; height: 8px; background: #F97316;
    animation: voidcom-pulse 1.5s ease-in-out infinite;
}

@keyframes voidcom-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.blog-body { margin-top: 40px; max-width: 640px; font-size: 1.125rem; line-height: 1.65; color: #475569; }

.terminal {
    margin-top: 48px; max-width: 640px; width: 100%;
    border: 2px solid #1E293B; background: #FDFBF7;
    box-shadow: 8px 8px 0 0 #1E293B;
}

.terminal-head {
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 2px solid #1E293B; background: #FFF4ED;
    padding: 8px 16px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.24em;
}

.terminal-dots { display: flex; gap: 6px; }
.terminal-dots span { width: 10px; height: 10px; border: 1px solid #1E293B; }
.terminal-dots span:nth-child(1) { background: #FFB5A7; }
.terminal-dots span:nth-child(2) { background: #A8E6CF; }
.terminal-dots span:nth-child(3) { background: #9DDEFA; }
.terminal-body { padding: 24px; font-family: "JetBrains Mono", monospace; font-size: 14px; color: #1E293B; }
.terminal-body p { margin: 0 0 8px; }
.terminal-body .prompt { color: #F97316; }
.terminal-body .muted { color: #475569; }

.terminal-cursor {
    display: inline-block; width: 8px; height: 16px;
    margin-left: 4px; vertical-align: -2px;
    background: #1E293B;
    animation: voidcom-blink 1s steps(2) infinite;
}

@keyframes voidcom-blink { 50% { opacity: 0; } }

.socials-label {
    margin-top: 56px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em;
    color: #475569;
}

.socials-row { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 12px; padding-bottom: 30px; }

.social-chip {
    display: inline-flex; align-items: center; gap: 10px;
    border: 2px solid #1E293B; background: #FDFBF7;
    padding: 12px 16px; box-shadow: 3px 3px 0 0 #1E293B;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em;
    transition: transform .2s, box-shadow .25s, background .2s;
}

.social-chip:hover {
    transform: translateY(-2px);
    background: #A8E6CF;
    box-shadow: 0 0 18px rgba(168,230,207,0.9), 3px 3px 0 0 #1E293B;
}

/* Footer */
.footer {
    position: relative; overflow: hidden;
    margin-top: 96px;
    border-top: 2px solid #1E293B;
    background: #FFF4ED;
}

.footer-watermark {
    position: absolute; inset-inline: 0; bottom: -48px;
    text-align: center;
    font-family: "JetBrains Mono", monospace;
    font-weight: 900; text-transform: uppercase; letter-spacing: -0.04em;
    line-height: 1;
    color: rgba(30,41,59,0.05);
    font-size: clamp(6rem, 18vw, 16rem);
    pointer-events: none; user-select: none;
}

.footer-grid {
    position: relative; display: grid; gap: 48px;
    padding: 64px 20px;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; padding: 96px 20px; }
}

.footer-col h4 {
    font-family: "JetBrains Mono", monospace;
    font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.22em;
}

.footer-col ul { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { transition: color .2s; text-underline-offset: 4px; }
.footer-col a:hover { color: #F97316; text-decoration: underline; }
.footer-tagline { margin-top: 24px; max-width: 24rem; color: #475569; }

.footer-made {
    margin-top: 16px;
    font-family: "JetBrains Mono", monospace;
    font-size: 12px; text-transform: uppercase; letter-spacing: 0.18em; color: #475569;
}

.footer-socials { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; }
.footer-social {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border: 2px solid #1E293B; background: #FDFBF7;
    box-shadow: 3px 3px 0 0 #1E293B;
    transition: transform .2s, box-shadow .25s, background .2s;
}

.footer-social:hover {
    transform: translateY(-2px); background: #9DDEFA;
    box-shadow: 0 0 18px rgba(157,222,250,0.9), 3px 3px 0 0 #1E293B;
}

.footer-social svg { width: 20px; height: 20px; }
.footer-note {
    margin-top: 24px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: #475569;
}

.footer-bar {
    position: relative;
    border-top: 2px dashed rgba(30,41,59,0.4);
    background: #FDFBF7;
}

.footer-bar-inner {
    display: flex; flex-direction: column; gap: 8px;
    padding: 20px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: #475569;
}

@media (min-width: 768px) {
    .footer-bar-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* Icons */
.icon { width: 16px; height: 16px; stroke-width: 2.5; }
.icon--sm { width: 14px; height: 14px; }
.icon--lg { width: 20px; height: 20px; }

/* Anklickbare Bilder für Vergrößerung */
.clickable-image {
    cursor: zoom-in;
    transition: transform 0.2s ease;
}

.clickable-image:hover {
    transform: scale(1.03);
}

/* Overlay */
#image-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 20, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;

    z-index: 9999;
}

#image-overlay.active {
    opacity: 1;
    pointer-events: all;
}

#overlay-image {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    cursor: zoom-out;
}
