.turin-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.turin-avatar {
    width: 60px;
    height: 60px;
    cursor: pointer;
    animation: whaleJump 1s ease-in-out infinite;
}

.turin-avatar:hover {
    transform: scale(1.1);
}

@keyframes whaleJump {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    20% { transform: translateY(-15px) rotate(-5deg); }
    40% { transform: translateY(-25px) rotate(0deg); }
    60% { transform: translateY(-15px) rotate(5deg); }
    80% { transform: translateY(-8px) rotate(0deg); }
}

.turin-speech-bubble {
    background: #fff;
    border-radius: 15px;
    padding: 12px;
    max-width: 220px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: none;
    position: relative;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.turin-speech-bubble.active {
    display: block;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.speech-content {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.speech-options {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.option-btn {
    background: #4A90D9;
    color: #fff;
    border: none;
    padding: 6px 10px;
    border-radius: 15px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.option-btn:hover {
    background: #357ABD;
}

.turin-input-container {
    display: none;
    background: #fff;
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.turin-input-container.active {
    display: flex;
    gap: 6px;
}

#turin-input {
    flex: 1;
    border: 1px solid #ddd;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 13px;
    outline: none;
}

#turin-send {
    background: #4A90D9;
    color: #fff;
    border: none;
    padding: 6px 12px;
    border-radius: 15px;
    cursor: pointer;
    font-size: 13px;
}