/* Persuasion Hooks Styles - Elegant & Non-Invasive */

/* Live Views Widget */
.live-views-widget {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--muted, #6a6160);
    margin: 16px 0 20px 0;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(111, 36, 54, 0.03), rgba(180, 138, 120, 0.02));
    border-radius: 12px;
    border: 1px solid rgba(111, 36, 54, 0.06);
    transition: all 0.3s ease;
}

.live-views-widget:hover {
    background: linear-gradient(135deg, rgba(111, 36, 54, 0.05), rgba(180, 138, 120, 0.04));
    border-color: rgba(111, 36, 54, 0.1);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #b48a78;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(180, 138, 120, 0.4);
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 8px rgba(180, 138, 120, 0.4);
    }
    50% {
        opacity: 0.6;
        box-shadow: 0 0 12px rgba(180, 138, 120, 0.6);
    }
}

.live-views-widget strong {
    color: var(--ink, #201818);
    font-weight: 600;
}

/* Ticker Effect */
.persuasion-ticker {
    height: 24px;
    overflow: hidden;
    position: relative;
    margin: 12px 0;
}

#persuasion-messages {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
}

.ticker-item {
    height: 24px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 0.85rem;
    color: var(--muted, #6a6160);
    font-weight: 500;
    letter-spacing: 0.3px;
}

.ticker-item strong {
    color: var(--tierra, #b48a78);
    font-weight: 600;
    margin-right: 4px;
}

/* Scarcity Badge */
.scarcity-alert {
    background: linear-gradient(135deg, rgba(111, 36, 54, 0.05), rgba(180, 138, 120, 0.03));
    border-left: 2px solid var(--tierra, #b48a78);
    padding: 10px 14px;
    font-size: 0.85rem;
    color: var(--muted, #6a6160);
    font-weight: 500;
    margin: 16px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

