/* BSX Roleta — estilo case opening */
.roleta-body { background: #060810; }

/* Live drops bar (topo estilo case opening) */
.roleta-live-bar {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: linear-gradient(180deg, #0a0f1a, #080c14);
    border-bottom: 1px solid #1a2435;
    min-height: 72px;
    overflow: hidden;
}
.roleta-live-label {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: 0 1rem;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #6ebcff;
    background: rgba(77, 166, 255, .08);
    border-right: 1px solid #1a2435;
    white-space: nowrap;
}
.roleta-live-track-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}
.roleta-live-track {
    display: flex;
    gap: .5rem;
    padding: .55rem .75rem;
    animation: roleta-live-scroll 80s linear infinite;
    width: max-content;
}
.roleta-live-track:hover { animation-play-state: paused; }
@keyframes roleta-live-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.roleta-drop-card {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .4rem .7rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    min-width: 200px;
    max-width: 260px;
}
.roleta-drop-card .drop-icon {
    font-size: 1.5rem;
    width: 2.2rem;
    text-align: center;
    filter: drop-shadow(0 0 6px rgba(77, 166, 255, .25));
}
.roleta-drop-card .drop-body { min-width: 0; }
.roleta-drop-card .drop-item {
    font-size: .78rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.roleta-drop-card .drop-meta {
    font-size: .68rem;
    color: #7c8ba4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.roleta-drop-card .drop-time {
    font-size: .65rem;
    color: #5a6a82;
    margin-left: auto;
    white-space: nowrap;
}

.roleta-page { padding-bottom: 3rem; padding-top: 1.25rem; }

.roleta-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.roleta-points-badge {
    display: flex;
    align-items: center;
    gap: .65rem;
    background: linear-gradient(135deg, rgba(77, 166, 255, .15), rgba(124, 179, 66, .1));
    border: 1px solid rgba(77, 166, 255, .35);
    border-radius: 12px;
    padding: .55rem 1.1rem;
    font-family: Rajdhani, sans-serif;
}
.roleta-points-badge small {
    display: block;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--muted);
}
.roleta-points-badge strong {
    font-size: 1.5rem;
    color: #6ebcff;
}

/* BSX redeem banner — lendário piscando */
.roleta-bsx-banner {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: 1.25rem;
    padding: .9rem 1.15rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, .45);
    background: linear-gradient(135deg, rgba(255, 215, 0, .08), rgba(255, 152, 0, .06));
    box-shadow: 0 0 20px rgba(255, 215, 0, .12);
    animation: roleta-bsx-pulse 2s ease-in-out infinite;
}
.roleta-bsx-banner p {
    margin: 0;
    font-size: .92rem;
    line-height: 1.45;
    color: #e8ecf4;
}
.roleta-bsx-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.roleta-bsx-cmd {
    display: inline-block;
    padding: .12rem .5rem;
    margin: 0 .25rem;
    border-radius: 6px;
    font-family: Consolas, 'Courier New', monospace;
    font-size: 1.05rem;
    font-weight: 800;
    color: #1a1400;
    background: linear-gradient(180deg, #ffe566, #ffd700, #e6b800);
    box-shadow: 0 0 14px rgba(255, 215, 0, .55);
    animation: roleta-bsx-cmd-glow 1.2s ease-in-out infinite alternate;
}
@keyframes roleta-bsx-pulse {
    0%, 100% {
        border-color: rgba(255, 215, 0, .35);
        box-shadow: 0 0 16px rgba(255, 215, 0, .1);
    }
    50% {
        border-color: rgba(255, 215, 0, .85);
        box-shadow: 0 0 28px rgba(255, 215, 0, .35);
    }
}
@keyframes roleta-bsx-cmd-glow {
    from {
        box-shadow: 0 0 10px rgba(255, 215, 0, .4);
        transform: scale(1);
    }
    to {
        box-shadow: 0 0 22px rgba(255, 215, 0, .8);
        transform: scale(1.04);
    }
}

/* Case picker grid — estilo CS */
.roleta-case-picker {
    margin-bottom: 1.5rem;
}
.roleta-case-picker-title {
    margin: 0 0 1rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: #e8ecf4;
    text-align: center;
    letter-spacing: .02em;
}
.roleta-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: .85rem;
}
.roleta-case-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    border: 2px solid #1a2435;
    border-radius: 14px;
    background: linear-gradient(180deg, #121a28 0%, #0a0f18 100%);
    cursor: pointer;
    font-family: Rajdhani, sans-serif;
    text-align: center;
    transition: transform .18s, border-color .18s, box-shadow .18s;
    overflow: hidden;
    --case-accent: #4da6ff;
}
.roleta-case-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in srgb, var(--case-accent) 55%, #4da6ff);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .45);
}
.roleta-case-card.is-active {
    border-color: #4da6ff;
    box-shadow: 0 0 0 1px rgba(77, 166, 255, .35), 0 10px 28px rgba(77, 166, 255, .2);
    transform: translateY(-2px);
}
.roleta-case-card.is-active .case-card-price {
    background: linear-gradient(135deg, #4da6ff, #2b7fd4);
    color: #fff;
    border-color: transparent;
}
.case-card-name {
    padding: .65rem .5rem .35rem;
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.2;
    color: #e8ecf4;
    min-height: 2.4em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.case-card-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .5rem .75rem 1rem;
    min-height: 110px;
    background:
        radial-gradient(ellipse at center bottom, color-mix(in srgb, var(--case-accent) 25%, transparent), transparent 70%);
}
.case-card-crate {
    position: relative;
    width: 88px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, .5));
}
.case-card-crate::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background:
        linear-gradient(145deg, color-mix(in srgb, var(--case-accent) 70%, #fff) 0%, var(--case-accent) 40%, color-mix(in srgb, var(--case-accent) 60%, #000) 100%);
    border: 2px solid color-mix(in srgb, var(--case-accent) 80%, #fff);
    box-shadow:
        inset 0 2px 8px rgba(255, 255, 255, .25),
        inset 0 -4px 10px rgba(0, 0, 0, .35),
        0 4px 0 color-mix(in srgb, var(--case-accent) 50%, #000);
    transform: perspective(200px) rotateX(8deg);
}
.case-card-crate .crate-icon {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .5);
}
.case-card-price {
    display: block;
    margin: 0;
    padding: .55rem .5rem;
    font-size: .88rem;
    font-weight: 700;
    color: #9eb4cc;
    background: rgba(0, 0, 0, .35);
    border-top: 1px solid #1a2435;
    transition: background .18s, color .18s;
}
.case-card-free {
    display: block;
    margin: 0;
    padding: .35rem .5rem .5rem;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #b9f6ca;
    background: rgba(0, 200, 83, .12);
    border-top: 1px solid rgba(0, 200, 83, .2);
}

/* Stage / reel */
.roleta-stage {
    background: #0c111a;
    border: 1px solid #1a2435;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    scroll-margin-top: 1rem;
}
.roleta-stage-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #1a2435;
    background: rgba(0, 0, 0, .3);
}
.roleta-stage-title-wrap {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.roleta-stage-icon { font-size: 2rem; }
.roleta-stage-cost {
    color: #6ebcff;
    font-family: Rajdhani, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
}
.roleta-open-main { min-width: 160px; }

.roleta-open-controls {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}
.roleta-qty {
    display: inline-flex;
    gap: .3rem;
    padding: .2rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, .35);
    border: 1px solid #1e2a3d;
}
.roleta-qty-btn {
    min-width: 2.1rem;
    height: 2.1rem;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #8fa3bf;
    font-family: Rajdhani, sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background .15s, color .15s, box-shadow .15s;
}
.roleta-qty-btn:hover {
    color: #e8f1ff;
    background: rgba(77, 166, 255, .12);
}
.roleta-qty-btn.is-active {
    color: #0a1018;
    background: linear-gradient(180deg, #7ad0ff, #4da6ff);
    box-shadow: 0 0 12px rgba(77, 166, 255, .45);
}
.roleta-qty-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.roleta-reels {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    padding: .35rem 0 .55rem;
}
.roleta-reels[data-count="1"] .roleta-reel-lane-label {
    display: none;
}
.roleta-reel-lane {
    position: relative;
}
.roleta-reel-lane-label {
    position: absolute;
    left: .75rem;
    top: .55rem;
    z-index: 4;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: rgba(145, 178, 214, .85);
    background: rgba(6, 8, 16, .72);
    border: 1px solid #243247;
    border-radius: 999px;
    padding: .15rem .55rem;
    pointer-events: none;
}

.roleta-reel-wrap {
    position: relative;
    padding: 1.75rem 0;
    overflow: hidden;
    background:
        linear-gradient(90deg, #060810 0%, transparent 6%, transparent 94%, #060810 100%),
        radial-gradient(ellipse at center, rgba(77, 166, 255, .1), transparent 65%);
    transition: box-shadow .3s;
}
.roleta-reels[data-count]:not([data-count="1"]) .roleta-reel-wrap {
    padding: 1.35rem 0;
    border-top: 1px solid rgba(26, 36, 53, .9);
}
.roleta-reels[data-count]:not([data-count="1"]) .roleta-reel-wrap:first-child {
    border-top: 0;
}
.roleta-reels[data-count]:not([data-count="1"]) .roleta-reel-item {
    flex-basis: 112px;
    height: 128px;
}
.roleta-reels[data-count]:not([data-count="1"]) .roleta-reel-item .roleta-item-img,
.roleta-reels[data-count]:not([data-count="1"]) .roleta-reel-item .icon.emoji {
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
}
.roleta-reels[data-count]:not([data-count="1"]) .roleta-reel-item .name {
    font-size: .72rem;
}

.roleta-win-multi {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    width: 100%;
}
.roleta-win-chip {
    display: flex;
    align-items: center;
    gap: .5rem;
    min-width: 0;
    flex: 1 1 180px;
    padding: .45rem .55rem;
    border-radius: 10px;
    background: rgba(0, 0, 0, .28);
    border: 1px solid #243247;
}
.roleta-win-chip .win-icon,
.roleta-win-chip .win-icon.emoji,
.roleta-win-chip img.win-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    font-size: 1.35rem;
    flex-shrink: 0;
}
.roleta-win-chip strong {
    display: block;
    font-size: .72rem;
    line-height: 1.1;
}
.roleta-win-chip span {
    display: block;
    font-size: .84rem;
    color: #d7e4f5;
    line-height: 1.2;
    word-break: break-word;
}
.roleta-win-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    align-items: center;
}
.roleta-reel-wrap.is-active-spin {
    box-shadow: inset 0 0 40px rgba(77, 166, 255, .15);
    background:
        linear-gradient(90deg, #060810 0%, transparent 8%, transparent 92%, #060810 100%),
        radial-gradient(ellipse at center, rgba(77, 166, 255, .22), transparent 70%);
}
.roleta-reel-pointer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent, #66c0f4, #4da6ff, #66c0f4, transparent);
    z-index: 3;
    box-shadow: 0 0 16px rgba(102, 192, 244, .7);
    border-radius: 2px;
}
.roleta-reel-pointer::before,
.roleta-reel-pointer::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-left: 11px solid transparent;
    border-right: 11px solid transparent;
}
.roleta-reel-pointer::before {
    top: 6px;
    border-bottom: 14px solid #66c0f4;
}
.roleta-reel-pointer::after {
    bottom: 6px;
    border-top: 14px solid #66c0f4;
}

.roleta-reel {
    display: flex;
    gap: .65rem;
    padding: 0 50%;
    will-change: transform;
    transition: transform 0s;
}
.roleta-reel.is-spinning {
    transition: transform 5.5s cubic-bezier(.08, .82, .17, 1);
    filter: blur(0.3px);
}
.roleta-open-main:disabled {
    opacity: .55;
    cursor: not-allowed;
}

.roleta-reel-item {
    flex: 0 0 140px;
    height: 158px;
    border-radius: 10px;
    border: 2px solid #1a2435;
    background: linear-gradient(180deg, #141c2b 0%, #0a0f18 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .3rem;
    text-align: center;
    padding: .5rem;
    position: relative;
}
.roleta-reel-item.is-winner {
    border-color: #66c0f4;
    box-shadow: 0 0 24px rgba(102, 192, 244, .45);
    background: linear-gradient(180deg, #1a2840 0%, #0f1828 100%);
}
.roleta-item-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .45));
}
.roleta-drop-card .roleta-item-img {
    width: 2.2rem;
    height: 2.2rem;
}
.roleta-reel-item .roleta-item-img {
    width: 2.1rem;
    height: 2.1rem;
}
.roleta-loot-card .roleta-item-img {
    width: 2rem;
    height: 2rem;
}
.roleta-win-info .roleta-item-img,
.roleta-inv-card .roleta-item-img {
    width: 2rem;
    height: 2rem;
}
.roleta-reel-item .icon.emoji,
.roleta-loot-card .emoji,
.roleta-drop-card .emoji {
    font-size: inherit;
}

.roleta-reel-item .name {
    font-size: .72rem;
    font-weight: 600;
    line-height: 1.2;
    color: #e8ecf4;
    max-height: 2.4em;
    overflow: hidden;
}
.roleta-reel-item .rarity {
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 700;
}

/* Win bar */
.roleta-win-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 1.25rem;
    border-top: 1px solid #1a2435;
    background: linear-gradient(90deg, rgba(76, 175, 80, .08), rgba(77, 166, 255, .08));
}
.roleta-win-info {
    display: flex;
    align-items: center;
    gap: .75rem;
}
.roleta-win-info .win-icon.emoji { font-size: 2rem; }
.roleta-win-actions {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
}
.btn-trade-win {
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: #fff;
    border: none;
}
.btn-trade-win:hover { filter: brightness(1.08); color: #fff; }

/* Loot grid — conteúdo da caixa */
.roleta-loot-section {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    background: #0c111a;
    border: 1px solid #1a2435;
}
.roleta-loot-title {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #e8ecf4;
}
.roleta-loot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: .65rem;
}
.roleta-loot-card {
    position: relative;
    border-radius: 10px;
    border: 1px solid #1a2435;
    background: linear-gradient(180deg, #121a28, #0a0f18);
    padding: .85rem .65rem .7rem;
    text-align: center;
    transition: border-color .15s;
}
.roleta-loot-card:hover { border-color: #2a4060; }
.roleta-loot-card .chance-badge {
    position: absolute;
    top: .4rem;
    right: .4rem;
    font-size: .62rem;
    font-weight: 700;
    color: #7c8ba4;
    background: rgba(0, 0, 0, .45);
    padding: .15rem .35rem;
    border-radius: 4px;
}
.roleta-loot-card .loot-icon { font-size: 2rem; margin-bottom: .35rem; display: flex; align-items: center; justify-content: center; min-height: 2.5rem; }
.roleta-loot-card .loot-name {
    font-size: .75rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: .25rem;
    color: #e8ecf4;
}
.roleta-loot-card .loot-rarity {
    font-size: .62rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .04em;
}
.roleta-loot-card[style*="ffd700"],
.roleta-reel-item[style*="ffd700"] {
    box-shadow: 0 0 18px rgba(255, 215, 0, .28);
}
.roleta-loot-card .loot-rarity[style*="ffd700"],
.roleta-reel-item .rarity[style*="ffd700"] {
    text-shadow: 0 0 8px rgba(255, 215, 0, .45);
}
.roleta-loot-card .loot-winner {
    margin-top: .45rem;
    font-size: .62rem;
    color: #5a6a82;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.roleta-loot-card.is-dino-clickable {
    cursor: pointer;
}
.roleta-loot-card.is-dino-clickable:hover {
    border-color: #4da6ff66;
    box-shadow: 0 0 12px rgba(77, 166, 255, .15);
}
.roleta-loot-card.is-dino-clickable:focus-visible {
    outline: 2px solid #4da6ff;
    outline-offset: 2px;
}
.roleta-loot-card .loot-dino-hint {
    margin-top: .35rem;
    font-size: .58rem;
    color: #5a7a9a;
    opacity: 0;
    transition: opacity .15s;
}
.roleta-loot-card.is-dino-clickable:hover .loot-dino-hint,
.roleta-loot-card.is-dino-clickable:focus-visible .loot-dino-hint {
    opacity: 1;
}

/* Modal status dino */
body.roleta-modal-open { overflow: hidden; }
.roleta-dino-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.roleta-dino-modal[hidden] { display: none !important; }
.roleta-dino-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 8, 16, .82);
    backdrop-filter: blur(4px);
}
.roleta-dino-modal-dialog {
    position: relative;
    width: min(480px, 100%);
    max-height: 90vh;
    overflow: auto;
    border-radius: 14px;
    border: 1px solid #2a4060;
    background: linear-gradient(180deg, #141c2c, #0a101a);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .55);
    padding: 1.25rem 1.25rem 1rem;
}
.roleta-dino-modal-close {
    position: absolute;
    top: .55rem;
    right: .65rem;
    border: none;
    background: transparent;
    color: #8aa0bc;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    padding: .15rem .35rem;
}
.roleta-dino-modal-close:hover { color: #fff; }
.dino-modal-head {
    display: flex;
    align-items: center;
    gap: .85rem;
    margin-bottom: 1rem;
    padding-right: 1.5rem;
}
.dino-modal-icon,
.dino-modal-head .roleta-item-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    flex-shrink: 0;
}
.dino-modal-head .emoji { font-size: 2.5rem; }
.dino-modal-titles h3 {
    margin: 0 0 .25rem;
    font-size: 1.05rem;
    color: #eef2f8;
}
.dino-species {
    margin: 0;
    font-size: .78rem;
    color: #7c8ba4;
}
.dino-capado-badge {
    display: inline-block;
    margin-left: .4rem;
    padding: .1rem .4rem;
    border-radius: 4px;
    background: rgba(255, 215, 0, .15);
    color: #ffd700;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
}
.dino-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    margin-bottom: 1rem;
    padding: .65rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .05);
}
.dino-meta-grid .lbl {
    display: block;
    font-size: .62rem;
    color: #6e7f96;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: .15rem;
}
.dino-meta-grid strong { font-size: .9rem; color: #dce4f0; }
.dino-stats-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .78rem;
}
.dino-stats-table th,
.dino-stats-table td {
    padding: .45rem .5rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.dino-stats-table th {
    font-size: .65rem;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #6e7f96;
    font-weight: 700;
}
.dino-stats-table tr.is-highlight td {
    color: #ffd700;
    font-weight: 700;
}
.dino-stats-table .stat-val { font-weight: 600; color: #e8ecf4; }
.dino-stats-table .stat-sub { color: #5a6a82; font-size: .7rem; text-align: right; }
.dino-colors {
    margin-top: .85rem;
    font-size: .75rem;
    color: #8aa0bc;
}
.dino-colors .lbl { margin-right: .35rem; }
.dino-color-chip {
    display: inline-block;
    margin: .15rem .2rem 0 0;
    padding: .12rem .4rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, .06);
    font-size: .68rem;
}

/* Inventory */
.roleta-inventory { margin-top: .5rem; }

.roleta-inv-status {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.25rem;
}
.roleta-inv-status .roleta-dino-cap {
    margin-top: 0;
}
.roleta-dino-cap-table th:nth-child(2):last-child,
.roleta-dino-cap-table td:nth-child(2):last-child {
    width: 22%;
}
.dino-cap-rarity {
    font-weight: 500;
    font-size: .75rem;
    margin-left: .35rem;
}
.roleta-inv-case {
    color: #7c8ba4;
    font-size: .75rem;
}

/* Status Capados — resumo dos dinos no inventário */
.roleta-dino-cap {
    margin-top: 1.25rem;
    padding: 0;
    overflow: hidden;
    background: #0c111a;
    border: 1px solid #1a2435;
    border-radius: 14px;
}
.roleta-dino-cap-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid #1a2435;
    background: rgba(0, 0, 0, .28);
}
.roleta-dino-cap-head h3 {
    margin: 0;
    font-size: 1.05rem;
    color: #e8ecf4;
}
.roleta-dino-cap-head p {
    margin: .25rem 0 0;
    font-size: .82rem;
    color: #7c8ba4;
}
.roleta-dino-cap-count {
    flex-shrink: 0;
    min-width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(77, 166, 255, .15);
    border: 1px solid rgba(77, 166, 255, .35);
    color: #6ebcff;
    font-family: Rajdhani, sans-serif;
    font-weight: 700;
    font-size: .95rem;
}
.roleta-dino-cap-scroll {
    max-height: 420px;
    overflow: auto;
}
.roleta-dino-cap-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}
.roleta-dino-cap-table th,
.roleta-dino-cap-table td {
    padding: .7rem 1rem;
    text-align: left;
    border-bottom: 1px solid #151d2b;
    vertical-align: middle;
}
.roleta-dino-cap-table th {
    position: sticky;
    top: 0;
    z-index: 1;
    background: #0e1520;
    color: #8fa3bf;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
}
.roleta-dino-cap-table th:not(:first-child),
.roleta-dino-cap-table td:not(:first-child) {
    text-align: center;
    width: 18%;
}
.roleta-dino-cap-table tbody tr:hover {
    background: rgba(77, 166, 255, .05);
}
.roleta-dino-cap-table tbody tr:last-child td {
    border-bottom: 0;
}
.dino-cap-name {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: #6ebcff;
    font-weight: 600;
}
.dino-cap-thumb {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.dino-cap-thumb .dino-cap-img.roleta-item-img,
.dino-cap-thumb img.dino-cap-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.dino-cap-thumb .dino-cap-img.emoji {
    font-size: 1.25rem;
}
.dino-cap-ok {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-family: Rajdhani, sans-serif;
    font-weight: 700;
}
.dino-cap-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 5px;
    background: rgba(61, 214, 140, .18);
    border: 1px solid rgba(61, 214, 140, .45);
    color: #3dd68c;
    font-size: .85rem;
    line-height: 1;
}
.dino-cap-mult {
    color: #9eb4cc;
    font-size: .9rem;
}
.dino-cap-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 5px;
    background: rgba(255, 90, 90, .12);
    border: 1px solid rgba(255, 90, 90, .35);
    color: #ff6b6b;
    font-size: .85rem;
    line-height: 1;
}

@media (max-width: 640px) {
    .roleta-dino-cap-table th,
    .roleta-dino-cap-table td {
        padding: .55rem .55rem;
        font-size: .8rem;
    }
    .dino-cap-name span:last-child {
        font-size: .82rem;
    }
    .roleta-dino-cap-table th:not(:first-child),
    .roleta-dino-cap-table td:not(:first-child) {
        width: auto;
    }
}

.roleta-inv-bulk {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1rem;
    padding: .75rem .9rem;
    border-radius: 12px;
    border: 1px solid #1a2435;
    background: rgba(0, 0, 0, .28);
}
.roleta-inv-bulk-label {
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #7c8ba4;
    white-space: nowrap;
}
.roleta-inv-bulk-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    flex: 1;
}
.roleta-bulk-rarity {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .1rem;
    padding: .4rem .65rem;
    border-radius: 8px;
    border: 1px solid color-mix(in srgb, var(--rarity-color) 45%, #1a2435);
    background: color-mix(in srgb, var(--rarity-color) 12%, #0c111a);
    color: #e8ecf4;
    line-height: 1.2;
    transition: .15s;
}
.roleta-bulk-rarity:hover {
    border-color: var(--rarity-color);
    background: color-mix(in srgb, var(--rarity-color) 22%, #0c111a);
    transform: translateY(-1px);
}
.roleta-bulk-rarity .bulk-name {
    font-size: .82rem;
    font-weight: 700;
    color: var(--rarity-color);
}
.roleta-bulk-rarity .bulk-meta {
    font-size: .72rem;
    color: #9eb4cc;
}
.roleta-inv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: .85rem;
}
.roleta-inv-card {
    border: 1px solid #1a2435;
    border-radius: 12px;
    padding: 1rem;
    background: rgba(0, 0, 0, .25);
}
.roleta-inv-card .top {
    display: flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: .75rem;
}
.roleta-inv-icon {
    flex: 0 0 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.roleta-inv-card .icon.emoji {
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.roleta-inv-card .roleta-inv-icon .roleta-item-img {
    width: 2.5rem;
    height: 2.5rem;
}
.roleta-inv-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.roleta-inv-actions .btn { flex: 1; min-width: 100px; }
.roleta-empty, .roleta-login-hint {
    color: var(--muted);
    text-align: center;
    padding: 2rem;
}

@media (max-width: 640px) {
    .roleta-case-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: .65rem;
    }
    .case-card-crate { width: 72px; height: 60px; font-size: 1.8rem; }
    .case-card-visual { min-height: 90px; }
    .roleta-bsx-banner { flex-direction: column; text-align: center; }
    .roleta-reel-item { flex-basis: 118px; height: 140px; }
    .roleta-live-label { display: none; }
    .roleta-drop-card { min-width: 170px; }
}
