/* ================= 飞禽走兽游戏专用样式 ================= */

/* 移动端触摸优化 */
html {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-touch-callout: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

* { 
    touch-action: manipulation;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* 投注按钮基础样式（配合Bootstrap） */
.bet-button {
    cursor: pointer;
    transition: transform 0.08s ease;
    will-change: transform;
    transform: translateZ(0);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bet-button:active {
    transform: scale(0.95) translateZ(0);
}

/* 投注金额按钮（基于Bootstrap .btn-group .btn） */
.bet-amount-btn {
    font-weight: 600;
    transition: all 0.08s ease;
    background-color: #f8f9fa;
    border-color: #dee2e6;
    color: #495057;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.bet-amount-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    background-color: #e9ecef;
    border-color: #adb5bd;
    color: #495057;
}

.bet-amount-btn.active,
.bet-amount-btn:focus {
    transform: translateY(0);
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
    box-shadow: 0 2px 8px rgba(108,117,125,0.3);
}

.bet-amount-btn:active {
    transform: scale(0.95) translateY(-1px);
}

/* 投注表格优化 */
.betting-table table tbody td:last-child {
    text-align: center;
}

/* 移动端响应式调整 */
@media (max-width: 576px) {
    .betting-table table tbody tr {
        height: 35px;
    }
    
    .betting-table table tbody td {
        padding: 6px;
    }
    
    .betting-table .bet-button {
        min-height: 32px;
        padding: 6px 10px;
        font-size: 14px;
    }
}

/* 电脑版按钮优化 */
@media (min-width: 768px) {
    .betting-table .bet-button {
        min-width: 70px;
        max-width: 90px;
        padding: 6px 12px;
        font-size: 15px;
    }
} 