/* ==== POKER CARD THEMES ==== */

/* Base Card Styles */
.poker-card {
    width: 60px;
    height: 75px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    box-shadow: 0 3px 6px rgba(0,0,0,0.08);
}

/* ==== CLASSIC THEME ==== */
.poker-cards.theme-classic .poker-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 3px solid #dee2e6;
    color: #333;
}

.poker-cards.theme-classic .poker-card:hover {
    border-color: #667eea;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.poker-cards.theme-classic .poker-card.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #667eea;
    transform: translateY(-5px);
}

/* ==== MODERN THEME ==== */
.poker-cards.theme-modern .poker-card {
    background: linear-gradient(135deg, #667eea 10%, #764ba2 100%);
    border: 3px solid #667eea;
    color: white;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.poker-cards.theme-modern .poker-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.poker-cards.theme-modern .poker-card.selected {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-5px) scale(1.1);
}

/* ==== COLORFUL THEME ==== */
.poker-cards.theme-colorful .poker-card:nth-child(1) { 
    background: linear-gradient(135deg, #ff6b6b, #ee5a52); 
    color: white; 
    border: 3px solid #ff6b6b; 
}

.poker-cards.theme-colorful .poker-card:nth-child(2) { 
    background: linear-gradient(135deg, #4ecdc4, #44a08d); 
    color: white; 
    border: 3px solid #4ecdc4; 
}

.poker-cards.theme-colorful .poker-card:nth-child(3) { 
    background: linear-gradient(135deg, #45b7d1, #3498db); 
    color: white; 
    border: 3px solid #45b7d1; 
}

.poker-cards.theme-colorful .poker-card:nth-child(4) { 
    background: linear-gradient(135deg, #f39c12, #e67e22); 
    color: white; 
    border: 3px solid #f39c12; 
}

.poker-cards.theme-colorful .poker-card:nth-child(5) { 
    background: linear-gradient(135deg, #9b59b6, #8e44ad); 
    color: white; 
    border: 3px solid #9b59b6; 
}

.poker-cards.theme-colorful .poker-card:nth-child(6) { 
    background: linear-gradient(135deg, #1abc9c, #16a085); 
    color: white; 
    border: 3px solid #1abc9c; 
}

.poker-cards.theme-colorful .poker-card:nth-child(7) { 
    background: linear-gradient(135deg, #e74c3c, #c0392b); 
    color: white; 
    border: 3px solid #e74c3c; 
}

.poker-cards.theme-colorful .poker-card:nth-child(8) { 
    background: linear-gradient(135deg, #34495e, #2c3e50); 
    color: white; 
    border: 3px solid #34495e; 
}

.poker-cards.theme-colorful .poker-card:nth-child(9) { 
    background: linear-gradient(135deg, #27ae60, #229954); 
    color: white; 
    border: 3px solid #27ae60; 
}

.poker-cards.theme-colorful .poker-card:nth-child(10) { 
    background: linear-gradient(135deg, #6c5ce7, #5f3dc4); 
    color: white; 
    border: 3px solid #6c5ce7; 
}

.poker-cards.theme-colorful .poker-card:nth-child(11) { 
    background: linear-gradient(135deg, #fd79a8, #e84393); 
    color: white; 
    border: 3px solid #fd79a8; 
}

.poker-cards.theme-colorful .poker-card:hover {
    transform: translateY(-8px) scale(1.05);
    filter: brightness(1.1);
}

.poker-cards.theme-colorful .poker-card.selected {
    transform: translateY(-5px) scale(1.1);
    filter: brightness(1.2);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* ==== DARK THEME ==== */
.poker-cards.theme-dark .poker-card {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border: 3px solid #4a6741;
    color: #ecf0f1;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.poker-cards.theme-dark .poker-card:hover {
    border-color: #667eea;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

.poker-cards.theme-dark .poker-card.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    transform: translateY(-5px) scale(1.1);
}

/* ==== MINIMAL THEME ==== */
.poker-cards.theme-minimal .poker-card {
    background: #ffffff;
    border: 2px solid #e1e8ed;
    color: #1a1a1a;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.poker-cards.theme-minimal .poker-card:hover {
    border-color: #667eea;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.poker-cards.theme-minimal .poker-card.selected {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-5px) scale(1.1);
}

/* ==== RESPONSIVE CARD STYLES ==== */
@media (max-width: 768px) {
    .poker-card {
        width: 60px;
        height: 80px;
        font-size: 1.2rem;
    }
}