.dr1056installapp {
    transition: all 0.3s ease;
    text-align: center;
}

/* ✅ hide entire container when not needed */
.dr1056installapp.hide {
    opacity: 0;
    height: 0;
    overflow: hidden;
}

/* Wrapper */
.dr1056installapp .installbtnwrapperdr1056 {
    display: none;
    justify-content: center;
    align-items: center;

    margin: 6px auto 10px;
    width: fit-content;

    opacity: 0;
    transform: translateY(-6px);
    transition: all 0.4s ease;
}

/* ✨ SHOW STATE */
.dr1056installapp .installbtnwrapperdr1056.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    animation: floatBtn 3s ease-in-out infinite;
}

/* ✨ BUTTON */
.dr1056installapp .installbtndr1056 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    background: linear-gradient(135deg, #6b4226, #8b5a2b);
    color: #fff8f0;

    font-size: 13px;
    font-weight: 600;

    padding: 6px 14px;
    border-radius: 999px;

    border: 1px solid rgba(255,255,255,0.15);

    cursor: pointer;

    box-shadow:
        0 6px 16px rgba(0,0,0,0.25),
        0 2px 6px rgba(94, 58, 28, 0.3);

    transition: all 0.25s ease;

    position: relative;
    overflow: hidden;

    backdrop-filter: blur(6px);
}

/* ICON */
.dr1056installapp .installbtndr1056::before {
    content: "⬇️";
    font-size: 12px;
}

/* SHINE */
.dr1056installapp .installbtndr1056::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.5s ease;
}

.dr1056installapp .installbtndr1056:hover::after {
    left: 120%;
}

/* HOVER */
.dr1056installapp .installbtndr1056:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow:
        0 10px 24px rgba(0,0,0,0.35),
        0 4px 10px rgba(94, 58, 28, 0.4);
}

/* CLICK */
.dr1056installapp .installbtndr1056:active {
    transform: scale(0.95);
}

/* FLOAT */
@keyframes floatBtn {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* MOBILE */
@media (max-width: 600px) {
    .dr1056installapp .installbtnwrapperdr1056 {
        margin: 4px auto 8px;
    }

    .dr1056installapp .installbtndr1056 {
        font-size: 12px;
        padding: 5px 12px;
    }
}