/* Unified Subscription Styles */

/* Footer Form */
.be-footer-subscribe {
    flex: 2;
    min-width: 300px;
}

.subscribe-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.subscribe-content p {
    font-size: 0.95rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.subscribe-form {
    display: flex;
    gap: 0.5rem;
    max-width: 450px;
}

.footer-sub-msg {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    min-height: 1.2rem;
}

.subscribe-input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: white;
    font-size: 0.9rem;
}

.subscribe-btn {
    background: var(--accent-purple, #a855f7);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.subscribe-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

/* Article Slide-in Pop-up */
.pulse-slide-in {
    position: fixed;
    bottom: 2rem;
    right: -400px; /* Hidden by default */
    width: 340px;
    background: rgba(15, 15, 20, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 1.25rem;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    z-index: 1000;
    transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pulse-slide-in.active {
    right: 2rem;
}

.pulse-slide-in-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.pulse-badge {
    background: rgba(168, 85, 247, 0.2);
    color: #c084fc;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 2rem;
    letter-spacing: 0.05em;
}

.pulse-close {
    background: none;
    border: none;
    color: var(--text-muted, #94a3b8);
    cursor: pointer;
    padding: 0.2rem;
}

.pulse-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pulse-content p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.pulse-msg {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    min-height: 1rem;
}

@media (max-width: 480px) {
    .pulse-slide-in {
        width: calc(100% - 2rem);
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        transform: translateY(200%);
    }
    .pulse-slide-in.active {
        transform: translateY(0);
    }
}
