#author_overlay {
    position: fixed;
    inset: 0;

    display: none;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    z-index: 999;

    opacity: 0;
    transition: opacity 0.25s ease;
}

#author_modal {
    width: 420px;
    max-width: 92vw;

    border-radius: 28px;

    background: rgba(20, 20, 20, 0.65);
    border: 1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);

    box-shadow: 0 30px 120px rgba(0,0,0,0.7),
                inset 0 1px 0 rgba(255,255,255,0.08);

    padding: 18px;

    color: white;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", Arial;

    display: flex;
    flex-direction: column;
    gap: 12px;

    transform: scale(0.92);
    opacity: 0;

    transition: transform 0.25s ease, opacity 0.25s ease;
}

#author_overlay.show {
    opacity: 1;
}

#author_overlay.show #author_modal {
    transform: scale(1);
    opacity: 1;
}

#author_title {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.3px;
}

#author_text {
    font-size: 13px;
    opacity: 0.75;
    line-height: 1.5;
}

#author_footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
}

#author_ok {
    padding: 10px 14px;

    border-radius: 14px;

    background: rgba(0, 255, 120, 0.18);
    border: 1px solid rgba(0, 255, 120, 0.35);

    color: #2dff8f;
    font-weight: 800;

    cursor: pointer;

    transition: 0.2s;
}

#author_ok:hover {
    transform: scale(1.05);
    background: rgba(0, 255, 120, 0.25);
}

#author_header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

#author_avatar {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background-image: url("Media/Profil_Gamenight999.png");
    background-size: cover;
    background-position: center;

    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

#author_title {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 0.3px;
}