* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
    background: #0a0d1d;
    color: #e8e8e8;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

a { color: inherit; text-decoration: none; transition: all 0.3s; }

/* ===================== HEADER ===================== */
.topo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: #080a19;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    z-index: 10;
}

.logo { 
    font-size: 1.5rem; 
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
    transition: all 0.3s;
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.8));
}

.logo-text {
    background: linear-gradient(135deg, #00d4ff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.topo nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.topo nav a {
    position: relative;
    padding: 6px 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #b7bcdb;
}

.topo nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #00ffff);
    transition: width 0.3s;
}

.topo nav a:hover {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.topo nav a:hover::after {
    width: 100%;
}

.topo nav a.ativo {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
    background: rgba(0, 212, 255, 0.1);
    padding: 6px 14px;
    border-radius: 8px;
}

.topo nav a.ativo::after {
    display: none;
}

.saldo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(130, 255, 27, 0.08);
    padding: 7px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    color: #82ff1b;
    border: 1px solid rgba(130, 255, 27, 0.4);
    box-shadow: 0 0 12px rgba(130, 255, 27, 0.25);
}

.saldo-icone {
    font-size: 0.95rem;
}

/* ===================== CONTENT ===================== */
.conteudo {
    flex: 1;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* O upgrader é um layout de 3 colunas em tela cheia — sem o teto de 1200px do resto do site */
.conteudo.upgrade-page {
    max-width: none;
    padding: 0;
}

.rodape {
    text-align: center;
    padding: 20px;
    font-size: 0.85rem;
    color: #6b7280;
    border-top: 1px solid #2a2e40;
    background: rgba(18, 20, 28, 0.8);
    position: relative;
    z-index: 1;
}

/* ===================== FORMULÁRIOS ===================== */
.form-box {
    max-width: 420px;
    margin: 60px auto;
    background: rgba(26, 29, 41, 0.8);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 16px;
    border: 1px solid #2a2e40;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.form-box h2 {
    margin-bottom: 8px;
    font-size: 1.8rem;
    background: linear-gradient(135deg, #fff 0%, #d1d5db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.form-subtitulo {
    color: #9099ab;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.form-link-secundario {
    text-align: center;
    margin-top: 18px;
    font-size: 0.9rem;
}

.form-link-secundario a {
    color: #00d4ff;
}

.form-link-secundario a:hover {
    text-decoration: underline;
}

/* ===================== HISTÓRICO DE UPGRADES ===================== */
.historico-resultado {
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
}

.historico-ganhou {
    color: #22c55e;
    background: rgba(34, 197, 94, 0.12);
}

.historico-perdeu {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.12);
}

.campo {
    margin-bottom: 16px;
}

.campo label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #a8b0c3;
    letter-spacing: 0.3px;
}

.campo-dupla {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-box input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #3a3f5a;
    background: rgba(16, 18, 26, 0.6);
    color: #e8e8e8;
    font-size: 1rem;
    transition: all 0.3s;
}

/* Formulários sem <div class="campo"> (ex: login) continuam com espaçamento próprio */
.form-box > form > input {
    margin-bottom: 16px;
}

.form-box input:focus {
    outline: none;
    border-color: #82ff1b;
    box-shadow: 0 0 0 3px rgba(130, 255, 27, 0.1);
}

.form-box button {
    width: 100%;
    margin-top: 8px;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #82ff1b 0%, #5ecc00 100%);
    color: #000;
    font-weight: bold;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.bonus-tag {
    background: rgba(0, 0, 0, 0.15);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

@media (max-width: 480px) {
    .campo-dupla {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.form-box button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(130, 255, 27, 0.6);
}

.form-box button:active {
    transform: translateY(0);
}

.erro {
    background: rgba(64, 31, 36, 0.8);
    color: #ff8a8a;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    border-left: 4px solid #dc2626;
}

.sucesso {
    background: rgba(31, 64, 40, 0.8);
    color: #8affa0;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    border-left: 4px solid #4ade80;
}

/* ===================== HERO (visitante deslogado) ===================== */
.hero {
    text-align: center;
    max-width: 720px;
    margin: 20px auto 50px;
    padding: 10px 20px;
}

.hero-titulo {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 16px;
}

.hero-destaque {
    background: linear-gradient(135deg, #00d4ff 0%, #00ffaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitulo {
    color: #9099ab;
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.hero-acoes {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primario,
.btn-hero-secundario {
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s;
}

.btn-hero-primario {
    background: linear-gradient(135deg, #82ff1b 0%, #5ecc00 100%);
    color: #000;
    box-shadow: 0 4px 15px rgba(130, 255, 27, 0.4);
}

.btn-hero-primario:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(130, 255, 27, 0.6);
}

.btn-hero-secundario {
    background: rgba(255, 255, 255, 0.05);
    color: #e8e8e8;
    border: 1px solid #3a3f5a;
}

.btn-hero-secundario:hover {
    border-color: #00d4ff;
    color: #00d4ff;
}

@media (max-width: 600px) {
    .hero-titulo {
        font-size: 1.6rem;
    }
}

/* ===================== SEÇÕES DE CAIXAS ===================== */
.secao-cabecalho {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 50px 0 24px;
}

.secao-titulo {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    white-space: nowrap;
}

.secao-titulo::before,
.secao-titulo::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
}

.btn-minimizar {
    background: none;
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: #9099ab;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.btn-minimizar:hover {
    border-color: #00d4ff;
    color: #00d4ff;
}

/* ===================== GRID DE CAIXAS ===================== */
.grid-caixas {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card-caixa {
    display: block;
    text-align: center;
    padding: 18px 12px;
    border-radius: 10px;
    transition: all 0.25s;
}

.card-caixa:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-4px);
}

.imagem-caixa {
    width: 100%;
    height: 160px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imagem-caixa img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.25s;
}

.card-caixa:hover .imagem-caixa img {
    transform: scale(1.06);
    filter: drop-shadow(0 8px 24px rgba(130, 255, 27, 0.5));
}

.icone-placeholder {
    font-size: 4rem;
    filter: drop-shadow(0 4px 10px rgba(130, 255, 27, 0.2));
}

.card-caixa h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #fff;
}

.card-caixa .preco {
    color: #82ff1b;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 4px;
}

/* ===================== ITENS ===================== */
.itens-possiveis {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
    margin: 25px 0;
}

.item-card {
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    font-size: 0.9rem;
    border: 2px solid;
    background: rgba(26, 29, 41, 0.4);
    backdrop-filter: blur(5px);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.item-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(20px);
    opacity: 0;
    transition: opacity 0.3s;
}

.item-card:hover {
    transform: translateY(-4px) scale(1.02);
}

.item-card:hover::before {
    opacity: 0.3;
}

.item-imagem {
    width: 100%;
    height: 100px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.item-imagem img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 10px currentColor);
}

.reel-item-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 8px;
    filter: drop-shadow(0 2px 8px currentColor);
}

.reel-item-icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

/* Raridades - cores oficiais do CS2 (nossos 5 níveis agrupam os 8 reais do
   jogo: comum = Consumer+Industrial Grade, incomum = Mil-Spec, raro =
   Restricted, épico = Classified, lendário = Covert/Extraordinary) */
.raridade-comum    {
    border-color: #b0c3d9;
    background: linear-gradient(135deg, rgba(176, 195, 217, 0.12) 0%, rgba(31, 33, 40, 0.4) 100%);
    color: #b0c3d9;
}
.raridade-incomum  {
    border-color: #4b69ff;
    background: linear-gradient(135deg, rgba(75, 105, 255, 0.12) 0%, rgba(22, 26, 48, 0.4) 100%);
    color: #8fa0ff;
}
.raridade-raro     {
    border-color: #8847ff;
    background: linear-gradient(135deg, rgba(136, 71, 255, 0.12) 0%, rgba(30, 22, 48, 0.4) 100%);
    color: #b088ff;
}
.raridade-epico    {
    border-color: #d32ce6;
    background: linear-gradient(135deg, rgba(211, 44, 230, 0.12) 0%, rgba(40, 22, 42, 0.4) 100%);
    color: #ea7ef2;
}
.raridade-lendario {
    border-color: #eb4b4b;
    background: linear-gradient(135deg, rgba(235, 75, 75, 0.18) 0%, rgba(48, 20, 20, 0.4) 100%);
    color: #ff8a8a;
    box-shadow: 0 0 20px rgba(235, 75, 75, 0.3);
}

/* ===================== BOTÕES ===================== */
.btn-abrir {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #82ff1b 0%, #5ecc00 100%);
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(130, 255, 27, 0.4);
    margin: 20px 0;
}

.btn-abrir:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(130, 255, 27, 0.6);
}

.btn-abrir:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.aviso-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.aviso-caixa {
    background: #0a0d1d;
    border: 1px solid rgba(130, 255, 27, 0.3);
    border-radius: 14px;
    max-width: 460px;
    width: 100%;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.aviso-icone {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.aviso-caixa h2 {
    color: #fff;
    margin: 0 0 14px;
    font-size: 1.3rem;
}

.aviso-caixa p {
    color: #b7bcdb;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 24px;
}

.aviso-caixa .btn-primario {
    display: inline-block;
    padding: 14px 32px;
    background: linear-gradient(135deg, #82ff1b 0%, #5ecc00 100%);
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(130, 255, 27, 0.4);
}

.aviso-caixa .btn-primario:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(130, 255, 27, 0.6);
}

.resultado-item {
    margin-top: 30px;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    font-size: 1.4rem;
    animation: aparecer 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid;
}

@keyframes aparecer {
    0% { opacity: 0; transform: scale(0.5) rotate(-5deg); }
    60% { transform: scale(1.05) rotate(2deg); }
    100% { opacity: 1; transform: scale(1) rotate(0); }
}

/* ===================== INVENTÁRIO ===================== */
.tabela-inventario {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    margin-top: 20px;
}

.tabela-inventario thead th {
    background: rgba(42, 46, 64, 0.6);
    padding: 14px;
    text-align: left;
    font-weight: 600;
    color: #d1d5db;
    border: none;
}

.tabela-inventario thead th:first-child {
    border-radius: 8px 0 0 8px;
}

.tabela-inventario thead th:last-child {
    border-radius: 0 8px 8px 0;
}

.tabela-inventario tbody tr {
    background: rgba(26, 29, 41, 0.4);
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.tabela-inventario tbody tr:hover {
    background: rgba(42, 46, 64, 0.6);
    transform: translateX(5px);
}

.tabela-inventario td {
    padding: 14px;
    border: none;
}

.tabela-inventario tbody tr td:first-child {
    border-radius: 8px 0 0 8px;
}

.tabela-inventario tbody tr td:last-child {
    border-radius: 0 8px 8px 0;
}

/* Miniatura 60x60 reaproveitada em inventário e painel admin */
.thumb-60 {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
}

.thumb-60-placeholder {
    width: 60px;
    height: 60px;
    background: #2a2e40;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 1.5rem;
}

.btn-vender {
    padding: 8px 16px;
    background: linear-gradient(135deg, #82ff1b 0%, #5ecc00 100%);
    border: none;
    border-radius: 6px;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(130, 255, 27, 0.3);
}

.btn-vender:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.5);
}

.inventario-cabecalho {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 10px;
}

.btn-vender-tudo {
    padding: 10px 20px;
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    border: none;
    border-radius: 6px;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(239, 68, 68, 0.3);
}

.btn-vender-tudo:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.5);
}

/* ===================== TELA DA CAIXA ===================== */
.link-voltar {
    display: inline-block;
    color: #9099ab;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.link-voltar:hover {
    color: #00d4ff;
}

.caixa-hero {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 20px;
}

.caixa-hero-img {
    width: 220px;
    height: 220px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.caixa-hero-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 30px rgba(130, 255, 27, 0.35));
}

.caixa-hero-titulo {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================== ROLETA ===================== */
.qtd-selector {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.qtd-btn {
    padding: 8px 16px;
    background: rgba(26, 29, 41, 0.6);
    border: 1px solid rgba(130, 255, 27, 0.2);
    border-radius: 6px;
    color: #9099ab;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.qtd-btn:hover {
    border-color: #82ff1b;
    color: #82ff1b;
}

.qtd-btn.ativo {
    background: rgba(130, 255, 27, 0.15);
    border-color: #82ff1b;
    color: #82ff1b;
    box-shadow: 0 0 10px rgba(130, 255, 27, 0.3);
}

.qtd-total-preco {
    text-align: center;
    margin: -10px 0 20px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #82ff1b;
}

.reels-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 30px auto;
    max-width: 1100px;
}

.reel-viewport {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(13, 15, 22, 0.9) 0%, rgba(26, 29, 41, 0.9) 100%);
    border-radius: 12px;
    border: 2px solid #2a2e40;
    box-shadow: inset 0 2px 20px rgba(0, 0, 0, 0.5);
}

.reel-viewport--grande {
    width: 100%;
    max-width: 950px;
    height: 250px;
}

.reel-viewport--mini {
    width: 360px;
    height: 175px;
}

.reel-marker {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #82ff1b 0%, #5ecc00 100%);
    transform: translateX(-50%);
    z-index: 5;
    box-shadow: 0 0 15px rgba(130, 255, 27, 0.8);
}

.reel-marker::before,
.reel-marker::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    transform: translateX(-50%);
}

.reel-marker::before {
    top: -2px;
    border-top: 12px solid #82ff1b;
    filter: drop-shadow(0 0 5px rgba(130, 255, 27, 0.8));
}

.reel-marker::after {
    bottom: -2px;
    border-bottom: 12px solid #82ff1b;
    filter: drop-shadow(0 0 5px rgba(130, 255, 27, 0.8));
}

.reel-track {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    will-change: transform;
}

.reel-item {
    width: 110px;
    min-width: 110px;
    margin: 10px 8px;
    border-radius: 10px;
    border: 2px solid;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    font-size: 0.8rem;
    background: rgba(26, 29, 41, 0.6);
    backdrop-filter: blur(5px);
}

.reel-item-nome { 
    font-weight: bold; 
    margin-bottom: 4px;
    font-size: 0.75rem;
    line-height: 1.2;
}

.reel-item-valor {
    color: #82ff1b;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Roleta grande (1 caixa): item um pouco maior que o padrão */
.reel-viewport--grande .reel-item {
    width: 150px;
    min-width: 150px;
    margin: 10px 10px;
    font-size: 0.9rem;
}

.reel-viewport--grande .reel-item-img {
    width: 110px;
    height: 110px;
}

/* Roletas mini (várias caixas de uma vez): compactas, mas não miúdas */
.reel-viewport--mini .reel-item {
    width: 110px;
    min-width: 110px;
    margin: 9px 7px;
    padding: 8px;
}

.reel-viewport--mini .reel-item-img {
    width: 65px;
    height: 65px;
    margin-bottom: 6px;
}

.reel-viewport--mini .reel-item-icon {
    font-size: 2.1rem;
    margin-bottom: 6px;
}

.reel-viewport--mini .reel-item-nome {
    font-size: 0.7rem;
}

.reel-viewport--mini .reel-item-valor {
    font-size: 0.65rem;
}

/* ===================== RESULTADO MÚLTIPLO ===================== */
.resultado-multiplo {
    margin-top: 30px;
    padding: 24px;
    border-radius: 16px;
    background: rgba(26, 29, 41, 0.6);
    border: 1px solid rgba(130, 255, 27, 0.3);
    text-align: center;
}

.resultado-multiplo h3 {
    margin-bottom: 16px;
}

.resultado-multiplo-lista {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
    text-align: left;
    margin-bottom: 16px;
}

.resultado-multiplo-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px 10px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid;
    background: rgba(16, 18, 26, 0.6);
    font-size: 0.85rem;
}

.resultado-multiplo-item span {
    color: #82ff1b;
    font-weight: bold;
    white-space: nowrap;
}

.btn-vender-mini {
    padding: 5px 12px;
    font-size: 0.75rem;
    flex-basis: 100%;
}

.btn-vender-resultado:disabled {
    opacity: 0.7;
    cursor: default;
    transform: none;
    box-shadow: none;
}

.resultado-multiplo-total {
    font-size: 1.3rem;
    font-weight: bold;
    color: #82ff1b;
}

/* ===================== TÍTULOS ===================== */
.logo { 
    font-size: 1.5rem; 
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

h2 {
    font-size: 2rem;
    margin: 30px 0 20px;
    color: #e8e8e8;
}

h3 {
    font-size: 1.5rem;
    margin: 25px 0 15px;
    color: #d1d5db;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
    .topo {
        padding: 14px 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .conteudo {
        padding: 20px;
    }
    
    .grid-caixas {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .itens-possiveis {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .latest-drops-container {
        padding: 0 20px;
        height: 95px;
    }
    
    .latest-drops-label {
        font-size: 0.65rem;
        min-width: 100px;
    }
    
    .latest-drops-scroll {
        margin-left: 15px;
    }
    
    .latest-drop-card {
        min-width: 120px;
        max-width: 120px;
        padding: 30px;
    }
    
    .latest-drop-image {
        height: 15px;
    }
    
    .latest-drop-name {
        font-size: 0.7rem;
        min-height: 28px;
        max-height: 28px;
    }
    
    .latest-drop-overlay-nome,
    .latest-drop-overlay-data {
        font-size: 0.55rem;
    }
}

/* ===================== BARRA DE ÚLTIMOS DROPS ===================== */
.latest-drops-bar {
    width: 100%;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.latest-drops-container {
    max-width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 0;
    height: 140px;
}

.latest-drops-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
    min-width: 130px;
    padding-right: 0;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.latest-drops-scroll {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-left: 20px;
}

.latest-drops-scroll::-webkit-scrollbar {
    display: none;
}

.latest-drops-track {
    display: flex;
    gap: 12px;
    padding: 8px 0;
}

.latest-drop-card {
    min-width: 140px;
    max-width: 140px;
    background: transparent;
    border: none;
    border-radius: 8px;
    padding: 35px 12px 12px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.latest-drop-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: border-color 0.3s;
}

.latest-drop-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.latest-drop-card:hover {
    transform: translateY(-4px);
}

.latest-drop-card:hover::before {
    border-color: currentColor;
}

.latest-drop-card:hover::after {
    opacity: 1;
}

.latest-drop-image {
    position: relative;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.8) 0%, rgba(15, 15, 15, 0.8) 100%);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 8px;
    padding: 6px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.latest-drop-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s, filter 0.3s;
}

.latest-drop-card:hover .latest-drop-image {
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.9) 0%, rgba(25, 25, 25, 0.9) 100%);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.latest-drop-card:hover .latest-drop-image img {
    transform: scale(1.08);
    filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.7)) blur(3px);
}

.latest-drop-placeholder {
    font-size: 2rem;
    opacity: 0.5;
}

/* Nome de quem tirou + data, aparece por cima da imagem (fosca) no hover */
.latest-drop-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: 4px;
    text-align: center;
    background: rgba(8, 10, 25, 0.72);
    border-radius: 7px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.latest-drop-card:hover .latest-drop-overlay {
    opacity: 1;
}

.latest-drop-overlay-nome {
    font-size: 0.68rem;
    font-weight: 700;
    color: #fff;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 100%;
}

.latest-drop-overlay-data {
    font-size: 0.6rem;
    color: #b7bcdb;
}

.latest-drop-name {
    font-size: 0.58rem;
    font-weight: 600;
    color: #e8e8e8;
    line-height: 1.2;
    margin-bottom: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 28px;
    max-height: 28px;
    word-break: break-word;
}

/* Fundo da imagem colorido conforme a raridade - mesmas cores oficiais do
   CS2 usadas em .raridade-* acima, pra manter consistência */
.latest-drop-card.raridade-comum .latest-drop-image {
    background: linear-gradient(135deg, rgba(176, 195, 217, 0.3) 0%, rgba(20, 20, 20, 0.85) 100%);
    border-color: rgba(176, 195, 217, 0.4);
}

.latest-drop-card.raridade-incomum .latest-drop-image {
    background: linear-gradient(135deg, rgba(75, 105, 255, 0.3) 0%, rgba(20, 20, 20, 0.85) 100%);
    border-color: rgba(75, 105, 255, 0.4);
}

.latest-drop-card.raridade-raro .latest-drop-image {
    background: linear-gradient(135deg, rgba(136, 71, 255, 0.3) 0%, rgba(20, 20, 20, 0.85) 100%);
    border-color: rgba(136, 71, 255, 0.4);
}

.latest-drop-card.raridade-epico .latest-drop-image {
    background: linear-gradient(135deg, rgba(211, 44, 230, 0.3) 0%, rgba(20, 20, 20, 0.85) 100%);
    border-color: rgba(211, 44, 230, 0.4);
}

.latest-drop-card.raridade-lendario .latest-drop-image {
    background: linear-gradient(135deg, rgba(235, 75, 75, 0.35) 0%, rgba(20, 20, 20, 0.85) 100%);
    border-color: rgba(235, 75, 75, 0.5);
    box-shadow: 0 0 12px rgba(235, 75, 75, 0.25);
}

.latest-drop-card.raridade-lendario {
    box-shadow: 0 0 10px rgba(235, 75, 75, 0.15);
}

.latest-drop-card.raridade-lendario:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), 0 0 20px rgba(235, 75, 75, 0.3);
}

/* Animação de entrada */
.latest-drop-appear {
    animation: latestDropSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===================== UPGRADE DE SKINS ===================== */
.upgrade-page {
    padding: 0 !important;
}

.conteudo.upgrade-page {
    background: linear-gradient(135deg, #000814 0%, #001d3d 100%);
    min-height: 100vh;
}

/* ===== LINHA 1: SLOTS DA APOSTA / GAUGE / CAIXA DO ALVO ===== */
.upgrade-selecao-linha {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 24px;
    padding: 30px 40px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.upgrade-slots-box,
.upgrade-centro-box,
.upgrade-caixa-alvo {
    background: rgba(26, 29, 41, 0.4);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
}

.upgrade-centro-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

.upgrade-caixa-alvo {
    display: flex;
    flex-direction: column;
}

.upgrade-valor-total {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 100, 150, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 10px 14px;
    margin-top: 14px;
    font-weight: bold;
    color: #00ffff;
    text-align: center;
    font-size: 0.9rem;
}

.upgrade-valor-total span {
    color: #00d4ff;
    font-size: 1.1rem;
}

.upgrade-slots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    align-content: start;
    gap: 10px;
    min-height: 100px;
}

.upgrade-alvo-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}

.slot-vazio {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    border: 2px dashed rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    color: rgba(0, 212, 255, 0.3);
    font-size: 1.8rem;
    font-weight: 300;
}

.aposta-item,
.alvo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: rgba(16, 18, 26, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.aposta-item:hover,
.alvo-item:hover {
    background: rgba(26, 29, 41, 0.8);
    border-color: #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.aposta-img,
.alvo-img {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.8) 0%, rgba(15, 15, 15, 0.8) 100%);
    border-radius: 4px;
    object-fit: contain;
    padding: 4px;
}

.aposta-info,
.alvo-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.aposta-nome,
.alvo-nome {
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.aposta-preco,
.alvo-preco {
    font-size: 0.75rem;
    color: #00d4ff;
}

.chance-percentage.chance-percentage-vazio {
    font-size: 0.85rem;
    font-weight: 500;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    -webkit-text-fill-color: #7d8598;
    color: #7d8598;
    line-height: 1.4;
    padding: 0 10px;
}

.link-regras {
    background: none;
    border: none;
    color: #7d8598;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

.link-regras:hover {
    color: #00d4ff;
}

.regras-texto {
    font-size: 0.8rem;
    color: #9099ab;
    background: rgba(16, 18, 26, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 8px;
    padding: 12px 14px;
    text-align: left;
}

.aviso-vazio {
    grid-column: 1 / -1;
    background: rgba(120, 53, 15, 0.25);
    border: 1px solid rgba(217, 119, 6, 0.4);
    border-radius: 8px;
    padding: 16px;
    color: #fbbf24;
    font-size: 0.9rem;
    text-align: center;
}

.aviso-vazio-icone {
    margin-right: 6px;
}

.aviso-vazio a {
    display: block;
    margin-top: 8px;
    color: #00d4ff;
    text-decoration: underline;
}

/* ===== LINHA 2: SEUS ITENS / ITENS PARA APRIMORAMENTO ===== */
.upgrade-busca-linha {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px 40px;
}

.upgrade-busca-coluna h3 {
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 16px;
}

.busca-com-lixeira {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.busca-com-lixeira .busca-input {
    flex: 1;
}

.btn-lixeira {
    background: rgba(26, 29, 41, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 6px;
    padding: 0 12px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s;
    color: #e8e8e8;
}

.filtro-valor-range {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.filtro-valor-range .busca-input {
    flex: 1;
    min-width: 0;
}

.filtro-valor-range span {
    color: #9099ab;
    font-size: 0.85rem;
    white-space: nowrap;
}

.btn-lixeira:hover {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.filtro-grupo {
    margin-bottom: 15px;
}

.busca-input {
    width: 100%;
    padding: 10px 12px;
    background: rgba(16, 18, 26, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 6px;
    color: #e8e8e8;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.busca-input:focus {
    outline: none;
    border-color: #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.ordenacao {
    margin-bottom: 15px;
}

.ordenacao-select {
    width: 100%;
    padding: 8px 12px;
    background: rgba(16, 18, 26, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 6px;
    color: #e8e8e8;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.ordenacao-select:focus {
    outline: none;
    border-color: #00d4ff;
}

.inventario-grid,
.skins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.inventario-grid.skins-grid {
    margin-top: 20px;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.carregar-mais-container {
    grid-column: 1 / -1;
    text-align: center;
    padding: 16px 0 4px;
}
.carregar-mais-container .vazio-msg {
    margin-bottom: 10px;
}

.inventario-grid .skin-card {
    cursor: default;
}

.skin-card-data {
    font-size: 0.7rem;
    color: #6b7280;
}

.skin-card {
    background: linear-gradient(135deg, rgba(26, 29, 41, 0.6) 0%, rgba(16, 18, 26, 0.6) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.skin-card:hover {
    border-color: #00d4ff;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
    transform: translateY(-3px);
}

.skin-card-img {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.8) 0%, rgba(15, 15, 15, 0.8) 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    overflow: hidden;
}

.skin-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 4px;
}

.skin-card-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: #e8e8e8;
    line-height: 1.2;
    max-height: 32px;
    overflow: hidden;
}

.skin-card-price {
    font-size: 0.9rem;
    font-weight: bold;
    color: #82ff1b;
}

.skin-card-rarity {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    width: 100%;
}

.vazio-msg {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    padding: 20px;
    grid-column: 1 / -1;
}

.carregando {
    text-align: center;
    color: #00d4ff;
    padding: 20px;
    grid-column: 1 / -1;
    animation: pulse 1.5s infinite;
}

/* ===== COLUNA CENTRO ===== */
.upgrade-centro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 8, 20, 0.8) 0%, rgba(0, 30, 60, 0.8) 100%);
    border-left: 1px solid rgba(0, 212, 255, 0.1);
    border-right: 1px solid rgba(0, 212, 255, 0.1);
}

.upgrade-gauge-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
    position: relative;
}

.gauge-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    padding: 0 20px;
}

.info-box {
    background: rgba(26, 29, 41, 0.6);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    flex: 1;
}

.info-label {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}

.info-valor {
    font-size: 1.3rem;
    font-weight: bold;
    color: #00d4ff;
}

.info-arrow {
    font-size: 2rem;
    color: #00d4ff;
}

.gauge-svg {
    width: 300px;
    height: 300px;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
}

#gaugeNeedle {
    transform-origin: 100px 100px;
    transition: none;
}

.chance-percentage {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #00d4ff 0%, #00ffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chance-label {
    font-size: 0.85rem;
    color: #00d4ff;
    letter-spacing: 1px;
}

.multiplicador-info {
    font-size: 1.1rem;
    color: #aaa;
    text-align: center;
}

.multiplicador-info span {
    color: #00ffff;
    font-weight: bold;
    font-size: 1.3rem;
}

.btn-upgrade {
    padding: 16px 40px;
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 100%);
    color: #000;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 90%;
    max-width: 250px;
}

.btn-upgrade:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.6);
}

.btn-upgrade:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== PAINEL DE RESULTADO ===== */
#resultadoContainer {
    width: 100%;
    margin-top: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .upgrade-selecao-linha {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .upgrade-busca-linha {
        grid-template-columns: 1fr;
    }

    .upgrade-selecao-linha,
    .upgrade-busca-linha {
        padding: 20px;
    }

    .inventario-grid,
    .skins-grid {
        grid-template-columns: 1fr;
    }

    .gauge-svg {
        width: 150px;
        height: 150px;
    }

    .chance-percentage {
        font-size: 2rem;
    }
}

/* ===================== PAINEL ADMIN ===================== */
.base-cs2-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    background: rgba(0, 212, 255, 0.06);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
}

.admin-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid #2a2e40;
    padding-bottom: 10px;
}
.admin-nav a {
    padding: 10px 20px;
    background: #1a1d29;
    border-radius: 8px 8px 0 0;
    transition: all 0.2s;
}
.admin-nav a:hover, .admin-nav a.ativo {
    background: #82ff1b;
    color: #111;
}
.admin-form {
    background: #1a1d29;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    max-width: 700px;
}
.admin-form input, .admin-form select, .admin-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 14px;
    border-radius: 6px;
    border: 1px solid #333;
    background: #10121a;
    color: #eee;
}
.admin-form label {
    display: block;
    margin-bottom: 6px;
    color: #aaa;
    font-size: 0.9rem;
}
.admin-form button {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    background: #82ff1b;
    color: #111;
    font-weight: bold;
    cursor: pointer;
}
.admin-form button:hover {
    background: #a3ff5c;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1d29;
    border-radius: 12px;
    overflow: hidden;
}
.admin-table th {
    background: #2a2e40;
    padding: 12px;
    text-align: left;
}
.admin-table td {
    padding: 12px;
    border-top: 1px solid #2a2e40;
}
.btn-small {
    padding: 6px 12px;
    background: #2a2e40;
    border-radius: 4px;
    font-size: 0.85rem;
    margin-right: 6px;
    display: inline-block;
}

.admin-bloqueio-deposito {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    background: #1a1d29;
    border: 1px solid rgba(130, 255, 27, 0.3);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 24px;
}
.admin-bloqueio-deposito.bloqueado {
    border-color: rgba(255, 92, 92, 0.4);
}
.admin-bloqueio-deposito strong {
    color: #fff;
    font-size: 1rem;
}
.admin-bloqueio-deposito p {
    color: #9099ab;
    font-size: 0.85rem;
    margin: 4px 0 0;
}
.admin-bloqueio-deposito form {
    margin: 0;
}

.admin-resumo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}
.admin-resumo-card {
    background: #1a1d29;
    border: 1px solid #2a2e40;
    border-radius: 12px;
    padding: 18px;
    text-align: center;
}
.admin-resumo-valor {
    font-size: 1.6rem;
    font-weight: 800;
}
.admin-resumo-label {
    font-size: 0.8rem;
    color: #9099ab;
    margin-top: 4px;
}

.itens-grupo-caixa {
    margin-bottom: 28px;
}
.itens-grupo-cabecalho {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}
.itens-grupo-titulo {
    font-size: 1.05rem;
    color: #fff;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.itens-grupo-contagem {
    font-size: 0.8rem;
    font-weight: 400;
    color: #9099ab;
}

.form-inline-acao {
    display: inline-block;
    margin: 0;
}

.form-inline-acao button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.form-saldo {
    display: flex;
    gap: 6px;
    align-items: center;
}

.input-saldo {
    width: 90px;
    padding: 6px 8px;
    border-radius: 4px;
    border: 1px solid #3a3f5a;
    background: #10121a;
    color: #eee;
    font-size: 0.85rem;
}

.form-inline-acao button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.btn-small:hover {
    background: #3a3f5a;
}
.btn-danger {
    background: #dc2626;
}
.btn-danger:hover {
    background: #b91c1c;
}
.preview-img {
    max-width: 200px;
    margin-top: 10px;
    border-radius: 8px;
}

