/*
 * 1000 Princes · /game-main-hub 静态个人档案卡
 * 从原 [prince_profile_card] 视觉样式迁移。
 * 账单弹窗本体不再嵌入此组件；账单按钮交给静态事件/我的房间账单区域处理。
 */
/* =====================================================
           1000 Princes · 个人档案
           与公寓公告 / 月租支付组件统一风格
           酒红 × 粉白 × 香槟金
        ===================================================== */

        .p1000-profile-card,
        .p1000-profile-card *,
        .p1000-profile-card *::before,
        .p1000-profile-card *::after {
            box-sizing: border-box;
        }

        .p1000-profile-card {
            --profile-wine: #6f2947;
            --profile-wine-deep: #542036;
            --profile-rose: #ae5d7e;
            --profile-rose-soft: #d98baa;
            --profile-pink-light: #fff4f8;
            --profile-cream: #fffaf5;
            --profile-gold: #c9a25f;
            --profile-gold-light: #ead6a5;
            --profile-text: #593746;
            --profile-muted: #987987;
            --profile-success: #2f8b63;
            --profile-danger: #c93f6c;
            --profile-warning: #a9792f;

            position: relative;
            isolation: isolate;
            width: 100%;
            max-width: 100%;
            min-width: 0;
            margin: 0;
            padding: 11px;
            overflow: hidden;

            color: var(--profile-text);
            border: 1px solid rgba(194, 149, 81, 0.72);
            border-radius: 23px;

            font-family:
                "Microsoft YaHei",
                "PingFang SC",
                "Noto Sans SC",
                Arial,
                sans-serif;

            background:
                radial-gradient(
                    circle at 12% 0%,
                    rgba(255, 255, 255, 0.98) 0%,
                    rgba(255, 255, 255, 0) 31%
                ),
                linear-gradient(
                    150deg,
                    #fffdf9 0%,
                    #fff4f8 49%,
                    #f9e3ec 100%
                );

            box-shadow:
                0 18px 42px rgba(91, 34, 61, 0.16),
                inset 0 0 0 4px rgba(255, 255, 255, 0.58);
        }

        .p1000-profile-card::before {
            content: "";
            position: absolute;
            z-index: -1;
            top: -76px;
            right: -58px;
            width: 145px;
            height: 145px;
            border-radius: 50%;
            pointer-events: none;
            background:
                radial-gradient(
                    circle,
                    rgba(217, 133, 168, 0.28),
                    rgba(217, 133, 168, 0)
                );
        }

        .p1000-profile-card::after {
            content: "";
            position: absolute;
            z-index: 8;
            inset: 4px;
            pointer-events: none;
            border: 1px solid rgba(234, 214, 165, 0.58);
            border-radius: 19px;
        }

        /* =========================
           标题区
        ========================= */

        .p1000-profile-card__header {
            position: relative;
            z-index: 2;
            display: flex;
            min-height: 66px;
            align-items: center;
            justify-content: center;
            margin: 0 0 10px;
            padding: 10px 42px;
            overflow: hidden;
            text-align: center;

            color: var(--profile-wine);
            border: 1px solid rgba(199, 159, 96, 0.42);
            border-radius: 16px 16px 11px 11px;

            background:
                radial-gradient(
                    circle at 50% -35%,
                    rgba(224, 147, 177, 0.22),
                    transparent 58%
                ),
                rgba(255, 255, 255, 0.58);

            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.94),
                0 6px 16px rgba(97, 39, 66, 0.06);

            backdrop-filter: blur(7px);
            -webkit-backdrop-filter: blur(7px);
        }

        .p1000-profile-card__header::before,
        .p1000-profile-card__header::after {
            content: "";
            position: absolute;
            top: 50%;
            width: 32px;
            height: 1px;
            pointer-events: none;
            background:
                linear-gradient(
                    90deg,
                    transparent,
                    rgba(197, 154, 88, 0.82)
                );
        }

        .p1000-profile-card__header::before {
            left: 49px;
            width: 25px;
        }

        .p1000-profile-card__header::after {
            right: 12px;
            transform: scaleX(-1);
        }

        .p1000-profile-card__header > div {
            position: relative;
            min-width: 0;
            padding-top: 16px;
        }

        .p1000-profile-card__header > div::before {
            content: "♔";
            position: absolute;
            top: -4px;
            left: 50%;
            color: var(--profile-gold);
            font-family: Georgia, serif;
            font-size: 17px;
            line-height: 1;
            text-shadow: 0 2px 5px rgba(115, 76, 31, 0.14);
            transform: translateX(-50%);
        }

        /* 左上角资料刷新按钮 */

        .p1000-profile-card__refresh {
            position: absolute;
            z-index: 5;
            top: 10px;
            left: 10px;
            display: inline-flex;
            width: 31px;
            height: 31px;
            align-items: center;
            justify-content: center;
            padding: 0;

            color: var(--profile-wine);
            border: 1px solid rgba(199, 159, 96, 0.72);
            border-radius: 50%;
            outline: none;
            cursor: pointer;

            background:
                radial-gradient(
                    circle at 30% 22%,
                    rgba(255, 255, 255, 0.98),
                    rgba(255, 242, 248, 0.94) 55%,
                    rgba(239, 211, 224, 0.94)
                );

            box-shadow:
                0 5px 12px rgba(101, 41, 67, 0.13),
                0 0 0 2px rgba(255, 255, 255, 0.62),
                inset 0 1px 0 rgba(255, 255, 255, 0.98);

            font-family: Arial, sans-serif;
            font-size: 18px;
            font-weight: 700;
            line-height: 1;
            transition:
                transform 0.2s ease,
                box-shadow 0.2s ease,
                background-color 0.2s ease;
        }

        .p1000-profile-card__refresh::before {
            content: "";
            position: absolute;
            inset: 3px;
            pointer-events: none;
            border: 1px solid rgba(201, 162, 95, 0.25);
            border-radius: 50%;
        }

        .p1000-profile-card__refresh-icon {
            position: relative;
            z-index: 1;
            display: block;
            transform-origin: 50% 50%;
        }

        .p1000-profile-card__refresh:hover,
        .p1000-profile-card__refresh:focus-visible {
            color: #ffffff;
            border-color: rgba(241, 214, 153, 0.95);
            background:
                linear-gradient(
                    145deg,
                    var(--profile-rose),
                    var(--profile-wine)
                );
            box-shadow:
                0 7px 15px rgba(101, 41, 67, 0.22),
                0 0 0 3px rgba(234, 214, 165, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.35);
            transform: translateY(-1px);
        }

        .p1000-profile-card__refresh:active {
            transform: translateY(0) scale(0.94);
        }

        .p1000-profile-card__refresh:disabled {
            cursor: wait;
            opacity: 0.82;
        }

        .p1000-profile-card__refresh.is-refreshing .p1000-profile-card__refresh-icon {
            animation: p1000ProfileRefreshSpin 0.8s linear infinite;
        }

        @keyframes p1000ProfileRefreshSpin {
            to {
                transform: rotate(360deg);
            }
        }

        .p1000-profile-card__title {
            margin: 0 !important;
            padding: 0 !important;
            color: var(--profile-wine) !important;
            font-family:
                "Noto Serif SC",
                "Songti SC",
                "Times New Roman",
                serif !important;
            font-size: 19px !important;
            font-weight: 700 !important;
            line-height: 1.25 !important;
            letter-spacing: 0.13em !important;
            text-shadow: none !important;
        }

        .p1000-profile-card__header-subtitle {
            display: block;
            margin-top: 4px;
            color: var(--profile-gold);
            font-family: Georgia, serif;
            font-size: 10px;
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: 0.18em;
            text-transform: uppercase;
        }

        /* =========================
           内容区
        ========================= */

        .p1000-profile-card__body {
            position: relative;
            z-index: 2;
            padding: 0 4px 4px;
        }

        /* 玩家身份 */

        .p1000-profile-card__identity {
            display: grid;
            grid-template-columns: 66px minmax(0, 1fr);
            align-items: center;
            gap: 13px;
            min-width: 0;
            margin: 0 0 12px;
            padding: 13px 12px;

            border: 1px solid rgba(190, 108, 143, 0.28);
            border-radius: 14px;

            background:
                linear-gradient(
                    135deg,
                    rgba(255, 255, 255, 0.94),
                    rgba(251, 233, 241, 0.84)
                );

            box-shadow:
                0 8px 18px rgba(101, 41, 69, 0.07),
                inset 0 1px 0 rgba(255, 255, 255, 0.94);
        }

        .p1000-profile-card__avatar-shell {
            position: relative;
            width: 66px;
            height: 66px;
            min-width: 66px;
            padding: 3px;
            border-radius: 50%;

            background:
                conic-gradient(
                    from 30deg,
                    #fff8d8,
                    #c89d55,
                    #f3dda7,
                    #b9853d,
                    #fff5cd
                );

            box-shadow:
                0 8px 18px rgba(101, 41, 68, 0.16),
                0 0 0 3px rgba(255, 255, 255, 0.84);
        }

        .p1000-profile-card__avatar-shell::after {
            content: "✦";
            position: absolute;
            z-index: 4;
            top: -4px;
            right: -3px;
            display: flex;
            width: 20px;
            height: 20px;
            align-items: center;
            justify-content: center;

            color: #fff5d0;
            border: 1px solid rgba(234, 214, 165, 0.9);
            border-radius: 50%;
            background:
                linear-gradient(
                    145deg,
                    #bd6e90,
                    #78344f
                );

            box-shadow:
                0 4px 9px rgba(97, 36, 63, 0.23),
                0 0 8px rgba(231, 202, 132, 0.3);

            font-size: 11px;
        }

        .p1000-profile-card__avatar-inner {
            width: 100%;
            height: 100%;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.96);
            border-radius: 50%;
            background:
                radial-gradient(
                    circle at 30% 24%,
                    #ffffff,
                    #fff0f6 57%,
                    #f4d8e5
                );
        }

        .p1000-profile-card__avatar {
            display: block;
            width: 100% !important;
            height: 100% !important;
            margin: 0 !important;
            padding: 0 !important;
            object-fit: cover;
            border: none !important;
            border-radius: 50% !important;
        }

        .p1000-profile-card__avatar-fallback {
            display: none;
            width: 100%;
            height: 100%;
            align-items: center;
            justify-content: center;
            color: var(--profile-wine);
            font-family: Georgia, serif;
            font-size: 30px;
            font-weight: 700;
        }

        .p1000-profile-card__identity-text {
            min-width: 0;
        }

        .p1000-profile-card__name {
            display: block;
            min-width: 0;
            color: var(--profile-wine);
            font-family:
                "Noto Serif SC",
                "Songti SC",
                "Times New Roman",
                serif;
            font-size: 19px;
            font-weight: 700;
            line-height: 1.35;
            overflow-wrap: anywhere;
        }

        .p1000-profile-card__resident {
            display: inline-flex;
            max-width: 100%;
            min-height: 23px;
            align-items: center;
            gap: 5px;
            margin-top: 6px;
            padding: 3px 9px;
            overflow: hidden;

            color: #8c6576;
            border: 1px solid rgba(199, 159, 96, 0.38);
            border-radius: 999px;
            background:
                linear-gradient(
                    135deg,
                    rgba(255, 255, 255, 0.96),
                    rgba(255, 245, 224, 0.84)
                );

            font-family: Georgia, serif;
            font-size: 10px;
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: 0.10em;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .p1000-profile-card__resident::before {
            content: "◆";
            color: var(--profile-gold);
            font-size: 8px;
        }

        /* =========================
           档案资料行
        ========================= */

        .p1000-profile-card__list {
            display: grid;
            gap: 8px;
            min-width: 0;
        }

        .p1000-profile-card__row {
            position: relative;
            display: grid;
            grid-template-columns: 32px 74px minmax(0, 1fr);
            align-items: center;
            gap: 8px;
            min-width: 0;
            min-height: 47px;
            padding: 7px 12px 7px 8px;
            overflow: hidden;

            border: 1px solid rgba(190, 108, 143, 0.22);
            border-left: 3px solid rgba(174, 93, 126, 0.62);
            border-radius: 8px 12px 12px 8px;

            background:
                linear-gradient(
                    135deg,
                    rgba(255, 255, 255, 0.90),
                    rgba(255, 244, 248, 0.78)
                );

            box-shadow:
                0 5px 12px rgba(101, 41, 67, 0.045),
                inset 0 1px 0 rgba(255, 255, 255, 0.92);
        }

        .p1000-profile-card__row::after {
            content: "";
            position: absolute;
            top: 7px;
            right: 0;
            bottom: 7px;
            width: 2px;
            pointer-events: none;
            background:
                linear-gradient(
                    180deg,
                    transparent,
                    rgba(201, 162, 95, 0.48),
                    transparent
                );
        }

        .p1000-profile-card__row[hidden] {
            display: none !important;
        }

        .p1000-profile-card__icon {
            display: inline-flex;
            width: 31px;
            height: 31px;
            align-items: center;
            justify-content: center;

            color: var(--profile-wine);
            border: 1px solid rgba(199, 159, 96, 0.46);
            border-radius: 9px;

            background:
                linear-gradient(
                    145deg,
                    #ffffff,
                    #fae8ef
                );

            box-shadow:
                inset 0 1px 0 rgba(255, 255, 255, 0.96),
                0 3px 8px rgba(101, 41, 67, 0.07);

            font-family: Georgia, serif;
            font-size: 13px;
            font-weight: 700;
            line-height: 1;
        }

        .p1000-profile-card__label {
            color: var(--profile-muted);
            font-size: 13px;
            font-weight: 650;
            line-height: 1.35;
            white-space: nowrap;
        }

        .p1000-profile-card__value {
            min-width: 0;
            color: var(--profile-text);
            font-size: 13px;
            font-weight: 760;
            line-height: 1.45;
            overflow-wrap: anywhere;
            word-break: break-word;
        }

        .p1000-profile-card__value.is-loading {
            color: #9e7c8d;
            font-weight: 600;
            animation: p1000ProfilePulse 1.35s ease-in-out infinite;
        }

        .p1000-profile-card__value.is-paid {
            color: var(--profile-success);
        }

        .p1000-profile-card__value.is-unpaid,
        .p1000-profile-card__value.is-error {
            color: var(--profile-danger);
        }

        .p1000-profile-card__value.is-waiting {
            color: var(--profile-warning);
        }

        @keyframes p1000ProfilePulse {
            0%,
            100% {
                opacity: 0.48;
            }

            50% {
                opacity: 1;
            }
        }

        /* 同步提示 */

        .p1000-profile-card__sync {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            margin: 11px 0 0;
            padding: 2px 4px;

            color: #a27e8f;
            font-size: 11px;
            line-height: 1.45;
            text-align: center;
        }

        .p1000-profile-card__sync::before {
            content: "✦";
            color: var(--profile-gold);
            font-size: 8px;
        }

        /* =========================
           查看公寓账单按钮
        ========================= */

        .p1000-profile-card__billing-action {
            position: relative;
            z-index: 3;
            margin: 1px 0 2px;
        }

        .p1000-profile-card__billing-button {
            position: relative;
            display: grid;
            width: 100%;
            min-height: 43px;
            grid-template-columns: 31px minmax(0, 1fr) 22px;
            align-items: center;
            gap: 8px;
            margin: 0;
            padding: 6px 10px 6px 8px;
            overflow: hidden;

            appearance: none;
            -webkit-appearance: none;
            color: var(--profile-wine) !important;
            border: 1px solid rgba(190, 108, 143, 0.34);
            border-left: 3px solid rgba(174, 93, 126, 0.72);
            border-radius: 8px 12px 12px 8px;
            outline: none;
            cursor: pointer;

            background:
                radial-gradient(
                    circle at 7% 0%,
                    rgba(255, 255, 255, 0.98),
                    rgba(255, 255, 255, 0) 34%
                ),
                linear-gradient(
                    135deg,
                    rgba(255, 255, 255, 0.96),
                    rgba(251, 230, 240, 0.92)
                );

            box-shadow:
                0 7px 16px rgba(101, 41, 67, 0.075),
                inset 0 1px 0 rgba(255, 255, 255, 0.96);

            font-family: inherit;
            text-align: left;
            transition:
                transform 0.2s ease,
                border-color 0.2s ease,
                box-shadow 0.2s ease,
                background 0.2s ease;
        }

        .p1000-profile-card__billing-button::before {
            content: "";
            position: absolute;
            top: -65%;
            bottom: -65%;
            left: -38%;
            width: 24%;
            pointer-events: none;
            opacity: 0.55;
            transform: skewX(-22deg);
            background:
                linear-gradient(
                    90deg,
                    transparent,
                    rgba(255, 255, 255, 0.82),
                    transparent
                );
            transition: left 0.58s ease;
        }

        .p1000-profile-card__billing-icon,
        .p1000-profile-card__billing-text,
        .p1000-profile-card__billing-arrow {
            position: relative;
            z-index: 1;
        }

        .p1000-profile-card__billing-icon {
            display: inline-flex;
            width: 30px;
            height: 30px;
            align-items: center;
            justify-content: center;

            color: #fffaf1;
            border: 1px solid rgba(234, 214, 165, 0.80);
            border-radius: 9px;
            background:
                linear-gradient(
                    145deg,
                    var(--profile-rose),
                    var(--profile-wine)
                );
            box-shadow:
                0 4px 9px rgba(91, 34, 61, 0.17),
                inset 0 1px 0 rgba(255, 255, 255, 0.32);

            font-family: Georgia, "Times New Roman", serif;
            font-size: 14px;
            line-height: 1;
        }

        .p1000-profile-card__billing-text {
            min-width: 0;
            color: var(--profile-wine);
            font-family:
                "Noto Serif SC",
                "Songti SC",
                "Times New Roman",
                serif;
            font-size: 13px;
            font-weight: 760;
            line-height: 1.35;
            letter-spacing: 0.06em;
            text-align: center;
        }

        .p1000-profile-card__billing-arrow {
            display: inline-flex;
            width: 21px;
            height: 21px;
            align-items: center;
            justify-content: center;
            justify-self: end;

            color: var(--profile-wine);
            border: 1px solid rgba(199, 159, 96, 0.46);
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.68);

            font-family: Georgia, serif;
            font-size: 18px;
            line-height: 1;
            transition: transform 0.2s ease, background-color 0.2s ease;
        }

        .p1000-profile-card__billing-button:hover,
        .p1000-profile-card__billing-button:focus-visible {
            border-color: rgba(174, 93, 126, 0.66);
            background:
                linear-gradient(
                    135deg,
                    #ffffff,
                    #ffe9f2
                );
            box-shadow:
                0 10px 21px rgba(101, 41, 67, 0.13),
                0 0 0 3px rgba(234, 214, 165, 0.20),
                inset 0 1px 0 rgba(255, 255, 255, 0.98);
            transform: translateY(-1px);
        }

        .p1000-profile-card__billing-button:hover::before,
        .p1000-profile-card__billing-button:focus-visible::before {
            left: 122%;
        }

        .p1000-profile-card__billing-button:hover .p1000-profile-card__billing-arrow,
        .p1000-profile-card__billing-button:focus-visible .p1000-profile-card__billing-arrow {
            background: #fff7e3;
            transform: translateX(2px);
        }

        .p1000-profile-card__billing-button:active {
            transform: translateY(0) scale(0.993);
        }

        
/* =========================
           去我的房间 · 乙女游戏入口按钮
        ========================= */

        .p1000-profile-card__room-action {
            position: relative;
            z-index: 3;
            margin: 12px 0 1px;
            padding-top: 11px;
        }

        .p1000-profile-card__room-action::before {
            content: "";
            position: absolute;
            top: 0;
            left: 7%;
            right: 7%;
            height: 1px;
            pointer-events: none;
            background:
                linear-gradient(
                    90deg,
                    transparent,
                    rgba(201, 162, 95, 0.78) 22%,
                    rgba(255, 244, 205, 0.98) 50%,
                    rgba(201, 162, 95, 0.78) 78%,
                    transparent
                );
            box-shadow: 0 0 8px rgba(201, 162, 95, 0.24);
        }

        .p1000-profile-card__room-button {
            position: relative;
            display: grid;
            width: 100%;
            min-height: 50px;
            grid-template-columns: 34px minmax(0, 1fr) 24px;
            align-items: center;
            gap: 7px;
            padding: 5px 11px 5px 8px;
            overflow: hidden;

            color: #fffaf1 !important;
            border: 1px solid rgba(244, 218, 157, 0.95);
            border-radius: 15px;
            outline: 1px solid rgba(114, 40, 70, 0.30);
            outline-offset: 2px;

            text-decoration: none !important;
            cursor: pointer;

            background:
                radial-gradient(
                    circle at 15% 0%,
                    rgba(255, 239, 204, 0.25),
                    transparent 35%
                ),
                linear-gradient(
                    135deg,
                    #542036 0%,
                    #7e3151 35%,
                    #ad587b 68%,
                    #6f2947 100%
                );

            box-shadow:
                0 10px 22px rgba(84, 32, 54, 0.25),
                0 3px 7px rgba(84, 32, 54, 0.18),
                inset 0 1px 0 rgba(255, 255, 255, 0.34),
                inset 0 -1px 0 rgba(72, 22, 44, 0.40);

            transition:
                transform 0.22s ease,
                box-shadow 0.22s ease,
                filter 0.22s ease;
        }

        .p1000-profile-card__room-button::before {
            content: "";
            position: absolute;
            inset: 4px;
            z-index: 0;
            pointer-events: none;
            border: 1px solid rgba(255, 239, 201, 0.31);
            border-radius: 11px;
        }

        .p1000-profile-card__room-button::after {
            content: "";
            position: absolute;
            z-index: 0;
            top: -35%;
            bottom: -35%;
            left: -44%;
            width: 36%;
            pointer-events: none;
            opacity: 0.58;
            transform: skewX(-24deg);
            background:
                linear-gradient(
                    90deg,
                    transparent,
                    rgba(255, 250, 230, 0.60),
                    transparent
                );
            animation: p1000RoomButtonShimmer 4.8s ease-in-out infinite;
        }

        .p1000-profile-card__room-crown,
        .p1000-profile-card__room-label,
        .p1000-profile-card__room-arrow {
            position: relative;
            z-index: 1;
        }

        .p1000-profile-card__room-crown {
            display: inline-flex;
            width: 32px;
            height: 32px;
            align-items: center;
            justify-content: center;

            color: #6b2946;
            border: 1px solid rgba(255, 242, 201, 0.92);
            border-radius: 10px;
            background:
                linear-gradient(
                    145deg,
                    #fff9dc 0%,
                    #e7c878 48%,
                    #bd8c3e 100%
                );
            box-shadow:
                0 5px 11px rgba(61, 20, 39, 0.24),
                inset 0 1px 0 rgba(255, 255, 255, 0.80);

            font-family: Georgia, "Times New Roman", serif;
            font-size: 18px;
            line-height: 1;
            text-shadow: 0 1px 0 rgba(255, 255, 255, 0.48);
        }

        .p1000-profile-card__room-label {
            display: flex;
            min-width: 0;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .p1000-profile-card__room-label strong {
            display: block;
            margin: 0;
            color: #fffdf7 !important;
            font-family:
                "Noto Serif SC",
                "Songti SC",
                "Times New Roman",
                serif;
            font-size: 15px;
            font-weight: 800;
            line-height: 1.28;
            letter-spacing: 0.13em;
            text-shadow: 0 2px 6px rgba(60, 18, 38, 0.50);
        }

        .p1000-profile-card__room-arrow {
            display: inline-flex;
            width: 23px;
            height: 23px;
            align-items: center;
            justify-content: center;
            justify-self: end;

            color: #fff4cf;
            border: 1px solid rgba(255, 239, 198, 0.48);
            border-radius: 50%;
            background: rgba(83, 27, 52, 0.28);
            box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);

            font-family: Georgia, serif;
            font-size: 19px;
            line-height: 1;
            transition: transform 0.22s ease, background-color 0.22s ease;
        }

        .p1000-profile-card__room-button:hover,
        .p1000-profile-card__room-button:focus-visible {
            color: #ffffff !important;
            text-decoration: none !important;
            transform: translateY(-2px);
            filter: saturate(1.06) brightness(1.03);
            box-shadow:
                0 14px 28px rgba(84, 32, 54, 0.31),
                0 4px 9px rgba(84, 32, 54, 0.20),
                0 0 0 3px rgba(234, 214, 165, 0.20),
                inset 0 1px 0 rgba(255, 255, 255, 0.40),
                inset 0 -1px 0 rgba(72, 22, 44, 0.44);
        }

        .p1000-profile-card__room-button:hover .p1000-profile-card__room-arrow,
        .p1000-profile-card__room-button:focus-visible .p1000-profile-card__room-arrow {
            transform: translateX(3px);
            background: rgba(255, 244, 211, 0.15);
        }

        .p1000-profile-card__room-button:active {
            transform: translateY(0) scale(0.992);
        }

        @keyframes p1000RoomButtonShimmer {
            0%,
            58% {
                left: -44%;
            }

            78%,
            100% {
                left: 128%;
            }
        }

        /* =========================
           窄栏响应式
        ========================= */

        @media (max-width: 300px) {
            .p1000-profile-card {
                padding: 9px;
                border-radius: 20px;
            }

            .p1000-profile-card__header {
                padding-right: 36px;
                padding-left: 36px;
            }

            .p1000-profile-card__body {
                padding-right: 2px;
                padding-left: 2px;
            }

            .p1000-profile-card__identity {
                grid-template-columns: 57px minmax(0, 1fr);
                gap: 10px;
                padding-right: 9px;
                padding-left: 9px;
            }

            .p1000-profile-card__avatar-shell {
                width: 57px;
                height: 57px;
                min-width: 57px;
            }

            .p1000-profile-card__row {
                grid-template-columns: 30px 64px minmax(0, 1fr);
                gap: 5px;
                padding-right: 7px;
                padding-left: 6px;
            }

            .p1000-profile-card__label,
            .p1000-profile-card__value {
                font-size: 12px;
            }

            .p1000-profile-card__room-button {
                min-height: 46px;
                grid-template-columns: 30px minmax(0, 1fr) 22px;
                gap: 6px;
                padding-right: 9px;
                padding-left: 8px;
            }

            .p1000-profile-card__room-crown {
                width: 29px;
                height: 29px;
                font-size: 16px;
            }

            .p1000-profile-card__room-label strong {
                font-size: 14px;
                letter-spacing: 0.08em;
            }

            .p1000-profile-card__room-label small {
                letter-spacing: 0.15em;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .p1000-profile-card *,
            .p1000-profile-card *::before,
            .p1000-profile-card *::after {
                animation: none !important;
                transition: none !important;
            }
        }
