/* ── Base & Variables ── */
:root {
    --muted: #94a3b8;
    --bg: #0f172a;
    --card: #1e293b;
    --border: #334155;
    --text: #f1f5f9;
    --accent: #60a5fa;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
}

/* ── Particles ── */
#particles {
    position: fixed;
    inset: 0;
    z-index: 0;
}

/* ── Layout ── */
.container {
    position: relative;
    z-index: 1;
    max-width: 480px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center; /* Sorgt dafür, dass alle Elemente im Container mittig sitzen */
}

/* ── Card ── */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 1.25rem;
    width: 100%; /* Karten füllen die Container-Breite aus */
}

.card.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

/* ── Avatar ── */
.avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    object-fit: cover;
}

h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

.tag {
    font-size: 0.85rem;
    color: var(--muted);
}

/* ── Section Title ── */
.section-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

/* ── Links ── */
.links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.2s, border-color 0.2s;
}

.link:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--accent);
}

.link i {
    width: 20px;
    text-align: center;
    color: var(--accent);
}

/* ── Discord Box ── */
.discord-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
}

.discord-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

#discordStatus {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.activity {
    font-size: 0.8rem;
    color: var(--muted);
}

/* ── RauteMusik Note ── */
.rautemusik-note {
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 0.6rem;
    text-align: center;
}

/* ── Portfolio ── */
.project {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
}

.project:last-child {
    border-bottom: none;
}

.project-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.project-desc {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 0.2rem;
}

/* ── Social ── */
.socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.socials a {
    color: var(--text);
    font-size: 1.2rem;
    transition: color 0.2s;
}

.socials a:hover {
    color: var(--accent);
}

.copyright {
    display: block;       /* Macht es zu einer eigenen Zeile */
    width: 100%;          /* Nutzt die volle Breite zum Zentrieren */
    text-align: center;   /* Zentriert den Text darin */
    
    /* ABSTAND NACH OBEN (Pixel-Schieben) */
    margin-top: 20px;     /* Erhöhe auf 30px, 40px etc. für mehr Abstand nach unten */
    
    /* FEINJUSTIERUNG LINKS/RECHTS */
    /* Falls es optisch minimal schief wirkt, kannst du hier schieben: */
    margin-left: 5px;
    margin-right: 5px;
    
    font-size: 0.85rem;
    color: var(--muted);
}

.copyright a {
    color: #6d28d9; /* Das gewünschte Lila */
    text-decoration: none;
    font-weight: 600;
}