/* /Components/AbilityHotbar.razor.rz.scp.css */
.ability-hotbar[b-jd5paf3bun] {
    display: flex;
    gap: 4px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
}

.hotbar-slot[b-jd5paf3bun] {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
    min-height: 48px;
    padding: 4px;
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid #444;
    border-radius: 4px;
    cursor: default;
}

.hotbar-slot.has-ability[b-jd5paf3bun] {
    border-color: #888;
}

.gem-swatch[b-jd5paf3bun] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-bottom: 2px;
    border: 1px solid rgba(255,255,255,0.3);
}

.gem-red[b-jd5paf3bun] { background: radial-gradient(circle, #ff6633, #cc2200); box-shadow: 0 0 3px #ff4400; }
.gem-blue[b-jd5paf3bun] { background: radial-gradient(circle, #33ccff, #0066cc); box-shadow: 0 0 3px #00aaff; }
.gem-green[b-jd5paf3bun] { background: radial-gradient(circle, #44dd44, #008800); box-shadow: 0 0 3px #22cc22; }
.gem-black[b-jd5paf3bun] { background: radial-gradient(circle, #9933cc, #330066); box-shadow: 0 0 3px #8800cc; }
.gem-arcane[b-jd5paf3bun] { background: radial-gradient(circle, #ffffff, #aaaaee); box-shadow: 0 0 3px #ccccff; }

.ability-name[b-jd5paf3bun] {
    font-size: 9px;
    color: #ddd;
    text-align: center;
    line-height: 1.2;
    max-width: 56px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.slot-number[b-jd5paf3bun] {
    position: absolute;
    bottom: 2px;
    right: 4px;
    font-size: 9px;
    color: #666;
}

.hotbar-slot.has-ability .slot-number[b-jd5paf3bun] {
    color: #999;
}

.hotbar-slot.disabled[b-jd5paf3bun] {
    opacity: 0.4;
    cursor: not-allowed;
}

.hotbar-slot.has-ability:not(.disabled)[b-jd5paf3bun] {
    cursor: pointer;
}

.hotbar-slot.has-ability:not(.disabled):hover[b-jd5paf3bun] {
    border-color: #aaa;
    background: rgba(60, 60, 60, 0.8);
}

.hotbar-tooltip[b-jd5paf3bun] {
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    pointer-events: none;
    white-space: nowrap;
    background: rgba(10, 10, 10, 0.92);
    border: 1px solid #555;
    border-radius: 3px;
    padding: 5px 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 10px;
}

.tip-name[b-jd5paf3bun]    { color: #ddd; }
.tip-damage[b-jd5paf3bun]  { color: #ffcc44; }
.tip-hot[b-jd5paf3bun]     { color: #88cc88; }
.tip-scaling[b-jd5paf3bun] { color: #aaa; }
/* /Components/CharacterSheet.razor.rz.scp.css */
.character-sheet-overlay[b-wc0a6dsuws] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.character-sheet-overlay.open[b-wc0a6dsuws] {
    display: flex;
}

.character-sheet[b-wc0a6dsuws] {
    background: #1a1a2e;
    border: 2px solid #4a4a6a;
    padding: 20px;
    min-width: 300px;
    color: #e0e0e0;
    font-family: monospace;
}

.character-sheet h2[b-wc0a6dsuws] {
    margin: 0 0 5px 0;
    color: #fff;
    padding-bottom: 0;
}

.race-label[b-wc0a6dsuws] {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #4a4a6a;
}

.level-section[b-wc0a6dsuws] {
    margin-bottom: 20px;
}

.level[b-wc0a6dsuws] {
    font-size: 18px;
    color: #ffd700;
}

.xp-bar[b-wc0a6dsuws] {
    height: 8px;
    background: #333;
    margin: 8px 0;
    border-radius: 4px;
    overflow: hidden;
}

.xp-fill[b-wc0a6dsuws] {
    height: 100%;
    background: linear-gradient(90deg, #4a90d9, #63b3ed);
    transition: width 0.3s ease;
}

.xp-text[b-wc0a6dsuws] {
    font-size: 12px;
    color: #888;
}

.attributes[b-wc0a6dsuws] {
    margin: 20px 0;
}

.attribute[b-wc0a6dsuws] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 10px 0;
    gap: 0 10px;
}

.attr-name[b-wc0a6dsuws] {
    width: 100px;
}

.attr-value[b-wc0a6dsuws] {
    width: 30px;
    text-align: center;
    font-weight: bold;
    color: #63b3ed;
}

.add-btn[b-wc0a6dsuws] {
    background: #2d5a27;
    border: 1px solid #4a9a3a;
    color: #fff;
    width: 24px;
    height: 24px;
    cursor: pointer;
    font-weight: bold;
}

.add-btn:hover[b-wc0a6dsuws] {
    background: #3d7a37;
}

.unspent[b-wc0a6dsuws] {
    color: #ffd700;
    text-align: center;
    margin: 15px 0;
}

.attr-desc[b-wc0a6dsuws] {
    flex-basis: 100%;
    font-size: 0.75em;
    color: #aaaaaa;
    margin-top: 1px;
}

.health-section[b-wc0a6dsuws] {
    margin-bottom: 20px;
}

.hp-bar[b-wc0a6dsuws] {
    height: 8px;
    background: #333;
    margin: 8px 0;
    border-radius: 4px;
    overflow: hidden;
}

.hp-fill[b-wc0a6dsuws] {
    height: 100%;
    transition: width 0.3s ease;
}

.hp-text[b-wc0a6dsuws] {
    font-size: 12px;
    color: #888;
}
/* /Components/ChatPanel.razor.rz.scp.css */
.chat-panel[b-bqiupdchh3] {
    width: 100%;
    background: #1a1a2e;
    border: 1px solid #333;
    border-radius: 4px;
    font-family: monospace;
    font-size: 13px;
    margin-top: 8px;
}

.chat-messages[b-bqiupdchh3] {
    height: 150px;
    overflow-y: auto;
    padding: 6px 8px;
}

.chat-message[b-bqiupdchh3] {
    margin-bottom: 2px;
    word-wrap: break-word;
}

.chat-channel[b-bqiupdchh3] {
    margin-right: 4px;
}

.channel-badge-local[b-bqiupdchh3] {
    color: #aaa;
}

.channel-badge-global[b-bqiupdchh3] {
    color: #FFD700;
}

.channel-badge-party[b-bqiupdchh3] {
    color: #FF7FFF;
}

.chat-sender[b-bqiupdchh3] {
    color: #4fc3f7;
    margin-right: 4px;
    font-weight: bold;
}

.chat-text[b-bqiupdchh3] {
    color: #ddd;
}

.chat-notification .chat-text[b-bqiupdchh3] {
    color: #888;
    font-style: italic;
}

.chat-input-row[b-bqiupdchh3] {
    border-top: 1px solid #333;
    padding: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.channel-badge[b-bqiupdchh3] {
    font-family: monospace;
    font-size: 13px;
    white-space: nowrap;
    cursor: default;
    flex-shrink: 0;
}

.chat-input[b-bqiupdchh3] {
    flex: 1;
    background: #0d0d1a;
    border: 1px solid #444;
    border-radius: 3px;
    color: #ddd;
    font-family: monospace;
    font-size: 13px;
    padding: 6px 8px;
    box-sizing: border-box;
    min-width: 0;
}

.chat-input[b-bqiupdchh3]::placeholder {
    color: #555;
}

.chat-input:focus[b-bqiupdchh3] {
    outline: none;
    border-color: #FFD700;
}

.accept-btn[b-bqiupdchh3] {
    margin-left: 6px;
    padding: 1px 6px;
    background: #2a2a4e;
    border: 1px solid #FF7FFF;
    color: #FF7FFF;
    font-family: monospace;
    font-size: 12px;
    cursor: pointer;
    border-radius: 3px;
}

.accept-btn:hover:not(:disabled)[b-bqiupdchh3] {
    background: #3a2a5e;
}

.accept-btn:disabled[b-bqiupdchh3] {
    opacity: 0.4;
    cursor: default;
}

/* Toggle button hidden on desktop */
.chat-toggle[b-bqiupdchh3] {
    display: none;
}

@media (hover: hover) {
    .chat-panel[b-bqiupdchh3] {
        width: 400px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .chat-panel[b-bqiupdchh3] {
        width: 100%;
        border-top: 1px solid #333;
        position: relative;
    }

    /* Collapsed: show only the bottom 2 lines of the message list */
    .chat-messages[b-bqiupdchh3] {
        height: 2.8em;
        overflow: hidden;
    }

    /* Expanded: show full chat */
    .chat-panel.expanded .chat-messages[b-bqiupdchh3] {
        height: 40vh;
        overflow-y: auto;
    }

    .chat-toggle[b-bqiupdchh3] {
        display: block;
        width: 100%;
        background: #111;
        border: none;
        color: #888;
        padding: 2px;
        font-size: 10px;
        cursor: pointer;
    }
}
/* /Components/DeathScreen.razor.rz.scp.css */
.death-screen-overlay[b-smd63j8soa] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.death-screen-overlay.open[b-smd63j8soa] {
    display: flex;
}

.death-screen[b-smd63j8soa] {
    background: #1a0000;
    border: 2px solid #6a0000;
    padding: 30px 40px;
    min-width: 250px;
    color: #e0e0e0;
    font-family: monospace;
    text-align: center;
}

.death-screen h2[b-smd63j8soa] {
    margin: 0 0 24px 0;
    color: #cc3333;
    border-bottom: 1px solid #6a0000;
    padding-bottom: 12px;
    font-size: 20px;
}

.resurrect-btn[b-smd63j8soa] {
    padding: 10px 30px;
    font-family: monospace;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #4a4a6a;
    color: #e0e0e0;
    background: #2a2a4a;
}

.resurrect-btn:hover[b-smd63j8soa] {
    background: #3a3a5a;
}
/* /Components/Inventory.razor.rz.scp.css */
.inventory-overlay[b-jcpum28ygp] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.inventory-overlay.open[b-jcpum28ygp] {
    display: flex;
}

.inventory-panel[b-jcpum28ygp] {
    background: #1a1a2e;
    border: 2px solid #4a4a6a;
    padding: 20px;
    min-width: 340px;
    max-width: 400px;
    color: #e0e0e0;
    font-family: monospace;
}

.inventory-panel h2[b-jcpum28ygp] {
    margin: 0 0 15px 0;
    color: #fff;
    border-bottom: 1px solid #4a4a6a;
    padding-bottom: 10px;
}

.inventory-panel h3[b-jcpum28ygp] {
    margin: 0 0 8px 0;
    color: #aaa;
    font-size: 13px;
    text-transform: uppercase;
}

.equipment-section[b-jcpum28ygp] {
    margin-bottom: 15px;
}

.equipment-slots[b-jcpum28ygp] {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.equip-slot[b-jcpum28ygp], .bag-slot[b-jcpum28ygp] {
    position: relative;
    background: #222240;
    border: 1px solid #3a3a5a;
    padding: 8px;
    min-height: 40px;
}

.bag-section[b-jcpum28ygp] {
    border-top: 1px solid #4a4a6a;
    padding-top: 10px;
}

.bag-grid[b-jcpum28ygp] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.slot-label[b-jcpum28ygp] {
    display: block;
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.item-name[b-jcpum28ygp] {
    display: block;
    font-size: 13px;
    font-weight: bold;
}

.item-stats[b-jcpum28ygp] {
    display: block;
    font-size: 11px;
    color: #888;
    margin-top: 2px;
}

.empty[b-jcpum28ygp] {
    color: #444;
    font-style: italic;
    font-size: 12px;
}

.slot-actions[b-jcpum28ygp] {
    display: flex;
    gap: 4px;
    margin-top: 4px;
}

.action-btn[b-jcpum28ygp] {
    background: #2d5a27;
    border: 1px solid #4a9a3a;
    color: #fff;
    padding: 2px 8px;
    cursor: pointer;
    font-size: 11px;
    font-family: monospace;
}

.action-btn:hover[b-jcpum28ygp] {
    background: #3d7a37;
}

.action-btn.discard[b-jcpum28ygp] {
    background: #5a2727;
    border-color: #9a3a3a;
}

.action-btn.discard:hover[b-jcpum28ygp] {
    background: #7a3737;
}

.rarity-common .item-name[b-jcpum28ygp] {
    color: #ffffff;
}

.rarity-uncommon[b-jcpum28ygp] {
    border-color: #00aa00;
}

.rarity-uncommon .item-name[b-jcpum28ygp] {
    color: #00ff00;
}

.rarity-rare[b-jcpum28ygp] {
    border-color: #4488ff;
}

.rarity-rare .item-name[b-jcpum28ygp] {
    color: #4488ff;
}

.quantity-badge[b-jcpum28ygp] {
    color: #ffcc00;
    font-size: 11px;
    margin-left: 4px;
}

/* Socket display */
.socket-section[b-jcpum28ygp] {
    margin: 4px 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bag-sockets[b-jcpum28ygp] {
    margin-bottom: 4px;
}

.socket-row[b-jcpum28ygp] {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 2px 4px;
    background: rgba(255, 255, 255, 0.04);
    border-left: 2px solid #333;
    font-size: 11px;
    flex-wrap: wrap;
}

.socket-empty[b-jcpum28ygp] { border-left-color: #555; }
.socket-has-gem[b-jcpum28ygp] { border-left-color: #8866ff; }
.socket-ability[b-jcpum28ygp] { border-left-color: #ffcc44; }

.action-btn.socket-btn[b-jcpum28ygp] {
    background: #2a3a6a;
    border-color: #4466aa;
}

.action-btn.socket-btn:hover[b-jcpum28ygp] {
    background: #3a4a8a;
}

.action-btn.hotbar-btn[b-jcpum28ygp] {
    background: #3a2a6a;
    border-color: #8844aa;
    min-width: 22px;
    text-align: center;
    padding: 2px 4px;
}

.action-btn.hotbar-btn:hover[b-jcpum28ygp] {
    background: #5a3a9a;
}

.action-btn.active-btn[b-jcpum28ygp] {
    background: #5a3a0a;
    border-color: #cc8800;
}

.action-btn.active-btn:hover[b-jcpum28ygp] {
    background: #7a5a1a;
}

/* Inline gem swatches in inventory rows */
.inline-swatch[b-jcpum28ygp] {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid rgba(255,255,255,0.3);
    flex-shrink: 0;
}

.gem-swatch.gem-red[b-jcpum28ygp], .inline-swatch.gem-red[b-jcpum28ygp] { background: radial-gradient(circle, #ff6633, #cc2200); }
.gem-swatch.gem-blue[b-jcpum28ygp], .inline-swatch.gem-blue[b-jcpum28ygp] { background: radial-gradient(circle, #33ccff, #0066cc); }
.gem-swatch.gem-green[b-jcpum28ygp], .inline-swatch.gem-green[b-jcpum28ygp] { background: radial-gradient(circle, #44dd44, #008800); }
.gem-swatch.gem-black[b-jcpum28ygp], .inline-swatch.gem-black[b-jcpum28ygp] { background: radial-gradient(circle, #9933cc, #330066); }
.gem-swatch.gem-arcane[b-jcpum28ygp], .inline-swatch.gem-arcane[b-jcpum28ygp] { background: radial-gradient(circle, #ffffff, #aaaaee); }

.rune-tooltip[b-jcpum28ygp] {
    position: absolute;
    bottom: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    pointer-events: none;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid #555;
    border-radius: 3px;
    padding: 6px 8px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 10px;
    min-width: 240px;
    white-space: nowrap;
}

.rune-tip-header[b-jcpum28ygp] {
    color: #aaa;
    font-style: italic;
    margin-bottom: 2px;
}

.rune-tip-divider[b-jcpum28ygp] {
    border-top: 1px solid #333;
    margin: 2px 0;
}

.rune-tip-row[b-jcpum28ygp] {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rune-tip-gem[b-jcpum28ygp]     { color: #ccc; width: 46px; flex-shrink: 0; }
.rune-tip-ability[b-jcpum28ygp] { color: #ffcc44; flex: 1; }
.rune-tip-scaling[b-jcpum28ygp] { color: #88aaff; width: 115px; flex-shrink: 0; }
.rune-tip-affinity[b-jcpum28ygp] { color: #aaa; }

.synergy-hint[b-jcpum28ygp] {
    font-size: 10px;
    color: #7788bb;
    font-style: italic;
}

/* ::deep rules — allow socket styles to penetrate into SocketDisplay child component */
[b-jcpum28ygp] .socket-label { color: #aaa; flex: 1 0 auto; }
[b-jcpum28ygp] .ability-label { color: #ffcc44; }
[b-jcpum28ygp] .socket-actions { display: flex; gap: 3px; flex-wrap: wrap; }
[b-jcpum28ygp] .action-btn { background: #2d5a27; border: 1px solid #4a9a3a; color: #fff; padding: 2px 8px; cursor: pointer; font-size: 11px; font-family: monospace; }
[b-jcpum28ygp] .action-btn:hover { background: #3d7a37; }
[b-jcpum28ygp] .action-btn.discard { background: #5a2727; border-color: #9a3a3a; }
[b-jcpum28ygp] .action-btn.discard:hover { background: #7a3737; }
[b-jcpum28ygp] .action-btn.socket-btn { background: #2a3a6a; border-color: #4466aa; }
[b-jcpum28ygp] .action-btn.socket-btn:hover { background: #3a4a8a; }
[b-jcpum28ygp] .action-btn.hotbar-btn { background: #3a2a6a; border-color: #8844aa; min-width: 22px; text-align: center; padding: 2px 4px; }
[b-jcpum28ygp] .action-btn.hotbar-btn:hover { background: #5a3a9a; }
[b-jcpum28ygp] .inline-swatch { display: inline-block; width: 10px; height: 10px; border-radius: 50%; vertical-align: middle; border: 1px solid rgba(255,255,255,0.3); flex-shrink: 0; }
[b-jcpum28ygp] .inline-swatch.gem-red { background: radial-gradient(circle, #ff6633, #cc2200); }
[b-jcpum28ygp] .inline-swatch.gem-blue { background: radial-gradient(circle, #33ccff, #0066cc); }
[b-jcpum28ygp] .inline-swatch.gem-green { background: radial-gradient(circle, #44dd44, #008800); }
[b-jcpum28ygp] .inline-swatch.gem-black { background: radial-gradient(circle, #9933cc, #330066); }
[b-jcpum28ygp] .inline-swatch.gem-arcane { background: radial-gradient(circle, #ffffff, #aaaaee); }
[b-jcpum28ygp] .socket-hint { font-size: 11px; color: #666; font-style: italic; }
[b-jcpum28ygp] .socket-empty-circle { display: inline-block; width: 10px; height: 10px; border-radius: 50%; border: 1px solid #666; background: transparent; flex-shrink: 0; vertical-align: middle; }
/* /Components/ManaBar.razor.rz.scp.css */
.mana-bar[b-y25fkd3cgu] {
    display: flex;
    gap: 4px;
    padding: 4px 8px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 4px;
    pointer-events: none;
}

.mana-slot[b-y25fkd3cgu] {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mana-empty[b-y25fkd3cgu] {
    background: #333;
    border-color: #555;
}

.mana-red[b-y25fkd3cgu] {
    background: radial-gradient(circle, #ff6633, #cc2200);
    border-color: #ff4400;
    box-shadow: 0 0 4px #ff4400;
}

.mana-blue[b-y25fkd3cgu] {
    background: radial-gradient(circle, #33ccff, #0066cc);
    border-color: #00aaff;
    box-shadow: 0 0 4px #00aaff;
}

.mana-green[b-y25fkd3cgu] {
    background: radial-gradient(circle, #44dd44, #008800);
    border-color: #22cc22;
    box-shadow: 0 0 4px #22cc22;
}

.mana-black[b-y25fkd3cgu] {
    background: radial-gradient(circle, #9933cc, #330066);
    border-color: #8800cc;
    box-shadow: 0 0 4px #8800cc;
}

.mana-arcane[b-y25fkd3cgu] {
    background: radial-gradient(circle, #ffffff, #aaaaee);
    border-color: #ccccff;
    box-shadow: 0 0 4px #ccccff;
}

@keyframes mana-recharge-fill-b-y25fkd3cgu {
    from { height: 0%; opacity: 0.5; }
    to   { height: 100%; opacity: 0.8; }
}

.mana-slot.depleted[b-y25fkd3cgu] {
    position: relative;
    overflow: hidden;
    background: #333 !important;
    border-color: #555 !important;
    box-shadow: none !important;
    opacity: 0.5;
}

/* NOTE: animation duration must match AbilityDefinitions.ManaRechargeSeconds (5.0s in Mud.Core).
   If that constant changes, update this value and the clamp in ManaBar.razor. */
.mana-slot.recharging[b-y25fkd3cgu]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    animation: mana-recharge-fill-b-y25fkd3cgu 5s linear forwards;
    animation-delay: var(--recharge-delay, 0s);
}
/* /Components/ManaSlotPanel.razor.rz.scp.css */
.mana-panel-overlay[b-bjm3mno5x5] {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 200;
    justify-content: center;
    align-items: center;
}

.mana-panel-overlay.open[b-bjm3mno5x5] {
    display: flex;
}

.mana-panel[b-bjm3mno5x5] {
    background: #1a1a2e;
    border: 1px solid #4a4a8a;
    border-radius: 8px;
    padding: 20px;
    min-width: 320px;
    max-width: 400px;
    color: #e0e0e0;
}

.mana-panel h2[b-bjm3mno5x5] {
    margin: 0 0 8px;
    font-size: 1.2rem;
    color: #aaaaff;
}

.panel-hint[b-bjm3mno5x5] {
    font-size: 0.8rem;
    color: #888;
    margin: 0 0 16px;
}

.slot-list[b-bjm3mno5x5] {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.slot-row[b-bjm3mno5x5] {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slot-label[b-bjm3mno5x5] {
    width: 50px;
    font-size: 0.85rem;
    color: #ccc;
}

.color-options[b-bjm3mno5x5] {
    display: flex;
    gap: 6px;
}

.color-btn[b-bjm3mno5x5] {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.1s;
}

.color-btn:hover[b-bjm3mno5x5] { transform: scale(1.15); }

.color-btn.selected[b-bjm3mno5x5] {
    border-color: #ffffff;
    box-shadow: 0 0 6px rgba(255,255,255,0.6);
}

.color-empty[b-bjm3mno5x5] { background: #333; border-color: #555; color: #888; }
.color-red[b-bjm3mno5x5] { background: radial-gradient(circle, #ff6633, #cc2200); }
.color-blue[b-bjm3mno5x5] { background: radial-gradient(circle, #33ccff, #0066cc); }
.color-green[b-bjm3mno5x5] { background: radial-gradient(circle, #44dd44, #008800); }
.color-black[b-bjm3mno5x5] { background: radial-gradient(circle, #9933cc, #330066); }
.color-arcane[b-bjm3mno5x5] { background: radial-gradient(circle, #ffffff, #aaaaee); }

.panel-actions[b-bjm3mno5x5] {
    display: flex;
    justify-content: flex-end;
}

.done-btn[b-bjm3mno5x5] {
    padding: 8px 20px;
    background: #4a4a8a;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
}

.done-btn:hover[b-bjm3mno5x5] { background: #6666aa; }
/* /Components/TownMenu.razor.rz.scp.css */
.town-menu-overlay[b-u58rhmg0hh] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.town-menu-overlay.open[b-u58rhmg0hh] {
    display: flex;
}

.town-menu[b-u58rhmg0hh] {
    background: #1a1a2e;
    border: 2px solid #4a4a6a;
    padding: 20px;
    min-width: 250px;
    color: #e0e0e0;
    font-family: monospace;
    text-align: center;
}

.town-menu h2[b-u58rhmg0hh] {
    margin: 0 0 20px 0;
    color: #ffd700;
    border-bottom: 1px solid #4a4a6a;
    padding-bottom: 10px;
}

.menu-options[b-u58rhmg0hh] {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.menu-btn[b-u58rhmg0hh] {
    padding: 10px 20px;
    font-family: monospace;
    font-size: 14px;
    cursor: pointer;
    border: 1px solid #4a4a6a;
    color: #e0e0e0;
    background: #2a2a4a;
}

.menu-btn:hover[b-u58rhmg0hh] {
    background: #3a3a5a;
}

.heal-btn[b-u58rhmg0hh] {
    border-color: #4a9a3a;
    color: #4a9a3a;
}

.heal-btn:hover[b-u58rhmg0hh] {
    background: #2d5a27;
    color: #fff;
}

.heal-btn.healed[b-u58rhmg0hh] {
    background: #2d5a27;
    color: #fff;
    border-color: #6cdb5c;
}
/* /Pages/Game.razor.rz.scp.css */
.debug-bar[b-so6mucejh5] {
    margin: 0;
    padding: 2px 6px;
    font-family: monospace;
    font-size: 12px;
    color: #0f0;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
}

#game-container[b-so6mucejh5] {
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@supports (height: 100dvh) {
    #game-container[b-so6mucejh5] {
        height: 100dvh;
    }
}

.game-layout[b-so6mucejh5] {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.game-canvas-wrapper[b-so6mucejh5] {
    position: relative;
    flex: 1;
    min-height: 0;
}

#phaser-container[b-so6mucejh5] {
    width: 100%;
    height: 100%;
}

.status-overlay[b-so6mucejh5] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-family: monospace;
    font-size: 16px;
    z-index: 50;
}

.interaction-prompt[b-so6mucejh5] {
    appearance: none;
    -webkit-appearance: none;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #FFD700;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: monospace;
    font-size: 14px;
    border: 1px solid rgba(255, 215, 0, 0.5);
    cursor: pointer;
    z-index: 100;
    white-space: nowrap;
}

.interaction-prompt.non-interactable[b-so6mucejh5] {
    pointer-events: none;
    border-color: transparent;
    cursor: default;
}

.interaction-prompt:hover[b-so6mucejh5] {
    background-color: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 215, 0, 0.9);
}

.interaction-prompt:active[b-so6mucejh5] {
    filter: brightness(1.2);
}

.game-notification[b-so6mucejh5] {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: #FF8C00;
    padding: 10px 20px;
    border-radius: 5px;
    font-family: monospace;
    font-size: 14px;
    border: 1px solid rgba(255, 140, 0, 0.5);
    pointer-events: none;
    z-index: 100;
    white-space: nowrap;
}

.hud-mana[b-so6mucejh5] {
    position: absolute;
    top: 8px;
    left: 8px;
    pointer-events: none;
    z-index: 10;
}

.hud-hotbar[b-so6mucejh5] {
    flex: 2 0 0;
}

.game-bottom-bar[b-so6mucejh5] {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 8px;
    padding: 4px;
    background: #1a1a2e;
    border-top: 1px solid #333;
}

.game-bottom-bar[b-so6mucejh5]  .chat-panel {
    flex: 1;
    min-width: 0;
    width: auto;
    margin-top: 0;
}

@media (hover: none) and (pointer: coarse) {
    .game-bottom-bar[b-so6mucejh5] {
        flex-direction: column;
        align-items: stretch;
    }
}

.mobile-toolbar[b-so6mucejh5] {
    display: none;
}

@media (hover: none) and (pointer: coarse) {
    .mobile-toolbar[b-so6mucejh5] {
        display: flex;
        height: 44px;
        background: #1a1a2e;
        border-top: 1px solid #333;
    }

    .toolbar-btn[b-so6mucejh5] {
        flex: 1;
        background: transparent;
        border: none;
        color: #e0e0e0;
        font-size: 14px;
        cursor: pointer;
    }
}
