/* iTV Uganda official app homepage entry — v1.0.0 */
body.itv-theme .itv-app-download-cta {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 20px;
    color: #ffffff;
    border: 1px solid rgba(115, 216, 255, 0.42);
    background:
        linear-gradient(135deg, rgba(14, 112, 226, 0.98), rgba(2, 54, 145, 0.98));
    box-shadow:
        0 15px 34px rgba(0, 32, 100, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
    overflow: hidden;
}

body.itv-theme .itv-app-download-cta::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -120%;
    left: -35%;
    width: 32%;
    height: 340%;
    transform: rotate(24deg);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), transparent);
    animation: itvAppButtonSheen 4.2s ease-in-out infinite;
}

body.itv-theme .itv-app-download-cta:hover {
    color: #ffffff;
    transform: translateY(-2px);
    border-color: rgba(151, 231, 255, 0.72);
    box-shadow:
        0 20px 42px rgba(0, 32, 100, 0.42),
        0 0 0 1px rgba(85, 192, 255, 0.16);
}

body.itv-theme .itv-app-download-arrow {
    display: inline-grid;
    place-items: center;
    width: 27px;
    height: 27px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
    font-size: 1rem;
    line-height: 1;
}

body.itv-theme .itv-app-download-cta small {
    display: inline-flex;
    align-items: center;
    min-height: 23px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
    color: #dff5ff;
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

body.itv-theme .mobile-panel .itv-mobile-app-link {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #ffffff;
    background: linear-gradient(135deg, #0d75e5, #063a9e);
    border: 1px solid rgba(111, 209, 255, 0.35);
    font-weight: 900;
}

body.itv-theme .mobile-panel .itv-mobile-app-link span {
    display: inline-grid;
    place-items: center;
    width: 25px;
    height: 25px;
    border-radius: 9px;
    background: rgba(255,255,255,.14);
}

@keyframes itvAppButtonSheen {
    0%, 56% { left: -35%; opacity: 0; }
    64% { opacity: 1; }
    78% { left: 115%; opacity: 0; }
    100% { left: 115%; opacity: 0; }
}

@media (max-width: 760px) {
    body.itv-theme .itv-hero .cluster {
        align-items: stretch;
    }

    body.itv-theme .itv-hero .cluster > .btn,
    body.itv-theme .itv-hero .cluster > button {
        width: 100%;
        min-height: 50px;
    }

    body.itv-theme .itv-app-download-cta small {
        margin-left: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.itv-theme .itv-app-download-cta::before {
        animation: none;
    }
}