body {
    background-color: #111827;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

img.profil {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    margin: 0.2rem 0;
}

p.asdasd {
    color: #9ca3af;
    margin-bottom: 2rem;
}

.link-list {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transition: 0.3s;
}

.link-item img {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.youtube { background-color: #ff00009c; }
.youtube:hover { background-color: #cc0000; }

.discord { background-color: #5865f285; }
.discord:hover { background-color: #4752c4; }

.tiktok { background-color: #ff0050; }
.tiktok:hover { background-color: #cc0040; }

.guns { background-color: #803eb677; }
.guns:hover { background-color: #803eb6c9; }

.shadow-military { background-color: #00b7ff77; }
.shadow-military:hover { background-color: #09ceffc9; }

body::selection {
    background-color: #09ceff;
}
