.msn-banner {
    --msn-gradient-start: #f6f7f9;
    --msn-gradient-end: #ffffff;
    --msn-accent: #ff0000;
    --msn-text: #0c0c0e;
    --msn-radius: 12px;
    --msn-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);

    background: linear-gradient(135deg, var(--msn-gradient-start), var(--msn-gradient-end));
    padding: 1.5rem;
    border-radius: var(--msn-radius);
    box-shadow: var(--msn-shadow);
    font-family: 'Inter', sans-serif;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.msn-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 0, 0, 0.15));
    clip-path: polygon(100% 0, 100% 100%, 0 100%, 30% 0);
}

.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: var(--msn-accent);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2);
}

.msn-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

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

.msn-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #0c0c0e, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.msn-text p {
    font-size: 1rem;
    margin: 0.5rem 0 0 0;
    color: #666;
    line-height: 1.5;
}

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

.msn-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: var(--msn-accent);
    color: white;
    border: none;
    border-radius: var(--msn-radius);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.msn-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 0, 0, 0.25);
}

.msn-button svg {
    width: 1.25rem;
    height: 1.25rem;
}

@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%);
    }
}
