.elementor-813 .elementor-element.elementor-element-3e674bb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:35px;--padding-bottom:35px;--padding-left:0px;--padding-right:0px;}.elementor-813 .elementor-element.elementor-element-3e674bb:not(.elementor-motion-effects-element-type-background), .elementor-813 .elementor-element.elementor-element-3e674bb > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#EEEEEE;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-180843f */.talkids-game-container {
    font-family: 'Rubik', sans-serif;
    background-color: #f4f7f6;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 750px; /* רוחב מהודק יותר */
    margin: 15px auto;
    text-align: center;
    box-sizing: border-box;
    direction: rtl;
}

.talkids-game-container * {
    box-sizing: border-box;
}

.talkids-game-container h2 {
    color: #0d6efd;
    font-size: 26px;
    margin-top: 0;
    margin-bottom: 20px;
}

/* רשת של 5 עמודות, ריווח קטן יותר */
.tk-grid {
    display: grid;
    gap: 12px;
    direction: ltr;
    justify-content: center;
    grid-template-columns: repeat(5, 90px); 
}

.draggables-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px dashed #e0e0e0;
}

/* אריחים מלבניים (רוחב 90, גובה 55) לחסכון בגובה */
.talkids-game-container .draggable {
    width: 90px;
    height: 55px;
    background-color: #ffca28;
    color: #333;
    font-size: 30px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: grab;
    box-shadow: 0 4px 0 #ffb300;
    user-select: none;
    transition: transform 0.2s;
    font-family: Arial, Helvetica, sans-serif;
    touch-action: none;
}

.talkids-game-container .draggable:active {
    cursor: grabbing;
    transform: scale(0.95) translateY(4px);
    box-shadow: 0 0 0 #ffb300;
}

.talkids-game-container .drop-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px; /* קרבנו את האות הקטנה לתיבה */
}

.talkids-game-container .dropzone {
    width: 90px;
    height: 55px;
    background-color: #fafafa;
    border: 3px dashed #ccc;
    border-radius: 10px;
    transition: all 0.3s;
}

.talkids-game-container .dropzone.hovered {
    background-color: #e3f2fd;
    border-color: #0d6efd;
}

.talkids-game-container .dropzone.correct {
    background-color: #4caf50;
    border-color: #4caf50;
    border-style: solid;
    animation: tkPop 0.3s ease-out;
}

.talkids-game-container .lowercase-label {
    font-size: 32px;
    font-weight: 800;
    color: #444;
    font-family: Arial, Helvetica, sans-serif;
}

.talkids-game-container .success-message {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background-color: #e8f5e9;
    color: #2e7d32;
    border-radius: 10px;
    font-size: 22px;
    font-weight: bold;
}

.talkids-game-container .success-message button {
    display: block;
    margin: 10px auto 0;
    background-color: #0d6efd;
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Rubik', sans-serif;
    transition: background 0.3s;
}

.talkids-game-container .success-message button:hover {
    background-color: #0b5ed7;
}

@keyframes tkPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes tkShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px) rotate(-3deg); }
    75% { transform: translateX(4px) rotate(3deg); }
}

.talkids-game-container .shake {
    animation: tkShake 0.4s ease-in-out;
    background-color: #ef5350 !important;
    box-shadow: 0 4px 0 #d32f2f !important;
    color: white;
}

/* התאמה מהודקת למובייל */
@media (max-width: 600px) {
    .talkids-game-container {
        padding: 15px;
    }
    
    .tk-grid {
        grid-template-columns: repeat(5, 55px);
        gap: 8px;
    }

    .talkids-game-container .draggable,
    .talkids-game-container .dropzone {
        width: 55px;
        height: 45px;
        font-size: 22px;
        border-radius: 6px;
    }

    .talkids-game-container .lowercase-label {
        font-size: 24px;
    }
}

/* למסכים צרים במיוחד (למשל אייפון ישן) - יורד ל-4 עמודות */
@media (max-width: 380px) {
    .tk-grid {
        grid-template-columns: repeat(4, 60px);
    }
}/* End custom CSS */