		.client-download-wrapper {
            height: calc(100vh - 70px);
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .client-download {
            flex: 1;
            background-repeat: no-repeat;
            background-size: contain;
            width: 100%;
            padding-top: 75px;
        }

        .client-header {
            text-align: center;
            margin-bottom: 60px;
            color: black;
        }

        .client-title {
            font-size: 45px;
            font-weight: 500;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        .client-subtitle {
            font-size: 16px;
            font-weight: 400;
            color: rgba(84, 93, 125, 1);
        }

        .download-container {
            display: flex;
            gap: 40px;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
        }

        .download-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 340px;
            height: 340px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 24px;
            text-align: center;
            position: relative;
            border: 1px solid rgba(217, 217, 217, 1);
        }

        .download-card:hover {
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .download-card:hover:not(.no-hover-hide) .windows-icon,
        .download-card:hover:not(.no-hover-hide) .mac-icon,
        .download-card:hover:not(.no-hover-hide) .applet-icon {
            display: none;
        }

        .download-card:hover:not(.no-hover-hide) .win-platform-name,
        .download-card:hover:not(.no-hover-hide) .mac-platform-name,
        .download-card:hover:not(.no-hover-hide) .applet-platform-name {
            display: none;
        }

        .download-card:hover:not(.no-hover-hide) .win-download-options {
            display: block;

        }

        .download-card:hover:not(.no-hover-hide) .mac-download-options {
            display: block;

        }

        .windows-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 130px;
            height: 130px;
            margin-top: 68px;
        }

        .mac-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 63px;
        }

        .applet-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 54px;
        }

        .windows-icon img {
            width: 130px;
            height: 130px;
        }

        .mac-icon img {
            width: 117px;
            height: 144px;
        }

        .applet-icon img {
            width: 178px;
            height: 178px;
        }


        .win-platform-name,
        .mac-platform-name,
        .applet-platform-name {
            font-size: 24px;
        }

        .win-platform-name {
            margin-top: 50px;
        }

        .mac-platform-name {
            margin-top: 41px;
        }

        .applet-platform-name {
            margin-top: 17px;
        }


        .win-download-options {
            display: none;
            margin-top: 64px;
            width: 100%;
        }

        .mac-download-options {
            display: none;
            margin-top: 107px;
            width: 100%;
            text-decoration: none;
            color: black;
        }

        .download-btn-32,
        .download-btn-64 {
            display: flex;
            height: 45px;
            width: 90px;
            align-items: center;
            justify-content: center;
            position: relative;
            border: 1px solid transparent;
            border-radius: 8px;
            background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(to bottom, #4D69F9, #A294FC) border-box;
            cursor: pointer;
            background-origin: border-box;
            background-clip: padding-box, border-box;
            text-decoration: none;
        }

        .download-btn-32 span,
        .download-btn-64 span {
            background: linear-gradient(to bottom, #4D69F9, #A294FC);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-size: 18px;
        }

        .download-btn-64:hover {
            background: linear-gradient(to bottom, #4D69F9, #A294FC);
            text-decoration: none;
        }

        .download-btn-64:hover span {
            color: white;
        }

        .download-btn-32:hover {
            background: linear-gradient(to bottom, #4D69F9, #A294FC);
            text-decoration: none;
        }

        .download-btn-32:hover span {
            color: white;
        }

        .download-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .download-icon img {
            width: 70px;
            height: 70px;
        }

        .win-download-title {
            font-size: 20px;
            margin-top: 30px;
            margin-bottom: 25px;
        }

        .mac-download-title {
            font-size: 20px;
            margin-top: 30px;
            margin-bottom: 25px;
        }

        .win-download-way {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
        }

        .client-download-footer {
            width: 100%;
            background: rgba(216, 216, 216, 0.1);
            height: 63px;
            line-height: 63px;
            text-align: center;
            font-size: 14px;
            color: rgba(143, 155, 194, 1);
            font-weight: 400;
        }