.developer-credit{
    position:fixed;
    left:18px;
    bottom:18px;
    z-index:2500;
    color:white;
    font-family:'Segoe UI',sans-serif;
}

.developer-credit summary{
    display:block;
    width:max-content;
    padding:9px 13px;
    border:1px solid rgba(255,255,255,0.22);
    border-radius:5px;
    background:rgba(20,20,20,0.92);
    color:#e8d7aa;
    box-shadow:0 8px 24px rgba(0,0,0,0.32);
    backdrop-filter:blur(12px);
    cursor:pointer;
    font-size:12px;
    font-weight:700;
    letter-spacing:.2px;
    list-style:none;
    transition:background .2s ease, transform .2s ease;
}

.developer-credit summary::-webkit-details-marker{
    display:none;
}

.developer-credit summary:hover,
.developer-credit summary:focus-visible{
    background:#302b21;
    transform:translateY(-2px);
    outline:1px solid #e8d7aa;
}

.developer-credit-panel{
    position:absolute;
    left:0;
    bottom:45px;
    width:280px;
    padding:16px;
    border:1px solid rgba(255,255,255,0.2);
    border-radius:6px;
    background:rgba(20,20,20,0.96);
    box-shadow:0 14px 36px rgba(0,0,0,0.4);
    backdrop-filter:blur(14px);
}

.developer-credit-panel span{
    display:block;
    margin-bottom:5px;
    color:rgba(255,255,255,0.65);
    font-size:10px;
    font-weight:700;
    letter-spacing:.8px;
    text-transform:uppercase;
}

.developer-credit-panel strong{
    display:block;
    margin-bottom:10px;
    color:#e8d7aa;
    font-size:15px;
}

.developer-credit-panel a{
    color:white;
    font-size:12px;
    overflow-wrap:anywhere;
}

@media(max-width:600px){
    .developer-credit{
        left:10px;
        bottom:10px;
    }

    .developer-credit-panel{
        width:min(280px, calc(100vw - 20px));
    }
}
