.rtr-download-shortcode-wrap {
    text-align: center;
    margin: 20px 0;
}

.rtr-download-shortcode-btn {
    display: inline-block;
    padding: 16px 28px;
    border-radius: 12px;
    background: #FFBA00;
    color: #111111 !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.rtr-download-shortcode-btn:hover {
    background: #e5a700;
    color: #111111;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.rtr-download-shortcode-btn:focus {
    outline: none;
    color: #111111;
}

.rtr-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    margin: 0;
    background: #f5f7fb;
    color: #1f2937;
    font-family: Arial, sans-serif;
}

.rtr-box {
    width: 100%;
    max-width: 560px;
    text-align: center;
}

.rtr-logo {
    margin-bottom: 22px;
}

.rtr-logo img {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: inline-block;
}

.rtr-card {
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    padding: 36px 28px;
    text-align: center;
    box-sizing: border-box;
}

.rtr-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #fff4cc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.rtr-title {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.2;
    color: #111827;
}

.rtr-text {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
}

.rtr-actions {
    margin-top: 28px;
}

.rtr-btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 10px;
    background: #FFBA00;
    color: #111111;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
}

.rtr-btn:hover {
    background: #e5a700;
    color: #111111;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.rtr-note {
    margin-top: 18px;
    font-size: 13px;
    color: #9ca3af;
}

@media (max-width: 640px) {
    .rtr-download-shortcode-btn {
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    .rtr-card {
        padding: 28px 20px;
        border-radius: 14px;
    }

    .rtr-title {
        font-size: 24px;
    }

    .rtr-text {
        font-size: 15px;
    }

    .rtr-btn {
        width: 100%;
        box-sizing: border-box;
    }

    .rtr-logo img {
        max-width: 190px;
    }
}