/* Public Creator-Page */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.profile {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font);
    min-height: 100vh;
    line-height: 1.5;
    padding: 32px 16px;
    -webkit-font-smoothing: antialiased;
}
.profile__wrap { max-width: 480px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; gap: 18px; }
.profile__avatar { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin: 0 auto; border: 3px solid rgba(255,255,255,0.2); }
.profile__avatar--ph { display: flex; align-items: center; justify-content: center; font-size: 2.2rem; font-weight: 800; background: rgba(255,255,255,0.1); }
.profile__name { font-size: 1.4rem; margin: 0; font-weight: 700; }
.profile__bio { margin: 0; opacity: 0.85; }

.profile__featured {
    display: block; padding: 18px 16px; border-radius: var(--btn-radius);
    background: var(--btn-bg); color: var(--btn-text); text-decoration: none;
    font-size: 1.1rem; font-weight: 700;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.15), 0 6px 20px rgba(0,0,0,0.25);
}
.profile__featured:hover { transform: translateY(-1px); }

.profile__links { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.profile__link {
    display: block; padding: 14px 16px; border-radius: var(--btn-radius);
    background: var(--btn-bg); color: var(--btn-text); text-decoration: none;
    font-weight: 600; transition: transform 0.12s ease, box-shadow 0.12s ease;
    box-shadow: 0 2px 0 rgba(0,0,0,0.15);
}
.profile__link:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.2); }

.profile__footer { margin-top: 24px; font-size: 0.85rem; opacity: 0.7; display: flex; gap: 6px; justify-content: center; align-items: center; }
.profile__footer a { color: inherit; }
.profile__footer-sep { opacity: 0.5; }
.profile__report { font-size: 0.78rem; opacity: 0.6; text-decoration: underline; }
.profile__report:hover { opacity: 1; }

/* Social-Icon-Reihe oben */
.profile__socials { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 4px 0 8px; }
.profile__social {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--btn-bg); color: var(--btn-text);
    text-decoration: none; transition: transform 0.12s ease, box-shadow 0.12s ease;
    box-shadow: 0 2px 0 rgba(0,0,0,0.15);
}
.profile__social:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0,0,0,0.25); }
.profile__social svg { width: 20px; height: 20px; }

/* Icon-Prefix vor normalen Links (Email etc.) */
.profile__link--with-icon { padding-left: 48px; position: relative; }
.profile__link-icon {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    display: inline-flex; width: 20px; height: 20px;
}
.profile__link-icon svg { width: 100%; height: 100%; }

.profile__link--live { position: relative; outline: 2px solid #ff3e3e; }
.profile__link--live > span:nth-child(2) { display: inline-flex; align-items: center; gap: 8px; }
.profile__live-dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; background: #ff3e3e; box-shadow: 0 0 0 0 rgba(255,62,62,0.7); animation: pulse 1.6s infinite; vertical-align: middle; margin-right: 6px; }
.profile__live-badge { display: inline-block; margin-left: 8px; padding: 2px 8px; border-radius: 999px; background: #ff3e3e; color: #fff; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.05em; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,62,62,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255,62,62,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,62,62,0); }
}
