/* BetCommandCenter — Universal Mobile System */

@media (max-width: 768px) {
    table { display: none !important; }
    #desktopIntel, .desktop-only { display: none !important; }
    
    .scrollbar-hide {
        -ms-overflow-style: none;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .xl\:hidden.fixed.bottom-6.right-6 {
        bottom: 80px !important;
        right: 16px !important;
        z-index: 50 !important;
    }
}

.mobile-cards-container {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-card {
    width: 100%;
    background-color: #000000;
    border-left: 3px solid #00ff88;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-right: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 10px;
}

.mc-status {
    height: 36px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background-color: #0a0a0a;
}

.mc-league {
    font-size: 11px;
    font-weight: bold;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.mc-time {
    font-size: 10px;
    color: #ffaa00;
    font-weight: bold;
    font-family: 'JetBrains Mono', monospace;
}

.mc-time.live {
    color: #ff3344;
    animation: pulse 1.5s infinite;
}

.mc-arb-badge {
    border: 1px solid #00ff88;
    color: #00ff88;
    font-size: 9px;
    padding: 1px 6px;
    letter-spacing: 1px;
    margin-left: 8px;
    animation: pulse 2s infinite;
    font-family: 'JetBrains Mono', monospace;
}

.mc-teams {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mc-team-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.mc-team-name {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.mc-team-away {
    font-size: 15px;
    font-weight: bold;
    color: rgba(255,255,255,0.75);
    font-family: 'Inter', sans-serif;
}

.mc-score {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    font-weight: bold;
    color: #00ff88;
}

.mc-intelligence {
    padding: 7px 12px;
    font-size: 11px;
    color: #ffaa00;
    background-color: rgba(255,170,0,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-family: 'Inter', sans-serif;
}

.mc-decision {
    background-color: rgba(0,255,136,0.04);
    border-left: 3px solid #00ff88;
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.mc-label {
    font-size: 8px;
    color: #ffaa00;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 3px;
    font-family: 'Inter', sans-serif;
    font-weight: bold;
}

.mc-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: bold;
    color: #ffffff;
}

.mc-green { color: #00ff88; }
.mc-amber { color: #ffaa00; }
.mc-red   { color: #ff3344; }

.mc-reasoning {
    padding: 8px 12px;
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-family: 'Inter', sans-serif;
    font-style: italic;
}

.mc-odds {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mc-odd-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.mc-odd-col:last-child {
    border-right: none;
}

.mc-odd-label {
    font-size: 9px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 3px;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mc-odd-val {
    font-family: 'JetBrains Mono', monospace;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.mc-book {
    font-size: 9px;
    color: #ffaa00;
    margin-top: 3px;
    font-family: 'Inter', sans-serif;
}

.mc-best .mc-odd-val {
    color: #00ff88;
}

.mc-best {
    border-bottom: 2px solid #00ff88;
}

.mc-actions {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mc-btn-oracle {
    width: 100%;
    height: 44px;
    background-color: #000000;
    border: 2px solid #00ff88;
    color: #00ff88;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.2s;
}

.mc-btn-oracle:active {
    background-color: #00ff88;
    color: #000000;
}

.mc-btn-bet {
    width: 100%;
    height: 44px;
    background-color: #00ff88;
    border: none;
    color: #000000;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.2s;
}

.mc-btn-bet:active {
    background-color: #00cc66;
}

@keyframes pulse {
    0%,100% { opacity: 1; }
    50%      { opacity: 0.4; }
}
