.whitoo-download-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 28px;
    align-items: center;
    overflow: hidden;
    margin: 26px 0 28px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background:
        radial-gradient(circle at 8% 12%, rgba(36, 201, 255, 0.22), transparent 30%),
        linear-gradient(135deg, rgba(9, 18, 43, 0.96), rgba(21, 31, 66, 0.94));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
    isolation: isolate;
}

.whitoo-download-glow {
    position: absolute;
    inset: auto -80px -120px auto;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: rgba(255, 207, 24, 0.22);
    filter: blur(28px);
    z-index: -1;
}

.whitoo-download-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 7px 11px;
    border: 1px solid rgba(34, 211, 238, 0.28);
    border-radius: 999px;
    color: #69f5ff;
    background: rgba(8, 19, 44, 0.58);
    font-size: 12px;
    font-weight: 700;
}

.whitoo-download-content h2 {
    margin: 0;
    color: #fff;
    font-size: 30px;
    line-height: 1.14;
    font-weight: 800;
}

.whitoo-download-content p {
    max-width: 640px;
    margin: 10px 0 0;
    color: rgba(235, 244, 255, 0.78);
    font-size: 15px;
    line-height: 1.65;
}

.whitoo-download-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.whitoo-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.whitoo-download-btn:hover {
    color: #fff;
    border-color: rgba(105, 245, 255, 0.46);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.whitoo-download-btn-primary {
    background: linear-gradient(135deg, #1685ff, #16d6c5);
    border-color: rgba(255, 255, 255, 0.22);
    box-shadow: 0 16px 34px rgba(22, 133, 255, 0.24);
}

.whitoo-download-btn i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.18);
    font-size: 23px;
}

.whitoo-download-btn strong,
.whitoo-download-btn small {
    display: block;
}

.whitoo-download-btn strong {
    font-size: 14px;
    line-height: 1.2;
}

.whitoo-download-btn small {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 11px;
}

.whitoo-download-device {
    position: relative;
    justify-self: center;
    width: 178px;
    height: 170px;
    animation: WhitooDeviceFloat 4.8s ease-in-out infinite;
}

.whitoo-device-top {
    position: absolute;
    top: 0;
    left: 77px;
    width: 38px;
    height: 62px;
    border-radius: 22px 22px 10px 10px;
    background: linear-gradient(180deg, #ffd926, #ff9f1c);
    transform: rotate(8deg);
    box-shadow: 0 0 0 8px #092c88;
}

.whitoo-device-face {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 126px;
    border-radius: 38px 38px 44px 44px;
    background: linear-gradient(145deg, #0642d4, #00c7ff);
    border: 8px solid #062b83;
    box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.16), 0 18px 38px rgba(0, 0, 0, 0.28);
}

.whitoo-device-face::before {
    content: "";
    position: absolute;
    inset: 28px 22px 24px;
    border-radius: 28px;
    background: #fff;
}

.whitoo-device-eyes {
    position: absolute;
    top: 56px;
    left: 48px;
    right: 48px;
    z-index: 1;
    display: flex;
    justify-content: space-between;
}

.whitoo-device-eyes span {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #06246f;
    box-shadow: inset -6px -8px 0 rgba(0, 0, 0, 0.08);
}

.whitoo-device-smile {
    position: absolute;
    left: 72px;
    top: 91px;
    z-index: 1;
    width: 36px;
    height: 16px;
    border-bottom: 5px solid #06246f;
    border-radius: 0 0 999px 999px;
}

.whitoo-device-tail {
    position: absolute;
    right: 10px;
    bottom: 1px;
    width: 54px;
    height: 54px;
    background: #062b83;
    clip-path: polygon(8% 0, 100% 100%, 0 70%);
}

@keyframes WhitooDeviceFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@media (max-width: 767px) {
    .whitoo-download-panel {
        grid-template-columns: 1fr;
        padding: 22px;
        border-radius: 20px;
    }

    .whitoo-download-content h2 {
        font-size: 24px;
    }

    .whitoo-download-btn {
        width: 100%;
        min-width: 0;
    }

    .whitoo-download-device {
        width: 138px;
        height: 132px;
        order: -1;
    }

    .whitoo-device-top {
        left: 60px;
        width: 30px;
        height: 48px;
    }

    .whitoo-device-face {
        height: 98px;
        border-width: 6px;
        border-radius: 30px;
    }

    .whitoo-device-eyes {
        top: 44px;
        left: 38px;
        right: 38px;
    }

    .whitoo-device-eyes span {
        width: 22px;
        height: 22px;
    }

    .whitoo-device-smile {
        left: 56px;
        top: 72px;
        width: 29px;
        height: 12px;
        border-bottom-width: 4px;
    }
}
