* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: #0a0a0f;
    color: #e0e0e0;
    line-height: 1.7;
}

a { color: #a78bfa; text-decoration: none; }
a:hover { color: #c4b5fd; }

.nav {
    padding: 1rem 2rem;
    border-bottom: 1px solid #1a1a3a;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav a { font-size: 0.85rem; color: #6666aa; }
.nav a:hover { color: #a78bfa; }
.nav .logo { font-weight: 700; color: #fff; letter-spacing: 0.1em; }

.hero {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 50%, #0a0a1a 100%);
    border-bottom: 1px solid #2a2a4a;
}
.hero h1 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1rem;
}
.hero h1 span {
    font-weight: 700;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero .subtitle { font-size: 1.2rem; color: #8888aa; max-width: 600px; margin-bottom: 2rem; }
.hero .badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    border: 1px solid #4a4a6a;
    border-radius: 2rem;
    font-size: 0.85rem;
    color: #a78bfa;
    letter-spacing: 0.1em;
}

.page-header {
    padding: 3rem 2rem;
    text-align: center;
    border-bottom: 1px solid #1a1a3a;
}
.page-header h1 { font-size: 2.5rem; font-weight: 300; color: #fff; margin-bottom: 0.5rem; }
.page-header h1 span { font-weight: 700; color: #a78bfa; }
.page-header p { color: #8888aa; max-width: 600px; margin: 0 auto; }

.container { max-width: 1000px; margin: 0 auto; padding: 3rem 2rem; }

.section-title {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #6366f1;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #1a1a3a;
}

.categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.card {
    background: #12121f;
    border: 1px solid #1e1e3a;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
}
.card:hover {
    border-color: #6366f1;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.1);
}
.card .icon { font-size: 2rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.2rem; color: #fff; margin-bottom: 0.5rem; }
.card p { font-size: 0.9rem; color: #777799; }
.card .count {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.2rem 0.8rem;
    background: #1a1a3a;
    border-radius: 1rem;
    font-size: 0.75rem;
    color: #a78bfa;
}

.topic-list { list-style: none; }
.topic-list li {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #1a1a3a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.topic-list li:hover { background: #12121f; }
.topic-list .title { color: #fff; font-weight: 500; }
.topic-list .desc { color: #777799; font-size: 0.85rem; margin-top: 0.3rem; }
.topic-list .status {
    padding: 0.2rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    white-space: nowrap;
}
.status-aktiv { background: #1a3a1a; color: #4ade80; }
.status-aufbau { background: #3a3a1a; color: #facc15; }
.status-geplant { background: #1a1a3a; color: #6366f1; }

.quote {
    text-align: center;
    padding: 2.5rem 2rem;
    margin: 2rem 0;
    border-left: 3px solid #6366f1;
    background: #12121f;
    border-radius: 0 12px 12px 0;
}
.quote p { font-size: 1.1rem; font-style: italic; color: #bbbbdd; max-width: 700px; margin: 0 auto 1rem; }
.quote .author { font-size: 0.85rem; color: #6666aa; }

.breadcrumb { padding: 1rem 2rem; font-size: 0.85rem; color: #4a4a6a; }
.breadcrumb a { color: #6366f1; }

footer {
    text-align: center;
    padding: 3rem 2rem;
    border-top: 1px solid #1a1a3a;
    color: #4a4a6a;
    font-size: 0.85rem;
}
footer a { color: #6366f1; }

@media (max-width: 600px) {
    .hero h1 { font-size: 2rem; letter-spacing: 0.15em; }
    .page-header h1 { font-size: 1.8rem; }
    .categories { grid-template-columns: 1fr; }
}
