/* Crazyhouse specific styles */
.crazyhouse-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 10px;
}

.pocket-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: 50px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 5px 15px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pocket-piece {
    position: relative;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.2s, filter 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pocket-piece:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.pocket-piece.selected {
    background: rgba(var(--primary-rgb, 0, 243, 255), 0.3);
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(var(--primary-rgb, 0, 243, 255), 0.5);
    transform: scale(1.15);
}


.piece-count {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--primary-color, #00f3ff);
    color: #000;
    font-size: 10px;
    font-weight: bold;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #1a1a2e;
}

/* Kawaii mode adjustments */
[data-theme="kawaii"] .pocket-bar {
    background: rgba(255, 255, 255, 0.8);
    border-color: #ffb7c5;
}

[data-theme="kawaii"] .piece-count {
    background: #ff8fab;
    color: white;
    border-color: white;
}

[data-theme="kawaii"] .pocket-piece.selected {
    background: rgba(255, 143, 171, 0.3);
    box-shadow: 0 0 15px rgba(255, 143, 171, 0.5);
}


.house-rules-banner {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    margin-top: 5px;
    font-style: italic;
}

[data-theme="kawaii"] .house-rules-banner {
    color: #ff8fab;
}
