.Graph {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50vh;
        background-color: rgba(4, 5, 5, 0.55);
        border: 3px solid;
        border-radius: 12px;
        box-shadow: 0 24px 40px rgba(0, 0, 0, 0.35);
        padding: 24px;
    }

    canvas {
        width: 100%;
        height: auto;
    }

    #myChart {
        color: white;
    }

    .ranks-hint {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin: 32px 0 24px;
        padding: 18px 22px;
        background-color: rgba(4, 5, 5, 0.55);
        border: 3px solid;
        border-radius: 12px;
        box-shadow: 0 16px 28px rgba(0, 0, 0, 0.3);
    }

    .ranks-hint__text {
        margin: 0;
        flex: 1 1 260px;
        color: #fff;
    }

    .ranks-hint__btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 12px 20px;
        background-color: rgba(125, 33, 40, 0.85);
        border: 1px solid rgba(125, 33, 40, 0.9);
        border-radius: 8px;
        color: #fff;
        font-weight: 700;
        text-decoration: none;
        transition: background-color 0.18s ease, transform 0.18s ease;
    }

    .ranks-hint__btn:hover,
    .ranks-hint__btn:focus {
        background-color: rgba(160, 42, 51, 0.95);
        transform: translateY(-2px);
    }

    .ranks-hint__btn .rank-chip-icon {
        margin-right: 0;
    }

    @media screen and (max-width: 560px) {
        .ranks-hint {
            flex-direction: column;
            align-items: stretch;
            text-align: center;
        }

        .ranks-hint__btn {
            justify-content: center;
        }
    }

    .rank-chip-icon {
        width: 32px;
        height: 32px;
        object-fit: contain;
        vertical-align: middle;
        margin-right: 10px;
        flex: 0 0 auto;
    }

    .contact-chip--wide {
        align-items: center;
        box-sizing: border-box;
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
    }

    [data-member-count] {
        margin-left: 0.25em;
        white-space: nowrap;
    }

    .member-card .member-join-date {
        line-height: 1.35;
        overflow-wrap: anywhere;
    }

    .role-tooltip {
        border-bottom: 1px dotted rgba(255, 255, 255, 0.75);
        cursor: help;
        display: inline-flex;
        justify-content: center;
        outline: none;
        position: relative;
    }

    .role-tooltip::after {
        background: rgba(4, 5, 5, 0.96);
        border: 1px solid rgba(125, 33, 40, 0.75);
        border-radius: 8px;
        bottom: calc(100% + 10px);
        box-shadow: 0 16px 28px rgba(0, 0, 0, 0.4);
        color: #fff;
        content: attr(data-tooltip);
        font-size: 13px;
        font-weight: 600;
        left: 50%;
        line-height: 1.35;
        max-width: min(280px, 82vw);
        opacity: 0;
        padding: 10px 12px;
        pointer-events: none;
        position: absolute;
        text-align: center;
        transform: translate(-50%, 4px);
        transition: opacity 0.18s ease, transform 0.18s ease;
        visibility: hidden;
        width: max-content;
        z-index: 5;
    }

    .role-tooltip::before {
        border: 7px solid transparent;
        border-top-color: rgba(125, 33, 40, 0.75);
        bottom: calc(100% - 4px);
        content: "";
        left: 50%;
        opacity: 0;
        pointer-events: none;
        position: absolute;
        transform: translateX(-50%);
        transition: opacity 0.18s ease;
        visibility: hidden;
        z-index: 6;
    }

    .role-tooltip:hover::after,
    .role-tooltip:hover::before,
    .role-tooltip:focus::after,
    .role-tooltip:focus::before {
        opacity: 1;
        visibility: visible;
    }

    .role-tooltip:hover::after,
    .role-tooltip:focus::after {
        transform: translate(-50%, 0);
    }

    @media screen and (max-width: 480px) {
        .contact-chip--wide {
            padding-left: 20px;
            padding-right: 20px;
        }

        .role-tooltip::after {
            bottom: calc(100% + 8px);
            font-size: 12px;
            white-space: normal;
            width: min(250px, 78vw);
        }
    }
