﻿.apk-download-container {
    background: #fff;
    border-radius: 10px;
}

.apk-info {
    flex: 1;
    padding: 20px;
}

    .apk-info h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .apk-info p {
        font-size: 16px;
        margin-bottom: 20px;
    }

.gradient-btn {
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(135deg, #43a047, #66bb6a, #81c784);
    color: #fff;
    margin-top: 20px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(67, 160, 71, 0.4);
    position: relative;
    overflow: hidden;
}

    /* Hover effect */
    .gradient-btn:hover {
        background: linear-gradient(135deg, #81c784, #66bb6a, #43a047);
        box-shadow: 0 6px 12px rgba(67, 160, 71, 0.6);
        transform: translateY(-2px);
    }

    /* Optional animation for a shimmer effect */
    .gradient-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -50%;
        width: 200%;
        height: 100%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.1));
        transform: skewX(-45deg);
        transition: 0.5s ease;
        z-index: 1;
    }

    .gradient-btn:hover::before {
        left: 100%;
    }

    .gradient-btn span {
        position: relative;
        z-index: 2;
    }
