body {
    margin: 0;
    padding: 0;
    background: #0e0e10;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #f5f5f5;
}

.container {
    text-align: center;
    background: #1a1a1d;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    max-width: 600px;
    width: 90%;
}

h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.profile-picture img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid #3a82f7;
    object-fit: cover;
    margin-bottom: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.profile-picture img:hover {
    transform: scale(1.05);
    border-color: #60a5ff;
}

.links-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.links-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.links-column a {
    text-decoration: none;
    color: #dcdcdc;
    font-weight: 500;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.links-column a:hover {
    color: #3a82f7;
    transform: translateY(-2px);
}

.links-column img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.links-column a:hover img {
    transform: scale(1.2);
}

/* Mobile Anpassung */
@media (max-width: 500px) {
    .links-container {
        flex-direction: column;
        gap: 25px;
    }
}
