#parallax-section{
    position:relative;
    min-height:520px;
    display:flex;
    align-items:center;

    background-position:left center;
    background-repeat:no-repeat;
    background-size:contain;

    background-color:#0a0a0a;

    overflow:hidden;
}

/* GRADIENT FADE DESNO */

#parallax-section::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    width:65%;
    height:100%;

    background:linear-gradient(
        to right,
        rgba(10,10,10,0) 0%,
        rgba(10,10,10,0.6) 35%,
        rgba(10,10,10,0.85) 60%,
        #0a0a0a 100%
        );

    pointer-events:none;
}

.mssport-promo-content {
    position: relative;
    z-index: 3;
    max-width: 50%;
    margin-left: auto;
    padding: 60px 0;
    color: #f5f5f5;
}

.mssport-promo-kicker {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 10px;
    background: rgba(193, 18, 31, 0.14);
    border: 1px solid rgba(193, 18, 31, 0.35);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.mssport-promo-title {
    margin: 0 0 18px;
    color: #ffffff !important;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.02;
    font-weight: 700;
    text-transform: uppercase;
}

.mssport-promo-text {
    margin: 0 0 16px;
    color: rgba(245, 245, 245, 0.9);
    font-size: 19px;
    line-height: 1.55;
    font-weight: 500;
}

.mssport-promo-text strong {
    color: #ffffff;
    font-weight: 700;
}

.mssport-promo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

.mssport-promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    min-height: 54px;
    padding: 14px 26px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    transition: all 0.28s ease;
}

.mssport-promo-btn--primary {
    background: #c1121f;
    border: 1px solid #c1121f;
    color: #fff;
}

.mssport-promo-btn--primary:hover {
    background: #e11d2e;
    border-color: #e11d2e;
    color: #fff;
    transform: translateY(-2px);
}

.mssport-promo-btn--ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    color: #fff;
}

.mssport-promo-btn--ghost:hover {
    background: #fff;
    border-color: #fff;
    color: #0a0a0a;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .mssport-promo-content {
        max-width: 540px;
    }

    .mssport-promo-text {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .mssport-promo-content {
        max-width: 100%;
        margin-left: 0;
        padding: 30px 0;
    }

    .mssport-promo-title {
        font-size: 30px;
    }

    .mssport-promo-text {
        font-size: 16px;
        line-height: 1.5;
    }

    .mssport-promo-actions {
        flex-direction: column;
    }

    .mssport-promo-btn {
        width: 100%;
        min-width: 100%;
    }
}