.mh-84875202-container {
    position: relative;
    padding: 30px 40px;
    background: #050508;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
    font-family: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
    box-sizing: border-box;
    overflow: hidden;
    margin: 20px auto;
    max-width: 1000px;
}

/* Beautiful gradient border using a pseudo-element with dynamic CSS custom properties */
.mh-84875202-container::before {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    border-radius: 12px;
    padding: 1.5px; /* Border thickness */
    background: linear-gradient(90deg, var(--mh-left-color, #ff0d1a) 0%, var(--mh-right-color, #0d5bff) 100%);
    -webkit-mask: 
       linear-gradient(#fff 0 0) content-box, 
       linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

/* Title wrapper with lines on side */
.mh-84875202-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.mh-84875202-line {
    flex-grow: 1;
    height: 1.5px;
    max-width: 150px;
}

.mh-84875202-line-left {
    background: linear-gradient(90deg, transparent, var(--mh-left-color, #ff0d1a));
}

.mh-84875202-line-right {
    background: linear-gradient(90deg, var(--mh-right-color, #0d5bff), transparent);
}

.mh-84875202-title {
    font-size: 28px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    color: #ffffff;
    white-space: nowrap;
}

.mh-84875202-description {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mh-84875202-description strong,
.mh-84875202-description b {
    color: var(--mh-left-color, #ff0d1a);
    font-weight: bold;
}
