/* Downloads — tela cheia */
.mu-dl-page {
    --mu-dl-gold: #d4af37;
    --mu-dl-blue: #7eb8e8;
    max-width: min(1200px, 100%);
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto 2.75rem;
}

.mu-dl-hero {
    text-align: center;
    margin: 0.35rem 0 1.4rem;
    padding: clamp(1.35rem, 3vw, 2rem) 1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background:
        radial-gradient(ellipse 70% 80% at 50% -10%, rgba(91, 159, 212, 0.18), transparent 55%),
        linear-gradient(180deg, rgba(14, 20, 34, 0.78), rgba(8, 12, 22, 0.55));
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.mu-dl-hero__eyebrow {
    margin: 0 0 0.4rem;
    font-family: Cinzel, Georgia, var(--mu-font-display), serif;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mu-dl-gold);
}

.mu-dl-hero__title {
    margin: 0;
    font-family: Cinzel, Georgia, var(--mu-font-display), serif;
    font-size: clamp(1.7rem, 3.8vw, 2.4rem);
    color: #fff;
}

.mu-dl-hero__desc {
    margin: 0.55rem auto 0;
    max-width: 44ch;
    color: var(--mu-text-secondary, #9aa8b8);
    font-size: 0.95rem;
}

.mu-dl-hero__desc strong { color: #e8ecf1; }

.mu-dl-featured {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.1rem;
    align-items: center;
    margin: 0 0 1.25rem;
    padding: 1.35rem 1.4rem;
    border-radius: 18px;
    border: 1px solid rgba(126, 184, 232, 0.28);
    background:
        linear-gradient(135deg, rgba(18, 36, 58, 0.92), rgba(8, 14, 26, 0.95));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.mu-dl-featured__glow {
    display: none;
}

.mu-dl-featured__icon {
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--mu-dl-blue);
}

.mu-dl-featured__icon svg { width: 36px; height: 36px; }
.mu-dl-featured__icon.is-launcher {
    padding: 0;
    width: 80px;
    height: 80px;
    border-radius: 16px;
}
.mu-dl-featured__icon.is-launcher img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
}

.mu-dl-featured__body {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.mu-dl-featured__tag {
    display: inline-block;
    margin-bottom: 0.35rem;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mu-dl-gold);
}

.mu-dl-featured__body h2 {
    margin: 0;
    font-family: Cinzel, Georgia, var(--mu-font-display), serif;
    font-size: 1.35rem;
    color: #fff;
}

.mu-dl-featured__body p {
    margin: 0.35rem 0 0;
    color: var(--mu-text-secondary, #9aa8b8);
    font-size: 0.92rem;
}

.mu-dl-featured__body small {
    display: block;
    margin-top: 0.35rem;
    color: rgba(150, 165, 185, 0.75);
    font-size: 0.75rem;
}

.mu-dl-featured__btn {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.35rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #7eb8e8, #5b9fd4);
    color: #071018;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.03em;
    box-shadow: 0 10px 28px rgba(91, 159, 212, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    white-space: nowrap;
}

.mu-dl-featured__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(91, 159, 212, 0.45);
}

.mu-dl-grid {
    display: grid;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}

.mu-dl-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.9rem;
    align-items: center;
    padding: 1rem 1.1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(10, 16, 28, 0.74);
}

.mu-dl-card__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(91, 159, 212, 0.12);
    color: var(--mu-dl-blue);
}

.mu-dl-card__icon svg { width: 22px; height: 22px; }
.mu-dl-card__icon.is-launcher {
    overflow: hidden;
    box-sizing: border-box;
    padding: 0;
}
.mu-dl-card__icon.is-launcher img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center;
}

.mu-dl-card__info h3 {
    margin: 0;
    color: #fff;
    font-size: 1rem;
}

.mu-dl-card__info p {
    margin: 0.25rem 0 0;
    color: var(--mu-text-secondary, #9aa8b8);
    font-size: 0.86rem;
}

.mu-dl-card__info small {
    display: block;
    margin-top: 0.25rem;
    color: rgba(150, 165, 185, 0.7);
    font-size: 0.72rem;
}

.mu-dl-card__btn {
    padding: 0.55rem 0.95rem;
    border-radius: 10px;
    border: 1px solid rgba(126, 184, 232, 0.35);
    color: var(--mu-dl-blue);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s;
}

.mu-dl-card__btn:hover {
    background: rgba(91, 159, 212, 0.18);
    color: #fff;
}

.mu-dl-reqs {
    padding: 1.35rem 1.25rem 1.45rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(10, 16, 28, 0.7);
}

.mu-dl-reqs__head {
    text-align: center;
    margin-bottom: 1rem;
}

.mu-dl-reqs__head p {
    margin: 0 0 0.3rem;
    font-family: Cinzel, Georgia, var(--mu-font-display), serif;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mu-dl-gold);
}

.mu-dl-reqs__head h2 {
    margin: 0;
    font-family: Cinzel, Georgia, var(--mu-font-display), serif;
    color: #fff;
    font-size: 1.35rem;
}

.mu-dl-reqs__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}

.mu-dl-reqs__col {
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.22);
}

.mu-dl-reqs__col--best {
    border-color: rgba(126, 184, 232, 0.28);
    background: rgba(91, 159, 212, 0.08);
}

.mu-dl-reqs__col h3 {
    margin: 0 0 0.65rem;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mu-dl-blue);
}

.mu-dl-reqs__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.mu-dl-reqs__col li {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.86rem;
}

.mu-dl-reqs__col li span { color: rgba(150, 165, 185, 0.75); }
.mu-dl-reqs__col li strong { color: #e8ecf1; font-weight: 600; }

.mu-dl-reqs__tip {
    margin: 1rem 0 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(160, 175, 195, 0.75);
}

@media (max-width: 720px) {
    .mu-dl-featured {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .mu-dl-card {
        grid-template-columns: auto 1fr;
    }

    .mu-dl-card__btn {
        grid-column: 1 / -1;
        text-align: center;
        justify-content: center;
    }

    .mu-dl-reqs__grid {
        grid-template-columns: 1fr;
    }
}
