/* BrainBubbles Component Styles - Matching Original MyGojiPlay Component */

.brainbubbles {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    min-height: 256px;
    margin-bottom: 16px;
    gap: 20px;
}

.brainbubbles .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.brainbubbles .title-text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    gap: 8px;
}

.brainbubbles .title-text-container .title-text {
    font-family: "Metropolis Semi Bold";
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0.3px;
    color: #4b4a4a;
}

.brainbubbles .title-text-container .title-subtext {
    color: #4b4a4a;
    font-family: "Metropolis Regular";
    font-size: 17px;
    line-height: 20px;
    letter-spacing: 0.17px;
}

.brainbubbles .card {
    display: flex;
    width: 70%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 4px 4px 0 #dff4ff;
    border: none;
    align-self: center;
}

.brainbubbles .subtitle {
    font-family: "Metropolis Semi Bold";
    color: #4b4a4a;
    font-size: 17px;
    line-height: 20px;
    letter-spacing: 0.17px;
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    font-weight: 600;
}

.brainbubbles-container {
    position: relative;
    width: 100%;
    height: 230px;
    padding: 20px;
    box-sizing: border-box;
}

.brainbubbles .bubble {
    position: absolute;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    padding-top: 2px;
}

.brainbubbles .bubble:hover {
    transform: scale(1.05) translate(-50%, -50%);
}

.brainbubbles .bubble img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    position: relative;
    top: -5px;
}

.brainbubbles .bubble div {
    color: white;
    font-family: "Metropolis", sans-serif;
    font-weight: bold;
    font-size: 14px;
    line-height: 12px;
    letter-spacing: 0.15px;
    position: relative;
    top: -5px;
    width: 88%;
    text-align: center;
    padding: 0 2px;
}


/* Dark theme support */
.dark .brainbubbles .card {
    background-color: #1f2120;
    box-shadow: none;
}
.dark .brainbubbles .title .title-text,
.dark .brainbubbles .subtitle,
.dark .brainbubbles .title-text-container .title-subtext {
    color: #ffffff;
}

/* Responsive design */
@media (max-width: 768px) {
    .brainbubbles {
        min-height: 200px;
    }
    .brainbubbles .bubble div {
        font-size: 12px;
    }
    .brainbubbles .bubble img {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .brainbubbles {
        min-height: 180px;
    }
    .brainbubbles .bubble div {
        font-size: 10px;
    }
    .brainbubbles .bubble img {
        width: 28px;
        height: 28px;
    }
}
