.sports-promo-section {
    padding: 100px 0;
    background: #0F172A;
    overflow: visible;
}

.promo-visual-collage {
    position: relative;
    padding: 0;
    display: flex;
    justify-content: center;
}

.collage-main {
    width: 100%;
    position: relative;
    z-index: 1;
}

.collage-main img {
    width: 100%;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.floating-logo {
    position: absolute;
    z-index: 2;
    background: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-top-right {
    top: 0;
    right: 15%;
    background: #ff4500; /* Fubo Orange */
    padding: 15px;
}

.logo-bottom-left {
    bottom: 20px;
    left: 5%;
    background: #003366; /* Fox Blue */
    padding: 15px;
}

.logo-bottom-right {
    bottom: -10px;
    right: 10%;
    background: white;
    padding: 15px;
}

.promo-content {
    padding-left: 20px;
}

.promo-title-small {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.4;
    text-transform: none; /* Normal casing */
}

.promo-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
}

.league-logos-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: center;
}

.league-logo {
    height: 45px;
    opacity: 0.9;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.league-logo:hover {
    transform: scale(1.1);
}

.btn-promo-yellow {
    display: inline-block;
    background: #ffc107;
    color: #0b0e14;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
}

.btn-promo-yellow:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 193, 7, 0.4);
    background: #ffdb4d;
    color: #0b0e14;
}

@media (max-width: 991px) {
    .promo-content {
        padding-left: 0;
        margin-top: 80px;
        text-align: center;
    }
    .league-logos-row {
        justify-content: center;
    }
    .promo-title {
        font-size: 2rem;
    }
    .collage-main {
        width: 100%;
    }
}
