/* 掼蛋通用样式 */
.guandan-hidden,
.hidden {
    display: none !important;
}

.guandan-loading {
    text-align: center;
    padding: 20px;
    color: #666;
}

.guandan-error {
    background: #ffe6e6;
    border: 1px solid #ff9999;
    border-radius: 5px;
    padding: 10px;
    color: #cc0000;
    margin: 10px 0;
}

.guandan-success {
    background: #e6ffe6;
    border: 1px solid #99ff99;
    border-radius: 5px;
    padding: 10px;
    color: #006600;
    margin: 10px 0;
}

.guandan-button {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.guandan-button:hover {
    background: #e68a00;
}

.guandan-button:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.guandan-card {
    width: 60px;
    height: 90px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    display: inline-block;
    margin: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    cursor: pointer;
}

.guandan-card.selected {
    border-color: #f59e0b;
    box-shadow: 0 0 10px #f59e0b;
    transform: translateY(-10px);
}

.guandan-card-value {
    position: absolute;
    top: 5px;
    left: 5px;
    font-size: 18px;
    font-weight: bold;
}

.guandan-card-suit {
    position: absolute;
    bottom: 5px;
    right: 5px;
    font-size: 24px;
}

.guandan-card-heart { color: #ff4444; }
.guandan-card-diamond { color: #ff4444; }
.guandan-card-club { color: #000000; }
.guandan-card-spade { color: #000000; }

.guandan-player-info {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    margin: 10px 0;
}

.guandan-player-name {
    font-weight: bold;
    font-size: 18px;
}

.guandan-player-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
    margin-right: 10px;
}

.guandan-ai-badge {
    background: #ffcc00;
    color: #333;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    margin-left: 5px;
}