.cw-help-highlight {
    position: relative;
    z-index: 12;
    border-radius: 10px;
    box-shadow: 0 0 0 2px #f59e0b, 0 0 0 8px rgba(245, 158, 11, 0.25);
    animation: cwHelpBlink 1s ease-in-out infinite;
}

@keyframes cwHelpBlink {
    0%, 100% { box-shadow: 0 0 0 2px #f59e0b, 0 0 0 8px rgba(245, 158, 11, 0.25); }
    50% { box-shadow: 0 0 0 2px #ea580c, 0 0 0 11px rgba(234, 88, 12, 0.28); }
}

.cw-help-nav {
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    z-index: 10050;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.96);
    box-shadow: 0 18px 35px rgba(2, 6, 23, 0.45);
    max-width: min(760px, calc(100vw - 20px));
}

.cw-help-text {
    min-width: 280px;
    max-width: 460px;
    padding: 8px 10px;
    border-radius: 10px;
    border: 1px solid rgba(253, 186, 116, 0.5);
    background: linear-gradient(135deg, #1e293b, #0f172a);
}

.cw-help-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.cw-help-title {
    color: #fde68a;
    font-size: 12px;
    font-weight: 800;
}

.cw-help-desc {
    margin-top: 3px;
    color: #f8fafc;
    font-size: 12px;
    line-height: 1.35;
}

.cw-help-counter {
    min-width: auto;
    height: auto;
    color: #cbd5e1;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0.95;
}

.cw-help-btn {
    border: none;
    border-radius: 10px;
    width: 100px;
    height: 42px;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cw-help-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.cw-help-prev { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.cw-help-next { background: linear-gradient(135deg, #f59e0b, #ea580c); }
.cw-help-close { background: linear-gradient(135deg, #ef4444, #dc2626); }
.cw-help-voice { background: linear-gradient(135deg, #64748b, #475569); }
.cw-help-voice.voice-on { background: linear-gradient(135deg, #10b981, #059669); box-shadow: 0 0 0 3px rgba(16,185,129,0.45); }

@media (max-width: 760px) {
    .cw-help-nav {
        left: 10px;
        right: 10px;
        transform: none;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .cw-help-text {
        order: 5;
        min-width: 100%;
        max-width: 100%;
    }
}
