/* MW3biz Newsletter Signup Block — v1.0.0 */

.mw3biz-nl-block {
    margin: 2rem 0;
    padding: 0;
    clear: both;
}

.mw3biz-nl-inner {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mw3biz-nl-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.mw3biz-nl-heading {
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    position: relative;
}

.mw3biz-nl-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0 0 1.25rem 0;
    line-height: 1.5;
    position: relative;
}

.mw3biz-nl-form {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
}

.mw3biz-nl-form-row {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.mw3biz-nl-email {
    flex: 1;
    padding: 0.7rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.mw3biz-nl-email::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.mw3biz-nl-email:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.2);
}

.mw3biz-nl-email:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.mw3biz-nl-btn {
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
    white-space: nowrap;
}

.mw3biz-nl-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.mw3biz-nl-btn:active {
    transform: translateY(0);
}

.mw3biz-nl-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Honeypot — must be invisible */
.mw3biz-nl-hp {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

.mw3biz-nl-privacy {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    margin: 0.75rem 0 0 0;
    position: relative;
}

.mw3biz-nl-msg {
    font-size: 0.85rem;
    margin: 0.75rem 0 0 0;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    position: relative;
}

.mw3biz-nl-success {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.mw3biz-nl-error {
    color: #f87171;
    background: rgba(248, 113, 113, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.2);
}

/* Responsive */
@media (max-width: 480px) {
    .mw3biz-nl-inner {
        padding: 1.5rem 1rem;
    }

    .mw3biz-nl-form-row {
        flex-direction: column;
    }

    .mw3biz-nl-btn {
        width: 100%;
    }

    .mw3biz-nl-heading {
        font-size: 1.15rem;
    }
}
