:root {
            --wbs-gold: #d5aa2b;
            --wbs-gold-bright: #fff09a;
            --wbs-gold-dark: #6f4700;
            --wbs-red: #760000;
            --wbs-red-dark: #230000;
            --wbs-text: #ffffff;
        }

        * {
            box-sizing: border-box;
        }

        html,
        body {
            min-height: 100%;
        }

        body {
            margin: 0;
            padding: 28px 0 42px;
            color: var(--wbs-text);
            font-family: Arial, Helvetica, sans-serif;
            background:
                url('/pages/wbs3/background-red.png') repeat,
                #970000;
        }

        a {
            color: #ff3333;
            text-decoration: underline;
        }

        .who-shell {
            position: relative;
            width: min(980px, calc(100vw - 42px));
            margin: 0 auto;
            padding: 18px 18px 34px;
            border: 3px solid var(--wbs-gold);
            border-radius: 10px;
            background:
                radial-gradient(circle at center top, rgba(150, 0, 0, .22), transparent 45%),
                url('/pages/wbs3/background-black2.png') repeat,
                #050505;
            box-shadow:
                0 0 0 2px #fff3a4 inset,
                0 0 0 5px #2c1600 inset,
                0 18px 45px rgba(0, 0, 0, .72);
        }

        .who-shell::before,
        .who-shell::after,
        .shell-rivet-bottom-left,
        .shell-rivet-bottom-right {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            background: url('/pages/wbs3/beveled-tack.png') no-repeat center center;
            background-size: contain;
            pointer-events: none;
            z-index: 10;
        }

        .who-shell::before { top: 8px; left: 8px; }
        .who-shell::after { top: 8px; right: 8px; }
        .shell-rivet-bottom-left { bottom: 8px; left: 8px; }
        .shell-rivet-bottom-right { bottom: 8px; right: 8px; }

        .who-header {
            text-align: center;
            padding: 18px 16px 22px;
            border-bottom: 1px solid rgba(213, 170, 43, .55);
        }

        .who-logo {
            display: block;
            width: 360px;
            max-width: 88%;
            height: auto;
            margin: 0 auto 14px;
        }

        .status-pill {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            padding: 10px 30px;
            border: 1px solid var(--wbs-gold);
            border-radius: 999px;
            color: var(--wbs-gold-bright);
            background: rgba(0, 0, 0, .45);
            font-size: 14px;
            font-weight: 700;
            text-decoration: none;
            box-shadow:
                0 0 0 1px rgba(255, 238, 150, .18) inset,
                0 0 12px rgba(0, 0, 0, .55);
        }

        .status-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #22ff4a;
            box-shadow:
                0 0 5px #22ff4a,
                0 0 10px rgba(34, 255, 74, .8);
        }

        .page-title {
            margin: 24px 0 4px;
            color: var(--wbs-gold-bright);
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 34px;
            font-variant: small-caps;
            letter-spacing: 1px;
            text-align: center;
            text-shadow:
                1px 1px 0 #000,
                0 0 10px rgba(255, 216, 91, .35);
        }

        .ornament {
            position: relative;
            width: 210px;
            height: 18px;
            margin: 0 auto 18px;
        }

        .ornament::before,
        .ornament::after {
            content: '';
            position: absolute;
            top: 8px;
            width: 88px;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(213, 170, 43, .9));
        }

        .ornament::before { left: 0; }
        .ornament::after {
            right: 0;
            transform: scaleX(-1);
        }

        .ornament span {
            position: absolute;
            top: 4px;
            left: 50%;
            width: 10px;
            height: 10px;
            background: var(--wbs-gold-bright);
            transform: translateX(-50%) rotate(45deg);
            box-shadow: 0 0 7px rgba(255, 226, 122, .85);
        }

        .who-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            align-items: start;
        }

        .who-panel {
            position: relative;
            min-height: 235px;
            padding: 24px 24px 26px;
            border: 2px solid var(--wbs-gold);
            border-radius: 9px;
            background:
                linear-gradient(rgba(0,0,0,.30), rgba(0,0,0,.42)),
                rgba(0,0,0,.40);
            box-shadow: 0 0 0 1px rgba(255,238,150,.26) inset;
        }

        .panel-heading {
            margin: 0;
            color: var(--wbs-gold-bright);
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 28px;
            font-variant: small-caps;
            letter-spacing: .7px;
            text-align: center;
            text-shadow: 1px 1px 0 #000;
        }

        .panel-subtitle {
            margin: 4px 0 20px;
            color: #f9f1d0;
            font-size: 13px;
            text-align: center;
        }

        .online-list {
            display: grid;
            gap: 10px;
        }

        .online-row {
            display: grid;
            grid-template-columns: 18px 1fr;
            gap: 10px;
            align-items: start;
            padding: 10px 12px;
            border: 1px solid rgba(213, 170, 43, .45);
            border-radius: 8px;
            background:
                linear-gradient(rgba(90, 0, 0, .32), rgba(0, 0, 0, .30)),
                rgba(0, 0, 0, .32);
        }

        .online-light {
            width: 11px;
            height: 11px;
            margin-top: 4px;
            border-radius: 50%;
            background: #22ff4a;
            box-shadow:
                0 0 5px #22ff4a,
                0 0 9px rgba(34, 255, 74, .75);
        }

        .online-handle {
            color: var(--wbs-gold-bright);
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 18px;
            font-weight: 700;
            line-height: 1.12;
            text-shadow: 1px 1px 0 #000;
        }

        .online-room {
            margin-top: 3px;
            color: #fff;
            font-size: 14px;
            line-height: 1.25;
        }

        .empty-state {
            margin: 8px auto 0;
            max-width: 320px;
            padding: 18px 16px;
            border: 1px dashed rgba(213, 170, 43, .55);
            border-radius: 8px;
            color: #fff;
            background: rgba(0, 0, 0, .24);
            text-align: center;
            line-height: 1.35;
        }

        .who-actions {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin: 18px 8px 16px;
            padding-top: 18px;
            border-top: 1px solid rgba(213, 170, 43, .45);
        }

        .wbs-btn {
            min-height: 38px;
            padding: 0 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--wbs-gold);
            border-radius: 8px;
            color: var(--wbs-gold-bright);
            background:
                linear-gradient(to bottom, rgba(255,255,255,.16), rgba(255,255,255,0) 36%),
                linear-gradient(to bottom, #8d0000, #430000);
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 16px;
            font-weight: 700;
            font-variant: small-caps;
            letter-spacing: .4px;
            text-decoration: none;
            text-shadow: 1px 1px 0 #000;
            box-shadow:
                0 0 0 1px rgba(255,238,150,.25) inset,
                0 4px 10px rgba(0,0,0,.42);
        }

        .wbs-btn:hover {
            border-color: var(--wbs-gold-bright);
            box-shadow:
                0 0 0 1px rgba(255,238,150,.3) inset,
                0 0 12px rgba(255, 214, 95, .32);
        }

        @media (max-width: 780px) {
            body {
                padding: 18px 0 30px;
            }

            .who-shell {
                width: min(96vw, 980px);
                padding: 14px;
            }

            .who-logo {
                width: 310px;
            }

            .page-title {
                font-size: 30px;
            }

            .who-content {
                grid-template-columns: 1fr;
            }
        }