.floating-offer-btn {
        position: fixed;
        bottom: 25px;
        right: 25px;
        width: 220px;

        background: rgba(189, 232, 248, 0.92);
        backdrop-filter: blur(6px);

        color: #2c2c2c;
        text-decoration: none;
        text-align: center;

        padding: 10px 12px;
        border-radius: 16px;

        font-family: Arial, sans-serif;

        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.20);
        z-index: 99999;

        transform: translateX(500px);
        animation: slideIn 1.8s ease-out 2s forwards;

        transition:
            bottom 0.12s ease-out,
            box-shadow 0.3s ease,
            transform 0.3s ease;
    }

    .floating-offer-btn:hover {
        transform: scale(1.03);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.30);
    }

    .floating-offer-btn strong {
        display: block;
        font-size: 15px;
        font-weight: 700;
        line-height: 1.15;
        margin-bottom: 4px;
    }

    .floating-offer-btn .subline {
        display: block;
        font-size: 9px;
        font-weight: 500;
        line-height: 1.3;
    }

    @keyframes slideIn {
        from {
            transform: translateX(500px);
        }

        to {
            transform: translateX(0);
        }
    }

    @media (max-width: 768px) {
        .floating-offer-btn {
            width: 190px;
            bottom: 15px;
            right: 10px;
            padding: 9px 10px;
        }

        .floating-offer-btn strong {
            font-size: 14px;
        }

        .floating-offer-btn .subline {
            font-size: 8px;
        }
    }
