.btn-download {
            outline: none;
            border: none;
            color: #fff;
            display: flex;
            cursor: pointer;
            padding: 16px 25px;
            border-radius: 8px;
            align-items: center;
			margin-left:50px;
			margin-top:20px;
            white-space: nowrap;
            background: #6C63FF; /* New color */
            transition: all 0.3s ease; /* Slightly slower transition */
        }
        .btn-download:hover {
            background: #5A54D6; /* Darker shade on hover */
        }
        .btn-download.timer-active {
            color: #000;
            background: none;
            transition: none;
            font-size: 1.6rem;
            pointer-events: none;
        }
        .btn-download.timer-active b {
            color: #6C63FF; /* New color for timer text */
            padding: 0 8px;
        }
        .btn-download .icon {
            font-size: 2rem;
        }
        .btn-download .text {
            font-size: 1.5rem;
            padding-left: 10px;
        }