/* ============================================================
   KSS LinkTree — Oeffentliche Link-in-Bio-Seite
   ============================================================ */

.kss-linktree-body {
    margin: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    padding: 56px 20px 40px;
    box-sizing: border-box;
}

.kss-lt-wrap {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.kss-lt-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
}

.kss-lt-handle {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #18181b;
}

.kss-lt-bio {
    font-size: 15px;
    line-height: 1.5;
    color: #3f3f46;
    margin: 0 0 28px;
    white-space: pre-line;
}

.kss-lt-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.kss-lt-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: transform .12s ease, opacity .12s ease;
}

.kss-lt-btn:hover {
    transform: translateY(-2px);
    opacity: .92;
}

.kss-lt-btn:active {
    transform: translateY(0);
}

@media (max-width: 480px) {
    .kss-linktree-body { padding-top: 40px; }
}
