#links ul li a {
    color: black;
}

.toplead {
    direction: rtl;
    line-height: 2rem;


}

.toplead h1 {
    font-size: 4rem;
    float: right;
    line-height: 5rem;
    font-weight: 900;
    text-shadow: 0px 0px 4px white;
    max-width: 900px;
}

.toplead h3 {
    color: #d8d8d8;
}

.toplead>* {
    margin-block: 20px;
    color: #f5f5f5;
}









.topleadcont {
    position: relative;
}

.topleadbannercont {
    position: relative;

    border-radius: 4px;

    /* Maintains a 16:9 aspect ratio */
    overflow: hidden;
    background-color: whitesmoke;
    width: 100%;
    height: 400px;

}

.topleadbannercont img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* key element */
.toplead {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(54, 54, 54, 0.8);
    padding: 1rem;
    height: 100%;
}

.searchcont {
    width: 100%;
}





.app-dl-links-cont {
    overflow: hidden;
    width: min(140ch, 100%);
}

.slider-track {
    display: flex;
    gap: 20px;
    white-space: nowrap;
    direction: ltr;
    align-items: center;
    padding: 1rem;
}

.app-dl-links-cont img {
    width: 150px;
    object-fit: contain;
    user-select: none;
    pointer-events: auto;
    filter: grayscale(100%);
    transition: transform 0.3s ease, filter 0.3s ease, box-shadow 0.3s ease;
    opacity: 0.8;
    position: relative;
    cursor: pointer;
}

/* Hover effect with stronger shine */
.app-dl-links-cont img:hover {
    filter: grayscale(0%);
    transform: scale(1.15);
    opacity: 1;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.9),
        0 0 60px rgba(255, 255, 255, 0.6),
        0 0 90px rgba(255, 255, 255, 0.4);
}

/* Optional: animated shine overlay using pseudo-element */
.app-dl-links-cont img:hover::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.0) 0%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0.0) 100%);
    transform: rotate(25deg);
    animation: shine 1s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(25deg);
    }

    100% {
        transform: translateX(100%) rotate(25deg);
    }
}





.app-dl-container .muckup-cont {
    display: flex;
    justify-content: center;
}

.app-dl-container .muckup-cont img {
    inline-size: 300px;
}

/* Responsive behavior */
@media (max-width: 768px) {
    .app-dl-container {
        display: flex;
        flex-direction: column;
    }
}


/* Use a media query or container-query approach to override centering */
@media (min-height: 600px) {
    .toplead {
        justify-content: center;
    }
}

@media (max-height: 599px) {
    .toplead {
        justify-content: flex-start;
    }
}




@media only screen and (max-width: 768px) {}

/* Media query for phones */
@media only screen and (max-width: 768px) {

    /* Styles for phones */
    /* Add your styles here */
    .callactioninner,
    .lead {
        display: grid;
    }

    .toplead {
        padding: 1rem;
    }

    .toplead h1 {
        line-height: 2.6rem;
        font-size: 1.7rem;
    }

    .toplead h3 {
        line-height: 2.2rem;
    }



}