.msn-banner {
    --msn-gradient-start: #667eea;
    --msn-gradient-mid: #764ba2;
    --msn-gradient-end: #5b47db;
    --msn-accent: #a78bfa;
    --msn-accent-bright: #c4b5fd;
    --msn-text: #fff;
    --msn-radius: 16px;
    --msn-shadow: 0 10px 40px rgba(102, 126, 234, 0.25);

    background: linear-gradient(135deg, var(--msn-gradient-start), var(--msn-gradient-mid), var(--msn-gradient-end));
    padding: 2rem;
    border-radius: var(--msn-radius);
    box-shadow: var(--msn-shadow);
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(167, 139, 250, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.msn-banner:hover {
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.35);
    border-color: rgba(196, 181, 253, 0.4);
}

.msn-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(196, 181, 253, 0.15));
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 40% 0);
    opacity: 0.8;
}

.msn-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(196, 181, 253, 0.1) 0%, transparent 50%);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.msn-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.msn-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.msn-icon {
    background: linear-gradient(135deg, var(--msn-accent), var(--msn-accent-bright));
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(167, 139, 250, 0.4), 0 0 0 4px rgba(167, 139, 250, 0.15);
    animation: gentle-bounce 2.5s ease-in-out infinite;
}

@keyframes gentle-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.msn-icon svg {
    width: 28px;
    height: 28px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.msn-text {
    color: var(--msn-text);
}

.msn-urgent-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: linear-gradient(135deg, rgba(196, 181, 253, 0.25), rgba(167, 139, 250, 0.25));
    color: var(--msn-accent-bright);
    padding: 0.375rem 0.875rem;
    border-radius: 24px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.625rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(196, 181, 253, 0.3);
    backdrop-filter: blur(10px);
}

.msn-text h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.msn-text p {
    font-size: 1.05rem;
    margin: 0.625rem 0 0 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.msn-button-wrapper {
    display: flex;
    justify-content: flex-end;
}

.msn-button {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    background: white;
    color: #5b47db;
    border: none;
    border-radius: var(--msn-radius);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.msn-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(196, 181, 253, 0.3), transparent);
    transition: left 0.5s ease;
}

.msn-button:hover::before {
    left: 100%;
}

.msn-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    color: #4c3bc5;
}

.msn-button:active {
    transform: translateY(-1px) scale(0.98);
}

.msn-button svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
}

.msn-button:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .msn-container {
        flex-direction: column;
        text-align: center;
    }

    .msn-content {
        flex-direction: column;
        width: 100%;
    }

    .msn-button-wrapper {
        width: 100%;
        justify-content: center;
        padding: 0 1rem;
    }

    .msn-button {
        width: 90%;
        max-width: 300px;
        justify-content: center;
    }

    .msn-banner::before {
        width: 100%;
        clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 70%);
    }
}
