body {
    margin: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: radial-gradient(circle at 50% 25%, #23272a 60%, #181a1b 100%);
    color: #e9ecef;
    min-height: 100vh;
}
nav {
    background: #101214e6;
}
nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}
nav ul li {
    margin: 0 18px;
}
nav a {
    color: #9ecfff;
    text-decoration: none;
    font-weight: 500;
    padding: 18px 0;
    display: inline-block;
    letter-spacing: 1px;
    transition: color 0.15s, border-bottom 0.15s;
}
nav a.active,
nav a:hover {
    color: #fff;
    border-bottom: 2px solid #5ab4fd;
}

main {
    max-width: 900px;
    margin: 32px auto 0 auto;
    padding: 0 2vw;
}
.row-glow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}
.posterframe {
    flex: 0 0 auto;
}
.poster {
    width: 300px;
    max-width: 95vw;
    border-radius: 16px;
    box-shadow: 0 8px 32px 8px rgba(20,60,120,0.19), 0 1px 32px 6px #3473A6;
    filter: brightness(0.93) contrast(1.1);
}
.glowbox {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(18, 22, 36, 0.92);
    border-radius: 16px;
    min-width: 340px;
    padding: 32px 28px 22px 28px;
    box-shadow: 0 0 55px 14px #62e7ff80;
    border: 1.2px solid rgba(90,210,255,0.12);
    text-align: left;
    animation: fadeGlow 1.2s;
}
@keyframes fadeGlow {
    from { opacity: 0; transform: scale(1.07);}
    to   { opacity: 1; transform: scale(1);}
}
.title {
    font-size: 2.2rem;
    color: #65eaff;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    text-shadow: 0 1px 12px #14477299;
}
.subtitle {
    font-size: 1.25rem;
    color: #ffe45c;
    font-weight: 700;
    text-shadow: 0 1px 10px #edc73a66;
}
.below-section {
    background: #212428cc;
    padding: 34px 28px;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.19);
    margin-top: 18px;
}
.below-section h2 {
    margin-top: 0;
    color: #eeeeee;
}
.below-section p {
    margin: 0;
}
footer {
    text-align: center;
    color: #7a899a;
    font-size: 0.95rem;
    padding: 18px 0 8px 0;
}

@media (max-width: 820px) {
    .row-glow {
        flex-direction: column;
        gap: 22px;
    }
    .glowbox { min-width: 0; width: 95vw; }
    .poster { max-width: 96vw; }
}

/* Zentriert Poster auf der Poster-Seite */
.posterpage-center {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh; /* Bild bleibt mittig, Seitenhöhe großzügig */
    width: 100%;
}
.poster-large {
    width: 700px;
    max-width: 98vw;
}

/* Neu hinzugefügt: Styles für die inhalt.html Artikel-Seite */
main article {
    max-width: 720px;
    margin: 40px auto 60px auto;
    background: rgba(33, 36, 40, 0.72);
    border-radius: 14px;
    padding: 34px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
article h1, article h2 {
    color: #65eaff;
    margin-bottom: 20px;
}
article h1 {
    font-size: 2.4rem;
}
article h2 {
    font-size: 1.6rem;
}
article p, article ul {
    color: #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.6;
}
article ul {
    margin-left: 1.2em;
    list-style-type: disc;
}
article blockquote {
    font-style: italic;
    font-size: 1.2rem;
    color: #ffdb5c;
    margin: 28px 0;
    padding-left: 1.2em;
    border-left: 3px solid #ffd93b;
}
