.game-board-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.player-turn-badge {
    background: rgba(16, 185, 129, 0.2);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.mancala-board {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 1.5rem;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.05);
    max-width: 100%;
    overflow-x: auto;
}

.store {
    width: 80px;
    height: 240px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.6);
    position: relative;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.p1-store { border-color: rgba(56, 189, 248, 0.4); }
.p2-store { border-color: rgba(239, 68, 68, 0.4); }

.store.glow {
    box-shadow: 0 0 15px var(--primary), inset 0 5px 15px rgba(0, 0, 0, 0.6);
    border-color: var(--primary);
}

.pits-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pits-row {
    display: flex;
    gap: 1rem;
}

.pit {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.5);
    position: relative;
    transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pit:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.pit:active {
    transform: scale(0.95);
}

.pit.p1-pit { border-color: rgba(56, 189, 248, 0.3); }
.pit:not(.p1-pit) { border-color: rgba(239, 68, 68, 0.3); }

/* Highlight valid moves */
.pit.playable {
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5), inset 0 5px 15px rgba(0, 0, 0, 0.5);
    border-color: rgba(16, 185, 129, 0.8);
}
.pit.playable:hover {
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.8), inset 0 5px 15px rgba(0, 0, 0, 0.5);
}

.pit.glow {
    box-shadow: 0 0 15px var(--primary), inset 0 5px 15px rgba(0, 0, 0, 0.5);
    border-color: var(--primary);
}

.seed-count {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 2;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    width: 100%;
    margin: 0.5rem 0;
}

/* Animations for seeds sowing */
.seed {
    width: 12px;
    height: 12px;
    background: radial-gradient(circle at 30% 30%, #fff, #38bdf8);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
    z-index: 1;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (max-width: 600px) {
    .mancala-board {
        padding: 0.8rem;
        gap: 0.5rem;
        border-radius: 20px;
    }
    .store {
        width: 50px;
        height: 180px;
        border-radius: 25px;
    }
    .pits-row { gap: 0.5rem; }
    .pit { width: 40px; height: 40px; }
    .seed-count { font-size: 1.1rem; }
}
