body {
    margin: 0;
    font-family: 'Terminal', 'Courier New', Courier, monospace;
    background-color: black;
    color: #00ff00;
    overflow-x: hidden;
}

/* ── Hintergrund & Sterne ── */

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    overflow: hidden;
    z-index: 0;
}

.background .star {
    position: absolute;
    background: white;
    border-radius: 50%;
    width: 2px;
    height: 2px;
    animation: twinkle 3s infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50%       { opacity: 1; }
}

/* ── Sternschnuppe ── */

.shooting-star {
    position: fixed;
    width: 220px;
    height: 3px;
    border-radius: 2px;
    pointer-events: none;
    transform-origin: left center;
    background: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.25) 70%, white);
    animation: shoot 0.9s linear forwards;
}

@keyframes shoot {
    0%   { opacity: 0; transform: rotate(var(--angle)) translateX(0); }
    8%   { opacity: 1; }
    90%  { opacity: 1; }
    100% { opacity: 0; transform: rotate(var(--angle)) translateX(var(--dist)); }
}

/* ── Layout ── */

.container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 3em;
    margin: 0.5em 0;
}

.description {
    font-size: 1.2em;
    margin: 1em 0;
}

.photo-container {
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
}

.photo {
    border: 1px solid #00ff00;
    padding: 3px;
    width: 300px;
    box-sizing: border-box;
    flex: 0 1 auto;
    display: inline-block;
    margin-left: 5px;
    margin-right: 5px;
}

.photo img {
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
}

/* ── Sektionen ── */

.section {
    border: 1px solid #00ff00;
    padding: 16px;
    margin: 20px auto;
    max-width: 900px;
    text-align: left;
    background: rgba(0, 255, 0, 0.03);
}

.section h2 {
    margin: 0 0 12px 0;
    font-size: 1.6em;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.band-list,
.tour-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.band-list li,
.tour-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed #00ff00;
    padding: 10px 0;
}

.tour-list li .badge {
    margin-left: 10px;
}

.band-list li:first-child,
.tour-list li:first-child {
    border-top: none;
}

.role {
    opacity: 0.9;
}

.badge {
    border: 1px solid #00ff00;
    padding: 2px 8px;
    font-size: 0.9em;
    border-radius: 4px;
    white-space: normal;
    word-break: break-word;
    display: inline-block;
}

.impressum {
    margin-top: 2em;
    font-size: 0.8em;
}

/* ── Links ── */

a {
    color: #00ffff;
    text-decoration: none;
}

a:visited {
    color: #00bcd4;
}

a:hover {
    color: #ffffff;
    text-decoration: underline;
}

a:active {
    color: #ff3333;
}

/* ── Lightbox ── */

#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.92);
    justify-content: center;
    align-items: center;
}

#lightbox.active {
    display: flex;
}

#lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    border: 1px solid #00ff00;
    box-shadow: 0 0 40px rgba(0, 255, 0, 0.3);
    cursor: zoom-out;
}

#lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5em;
    color: #00ff00;
    cursor: pointer;
    line-height: 1;
    user-select: none;
}

#lightbox-close:hover {
    color: #ffffff;
}

/* ── Responsive ── */

@media (max-width: 700px) {
    .photo-container {
        flex-direction: column;
    }

    .photo {
        flex: 1 1 100%;
        max-width: 100%;
    }
}