/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: #121212;
    color: #eee;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

/* === Card === */
.links-card {
    width: 100%;
    max-width: 420px;
    background: #1a1a1a;
    border: 2px solid #2a2a2a;
    border-radius: 16px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.links-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2a2a2a;
}

.links-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
}

.links-divider {
    width: 100%;
    height: 1px;
    background: #2a2a2a;
}

/* === Social Icons === */
.links-social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.links-social > a {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #141414;
    border: 1px solid #2a2a2a;
    color: #aaa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.links-social > a:hover {
    color: #fff;
    border-color: #444;
    transform: translateY(-2px);
}

.links-social > a:has(.fa-x-twitter):hover { color: #fff;    border-color: #fff;    }
.links-social > a:has(.fa-youtube):hover   { color: #ff0000; border-color: #ff0000; }
.links-social > a:has(.fa-twitch):hover    { color: #9146ff; border-color: #9146ff; }
.links-social > a:has(.fa-instagram):hover { color: #e1306c; border-color: #e1306c; }
.links-social > a:has(.fa-discord):hover   { color: #7289da; border-color: #7289da; }
.links-social > a:has(.fa-tiktok):hover    { color: #25f4ee; border-color: #25f4ee; }

/* === Buttons === */
.links-btn {
    width: 100%;
    padding: 12px 18px;
    border-radius: 10px;
    background: #141414;
    border: 1px solid #2a2a2a;
    color: #eee;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.links-btn:hover {
    border-color: #d32f2f;
    color: #fff;
    transform: translateY(-2px);
}

.links-btn-donate {
    background: #d32f2f;
    border-color: #d32f2f;
    color: #fff;
}

.links-btn-donate:hover {
    background: #b71c1c;
    border-color: #b71c1c;
}

/* === Sections (Partner / Anfragen) === */
.links-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.links-section-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.links-section-label i {
    color: #d32f2f;
    font-size: 0.75rem;
}

/* === Footer === */
.links-footer {
    margin-top: 4px;
    font-size: 0.75rem;
    color: #555;
}

.links-footer a {
    color: #777;
    text-decoration: none;
    transition: color 0.2s ease;
}

.links-footer a:hover {
    color: #d32f2f;
}

/* === Responsive === */
@media (max-width: 480px) {
    .links-card {
        padding: 28px 20px;
    }

    .links-avatar {
        width: 80px;
        height: 80px;
    }
}
