/* uzay.com — Entegre Kullanıcı Paneli (her sayfada sağ altta) */
#kullanici-paneli {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 100;
    font-family: "Segoe UI", system-ui, sans-serif;
}

#kp-kure {
    width: 56px; height: 56px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 30% 30%, #7c9bff, #3b2fb8 65%, #1a1060);
    box-shadow: 0 0 22px rgba(110,130,255,.6), inset 0 0 14px rgba(255,255,255,.25);
    transition: transform .3s ease, box-shadow .3s ease;
    animation: kp-nabiz 3.2s ease-in-out infinite;
}
#kp-kure:hover { transform: scale(1.12) rotate(8deg); box-shadow: 0 0 34px rgba(130,150,255,.9); }
@keyframes kp-nabiz {
    0%, 100% { box-shadow: 0 0 18px rgba(110,130,255,.45); }
    50%       { box-shadow: 0 0 30px rgba(140,160,255,.8); }
}
.kp-avatar { color: #fff; font-size: 22px; font-weight: 700; text-shadow: 0 0 10px rgba(255,255,255,.6); }

#kp-pencere {
    position: absolute;
    right: 0;
    bottom: 70px;
    width: 250px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(140,160,255,.25);
    background: rgba(10,14,38,.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 18px 50px rgba(0,0,0,.55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(.96);
    transition: all .28s cubic-bezier(.34,1.4,.64,1);
    color: #e6eaff;
}
#kullanici-paneli.acik #kp-pencere { opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

.kp-baslik { display: flex; align-items: center; justify-content: space-between; gap: 8px; font-size: 15px; }
.kp-eposta { font-size: 12px; color: #8d9bd6; margin-top: 3px; }
.kp-misafir { font-size: 13px; color: #aab4e6; margin: 8px 0 4px; }

.kp-rol {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 9px;
    border-radius: 999px;
}
.kp-rol-superadmin { background: rgba(255,60,90,.18);  color: #ff7d97; border: 1px solid rgba(255,60,90,.4); }
.kp-rol-admin      { background: rgba(255,176,32,.15); color: #ffc861; border: 1px solid rgba(255,176,32,.4); }
.kp-rol-user       { background: rgba(45,168,255,.15); color: #7cc6ff; border: 1px solid rgba(45,168,255,.4); }

.kp-linkler { display: flex; flex-direction: column; gap: 4px; margin-top: 12px; }
.kp-linkler a {
    padding: 9px 12px;
    font-size: 13px;
    color: #dbe2ff;
    text-decoration: none;
    border-radius: 10px;
    transition: background .2s, transform .2s;
}
.kp-linkler a:hover { background: rgba(120,140,255,.14); transform: translateX(4px); }
.kp-yonetim { border: 1px solid rgba(120,140,255,.3); background: rgba(120,140,255,.08); }
.kp-cikis:hover { background: rgba(255,70,90,.15) !important; color: #ff9aa8; }

@media (max-width: 640px) {
    #kullanici-paneli { right: 14px; bottom: 14px; }
    #kp-kure { width: 50px; height: 50px; }
    #kp-pencere { width: min(78vw, 250px); }
}
