:root {
    --app-orange: #ff512f;
    --app-orange-2: #ff7a1a;
    --app-bg: #f4f6fa;
    --app-text: #17233b;
    --app-muted: #8a96aa;
    --app-border: #edf1f7;
    --app-shadow: 0 16px 38px rgba(28, 39, 64, .08);
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body.app-mobile-shell {
    margin: 0;
    background: var(--app-bg);
    color: var(--app-text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.app-mobile-frame {
    min-height: 100vh;
    padding-bottom: calc(126px + env(safe-area-inset-bottom));
}
.app-mobile-header {
    position: sticky;
    top: 0;
    z-index: 40;
    min-height: calc(58px + env(safe-area-inset-top));
    padding: calc(9px + env(safe-area-inset-top)) 12px 9px;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-bottom: 1px solid #edf1f7;
    box-shadow: 0 4px 18px rgba(20, 31, 54, .045);
}
.app-mobile-menu,
.app-mobile-bell {
    width: 40px;
    height: 40px;
    border: 1px solid #ffe0d5;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--app-orange);
    background: #fff4ef;
    position: relative;
    font-size: 19px;
}
.app-mobile-bell span {
    position: absolute;
    right: -5px;
    top: -5px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--app-orange);
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(255, 90, 61, .3);
}
.app-mobile-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}
.app-mobile-brand img {
    max-width: 168px;
    max-height: 40px;
    object-fit: contain;
}
.app-mobile-content {
    width: min(100%, 560px);
    margin: 0 auto;
    padding: 16px 14px 46px;
}
.app-card,
.app-user-card,
.app-balance-card {
    border: 1px solid var(--app-border);
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--app-shadow);
}
.app-user-card {
    display: grid;
    grid-template-columns: 76px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 18px;
    background: linear-gradient(180deg, #f1fff7, #fff);
    border-color: #c9f3d9;
}
.app-user-card-large { grid-template-columns: 86px 1fr; }
.app-user-card img {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 10px 24px rgba(30, 47, 76, .12);
}
.app-user-card p,
.app-user-card h1,
.app-user-card span { margin: 0; display: block; }
.app-user-card p { color: var(--app-muted); font-weight: 800; font-size: 13px; }
.app-user-card h1 { margin-top: 3px; font-size: 24px; font-weight: 950; line-height: 1.12; }
.app-user-card span { margin-top: 5px; color: #7c879a; font-size: 14px; font-weight: 800; word-break: break-word; }
.app-user-card em {
    align-self: start;
    padding: 7px 10px;
    border-radius: 999px;
    background: #fff2d8;
    color: #f59b00;
    font-size: 12px;
    font-style: normal;
    font-weight: 950;
}
.app-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 12px 0;
}
.app-stats-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.app-stat {
    min-width: 0;
    padding: 14px 10px;
    border: 1px solid var(--app-border);
    border-radius: 20px;
    background: #fff;
    text-align: center;
}
.app-stat span {
    display: block;
    color: var(--app-muted);
    font-size: 12px;
    font-weight: 950;
}
.app-stat strong {
    display: block;
    margin-top: 7px;
    color: var(--app-text);
    font-size: 16px;
    font-weight: 950;
    line-height: 1.15;
}
.app-balance-card {
    margin: 14px 0;
    padding: 24px 20px;
    color: #fff;
    background: linear-gradient(135deg, var(--app-orange), var(--app-orange-2));
    border: 0;
}
.app-balance-card.compact { margin-top: 0; }
.app-balance-card span {
    display: block;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 950;
    opacity: .88;
}
.app-balance-card strong {
    display: block;
    margin-top: 8px;
    font-size: 42px;
    font-weight: 950;
    line-height: 1;
}
.app-balance-card div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}
.app-balance-card a {
    min-height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255,255,255,.18);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 950;
}
.app-balance-card a:last-child {
    background: #fff;
    color: var(--app-orange);
}
.app-card {
    margin-top: 14px;
    padding: 18px;
}
.app-section-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.app-section-title span,
.app-section-title strong {
    display: block;
}
.app-section-title span {
    color: var(--app-muted);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}
.app-section-title strong {
    margin-top: 4px;
    color: var(--app-text);
    font-size: 17px;
    font-weight: 950;
    line-height: 1.2;
}
.app-section-title a,
.app-section-title em {
    color: var(--app-orange);
    font-size: 13px;
    font-style: normal;
    font-weight: 950;
    text-decoration: none;
    white-space: nowrap;
}
.app-paste-card form { display: grid; gap: 12px; }
.app-paste-card label {
    min-height: 58px;
    display: grid;
    grid-template-columns: 28px 1fr;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0 16px;
    border: 1px solid #dfe6f1;
    border-radius: 18px;
    color: #9aa6b9;
    background: #f8fafd;
}
.app-paste-card input {
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--app-text);
    font-size: 15px;
    font-weight: 850;
}
.app-paste-card button,
.app-btn {
    min-height: 54px;
    border: 0;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    background: linear-gradient(90deg, var(--app-orange), var(--app-orange-2));
    font-size: 15px;
    font-weight: 950;
    text-decoration: none;
}
.app-btn-light {
    color: var(--app-text);
    background: #fff;
    border: 1px solid var(--app-border);
}
.app-copy-box {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
    padding: 10px;
    border-radius: 18px;
    background: #fff7f2;
    border: 1px solid #ffe0d3;
}
.app-copy-box span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #5b6578;
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
}
.app-copy-box button,
.app-push-card button {
    min-height: 40px;
    border: 0;
    border-radius: 14px;
    padding: 0 12px;
    color: #fff;
    background: var(--app-orange);
    font-size: 13px;
    font-weight: 950;
}
.app-utility-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}
.app-utility-grid a {
    min-width: 0;
    display: grid;
    gap: 8px;
    place-items: center;
    text-align: center;
    text-decoration: none;
    color: #4d5b72;
    font-size: 12px;
    font-weight: 900;
}
.app-utility-grid i {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--app-orange);
    background: #fff0eb;
    font-size: 21px;
}
.app-mini-list,
.app-menu-list,
.app-notification-list { display: grid; gap: 0; }
.app-mini-list > a,
.app-menu-list > a,
.app-notification-item {
    min-height: 58px;
    display: grid;
    grid-template-columns: 34px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 12px 0;
    color: var(--app-text);
    text-decoration: none;
    border-top: 1px solid var(--app-border);
    font-weight: 900;
}
.app-mini-list > a:first-of-type,
.app-menu-list > a:first-of-type,
.app-notification-item:first-of-type { border-top: 0; }
.app-mini-list i,
.app-menu-list i,
.app-notification-item i {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--app-orange);
    background: #fff2ed;
}
.app-mini-list b,
.app-menu-list b {
    color: #a0a9b8;
    font-size: 13px;
}
.app-page-head {
    padding: 2px 2px 12px;
}
.app-page-head h1 {
    margin: 0;
    font-size: 28px;
    line-height: 1.1;
    font-weight: 950;
}
.app-page-head p {
    margin: 7px 0 0;
    color: var(--app-muted);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.45;
}
.app-rank-card,
.app-push-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
}
.app-rank-card > i {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #28a96b;
    background: #eafff4;
    font-size: 22px;
}
.app-rank-card span,
.app-rank-card strong,
.app-rank-card p,
.app-push-card span,
.app-push-card strong { display: block; margin: 0; }
.app-rank-card span,
.app-push-card span { color: var(--app-muted); font-size: 12px; font-weight: 950; text-transform: uppercase; }
.app-rank-card strong,
.app-push-card strong { margin-top: 4px; color: var(--app-text); font-size: 18px; font-weight: 950; }
.app-rank-card p { margin-top: 5px; color: #7d8798; font-size: 13px; font-weight: 750; line-height: 1.4; }
.app-push-card { grid-template-columns: 1fr auto; }
.app-shop-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.app-shop-grid a {
    min-height: 108px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 9px;
    color: #fff;
    text-decoration: none;
    font-weight: 950;
}
.app-shop-grid i { font-size: 30px; }
.app-shop-grid .shopee { background: linear-gradient(135deg, #ff6a3d, #ff9057); }
.app-shop-grid .lazada { background: linear-gradient(135deg, #31a3ff, #3458ff); }
.app-shop-grid .tiktok { background: linear-gradient(135deg, #111827, #3b1b2c); }
.app-steps { display: grid; gap: 12px; }
.app-steps > div:not(.app-section-title) {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 10px;
    align-items: center;
}
.app-steps b {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--app-orange);
}
.app-notification-item span { min-width: 0; display: grid; gap: 4px; }
.app-notification-item strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.app-notification-item em {
    overflow: hidden;
    color: var(--app-muted);
    font-size: 12px;
    font-style: normal;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.app-empty {
    padding: 18px;
    border-radius: 18px;
    color: var(--app-muted);
    background: #f8fafd;
    text-align: center;
    font-weight: 850;
}
.app-welcome {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0;
}
.app-welcome-card {
    width: min(100%, 460px);
    text-align: center;
}
.app-welcome-logo img {
    max-width: 190px;
    max-height: 70px;
    object-fit: contain;
}
.app-welcome h1 {
    margin: 18px 0 0;
    font-size: 28px;
    line-height: 1.14;
    font-weight: 950;
}
.app-welcome p {
    margin: 12px 0 20px;
    color: var(--app-muted);
    font-weight: 800;
    line-height: 1.55;
}
.app-feature-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 16px;
}
.app-feature-row span {
    padding: 12px 8px;
    border-radius: 16px;
    color: #5f6c81;
    background: #f8fafd;
    font-size: 12px;
    font-weight: 950;
}
.app-feature-row i { display: block; margin-bottom: 6px; color: var(--app-orange); font-size: 20px; }
.app-welcome .app-btn { width: 100%; margin-top: 10px; }
.app-welcome-register {
    margin-top: 16px;
    color: var(--app-muted);
    font-size: 13px;
    font-weight: 800;
}
.app-welcome-register a { color: var(--app-orange); font-weight: 950; text-decoration: none; }
.cashback-bottom-nav,
.app-mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    min-height: 64px;
    padding: 6px max(8px, env(safe-area-inset-left)) calc(6px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid #edf1f7;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 -12px 30px rgba(20, 31, 54, .12);
    font-family: Inter, Arial, sans-serif;
}
.cashback-bottom-nav a,
.app-mobile-bottom-nav a {
    min-width: 0;
    min-height: 48px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #58677d;
    text-decoration: none;
    font-size: 10.5px;
    line-height: 1.2;
    font-weight: 900;
}
.cashback-bottom-nav a i,
.app-mobile-bottom-nav a i {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    color: #68778d;
    background: #f5f7fa;
    font-size: 14px;
}
.cashback-bottom-nav a.active,
.app-mobile-bottom-nav a.is-active {
    color: #ff4f26;
    background: #fff1eb;
}
.cashback-bottom-nav a.active i,
.app-mobile-bottom-nav a.is-active i {
    color: #fff;
    background: linear-gradient(135deg, #ff4f26, #ff7a20);
    box-shadow: 0 8px 16px rgba(255, 79, 38, .22);
}
.cashback-bottom-nav a.is-center,
.app-mobile-bottom-nav a.is-center {
    transform: translateY(-10px);
    color: #ff4f26;
    gap: 4px;
}
.cashback-bottom-nav a.is-center i,
.app-mobile-bottom-nav a.is-center i {
    width: 44px;
    height: 44px;
    border-radius: 18px;
    color: #fff;
    background: linear-gradient(135deg, #ff4f26, #ff7a20);
    box-shadow: 0 12px 22px rgba(255, 79, 38, .28);
    font-size: 21px;
}
.cashback-bottom-nav a.is-center span,
.app-mobile-bottom-nav a.is-center span {
    font-size: 11px;
    color: #ff4f26;
}
.bht-native-loader {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: none;
    padding: calc(80px + env(safe-area-inset-top)) 18px 100px;
    background: rgba(244,246,250,.96);
}
.bht-native-loader.is-visible { display: block; }
.bht-native-loader-line,
.bht-native-loader-card {
    border-radius: 18px;
    background: linear-gradient(90deg, #edf1f7, #f8fafc, #edf1f7);
    background-size: 240% 100%;
    animation: appSkeleton 1.1s linear infinite;
}
.bht-native-loader-line { height: 22px; margin-bottom: 12px; }
.bht-native-loader-line.is-short { width: 62%; }
.bht-native-loader-card { height: 110px; margin-top: 18px; }
.bht-native-loader-card.is-large { height: 190px; }
@keyframes appSkeleton { to { background-position: -240% 0; } }
@media (max-width: 390px) {
    .app-mobile-content { padding-left: 10px; padding-right: 10px; }
    .app-user-card { grid-template-columns: 64px 1fr; }
    .app-user-card em { grid-column: 2; justify-self: start; }
    .app-user-card img { width: 64px; height: 64px; }
    .app-utility-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .app-balance-card strong { font-size: 36px; }
}

/* Native Android/iOS app shell for /app */
html:has(body.app-native-ui),
body.app-native-ui {
    min-height: 100%;
    overscroll-behavior-y: none;
    background: #f2f4f8 !important;
}

body.app-native-ui {
    --native-bg: #f2f4f8;
    --native-surface: #ffffff;
    --native-surface-2: #f8fafc;
    --native-ink: #121826;
    --native-muted: #687386;
    --native-line: rgba(18, 24, 38, .08);
    --native-brand: #ff401a;
    --native-brand-2: #ff7a1f;
    --native-radius: 18px;
    --native-shadow: 0 8px 22px rgba(18, 24, 38, .06);
    color: var(--native-ink);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    padding-bottom: 0 !important;
}

body.app-native-ui::before {
    content: "";
    position: fixed;
    inset: 0 0 auto;
    z-index: 0;
    height: 156px;
    background: linear-gradient(180deg, #fff7f3 0%, #f2f4f8 100%);
    pointer-events: none;
}

.app-native-ui .app-native-topbar {
    position: sticky;
    top: 0;
    z-index: 1050;
    padding: calc(7px + env(safe-area-inset-top)) max(14px, env(safe-area-inset-left)) 7px max(14px, env(safe-area-inset-right));
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(237, 241, 247, .9);
    box-shadow: 0 6px 18px rgba(18, 24, 38, .055);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.app-native-ui .app-native-topbar-inner {
    min-height: 46px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 8px;
}

.app-native-ui .app-native-icon-button,
.app-native-ui .app-native-login {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border: 0;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--native-ink) !important;
    text-decoration: none !important;
    box-shadow: 0 8px 18px rgba(18, 24, 38, .08), inset 0 0 0 1px var(--native-line);
    transition: transform .12s ease, background-color .12s ease, box-shadow .12s ease;
}

.app-native-ui .app-native-icon-button:active,
.app-native-ui .app-native-login:active,
.app-native-ui .cashback-bottom-nav a:active {
    transform: scale(.94);
}

.app-native-ui .app-native-icon-button i {
    font-size: 20px;
    line-height: 1;
}

.app-native-ui .app-native-title {
    min-width: 0;
    display: inline-grid;
    grid-template-columns: 30px minmax(0, auto);
    align-items: center;
    justify-content: start;
    gap: 9px;
    width: max-content;
    max-width: 100%;
    min-height: 40px;
    padding: 4px 0;
    color: var(--native-ink);
    text-decoration: none !important;
}

.app-native-ui .app-native-title img {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    object-fit: contain;
    background: #fff;
    box-shadow: inset 0 0 0 1px var(--native-line);
}

.app-native-ui .app-native-title span,
.app-native-ui .app-native-title strong {
    min-width: 0;
    display: block;
}

.app-native-ui .app-native-title strong {
    overflow: hidden;
    color: var(--native-ink);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.1;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-native-ui .app-native-notification {
    position: relative;
    justify-self: end;
    width: 40px;
    height: 40px;
}

.app-native-ui .app-native-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border: 2px solid #fff;
    border-radius: 999px;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--native-brand);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
}

.app-native-ui .app-native-badge:not(:empty) {
    display: inline-flex;
}

.app-native-ui .app-native-badge:empty,
.app-native-ui .app-native-badge:is(:where([data-count="0"])) {
    display: none;
}

.app-native-ui .app-native-login {
    width: auto;
    min-width: 74px;
    max-width: 82px;
    min-height: 40px;
    height: auto;
    border-radius: 999px;
    padding: 7px 10px;
    background: var(--native-brand);
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(255, 64, 26, .22);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.08;
    text-align: center;
    white-space: normal;
}

.app-native-ui .app-native-main {
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 70px);
    padding: 10px 0 calc(78px + env(safe-area-inset-bottom)) !important;
    background: transparent !important;
}

.app-native-ui .app-native-container.container {
    width: 100%;
    max-width: 560px;
    padding-right: 10px !important;
    padding-left: 10px !important;
}

.app-native-ui .cashback-bottom-nav,
.app-native-ui .app-mobile-bottom-nav {
    left: 0;
    right: 0;
    bottom: 0;
    min-height: calc(64px + env(safe-area-inset-bottom));
    padding: 6px max(8px, env(safe-area-inset-left)) calc(6px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-right)) !important;
    border: 0 !important;
    border-top: 1px solid rgba(18, 24, 38, .08) !important;
    border-radius: 22px 22px 0 0;
    background: rgba(255, 255, 255, .96) !important;
    box-shadow: 0 -10px 24px rgba(18, 24, 38, .10) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.app-native-ui .cashback-bottom-nav a,
.app-native-ui .app-mobile-bottom-nav a {
    min-height: 54px !important;
    border-radius: 18px !important;
    gap: 3px;
    color: #727d8f !important;
    font-size: 10px !important;
    font-weight: 850 !important;
}

.app-native-ui .cashback-bottom-nav a i,
.app-native-ui .app-mobile-bottom-nav a i {
    width: 25px !important;
    height: 25px !important;
    border-radius: 12px !important;
    background: transparent !important;
    color: #727d8f !important;
    font-size: 21px !important;
    box-shadow: none !important;
}

.app-native-ui .cashback-bottom-nav a.active,
.app-native-ui .cashback-bottom-nav a.is-active,
.app-native-ui .app-mobile-bottom-nav a.active,
.app-native-ui .app-mobile-bottom-nav a.is-active {
    background: #fff1ec !important;
    color: var(--native-brand) !important;
}

.app-native-ui .cashback-bottom-nav a.active i,
.app-native-ui .cashback-bottom-nav a.is-active i,
.app-native-ui .app-mobile-bottom-nav a.active i,
.app-native-ui .app-mobile-bottom-nav a.is-active i {
    background: transparent !important;
    color: var(--native-brand) !important;
}

.app-native-ui .cashback-bottom-nav a.is-center,
.app-native-ui .app-mobile-bottom-nav a.is-center {
    transform: none !important;
}

.app-native-ui .cashback-bottom-nav a.is-center i,
.app-native-ui .app-mobile-bottom-nav a.is-center i {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--native-brand), var(--native-brand-2)) !important;
    color: #fff !important;
    font-size: 20px !important;
    box-shadow: 0 9px 18px rgba(255, 64, 26, .28) !important;
}

.app-native-ui .cashback-bottom-nav a.is-center span,
.app-native-ui .app-mobile-bottom-nav a.is-center span {
    color: var(--native-brand) !important;
    font-size: 10.5px !important;
    font-weight: 900 !important;
}

.app-native-ui .cashback-hub,
.app-native-ui .voucher-page,
.app-native-ui .profile-suite {
    margin: 0;
    padding-top: 0 !important;
    background: transparent !important;
}

.app-native-ui .cashback-hub-container,
.app-native-ui .voucher-shell,
.app-native-ui .profile-suite {
    width: 100% !important;
    max-width: 560px !important;
    padding-right: 10px !important;
    padding-left: 10px !important;
}

.app-native-ui .cashback-hub-hero,
.app-native-ui .voucher-card-surface,
.app-native-ui .profile-suite-card,
.app-native-ui .native-account-overview,
.app-native-ui .cashback-store-card,
.app-native-ui .cashback-more-card,
.app-native-ui .voucher-card,
.app-native-ui .profile-suite-body .card,
.app-native-ui .profile-suite-body .bg-white {
    border-color: var(--native-line) !important;
    border-radius: var(--native-radius) !important;
    box-shadow: var(--native-shadow) !important;
}

.app-native-ui .cashback-hub-hero,
.app-native-ui .voucher-hero-main,
.app-native-ui .native-account-overview {
    border-radius: 22px !important;
}

.app-native-ui .cashback-hub-title,
.app-native-ui .voucher-title,
.app-native-ui .profile-suite-heading h1 {
    font-size: clamp(22px, 7vw, 30px) !important;
    letter-spacing: 0 !important;
}

.app-native-ui .cashback-hub-desc,
.app-native-ui .voucher-subtitle,
.app-native-ui .profile-suite-heading p {
    font-size: 13px !important;
    line-height: 1.45 !important;
}

.app-native-ui input,
.app-native-ui select,
.app-native-ui textarea,
.app-native-ui .form-control,
.app-native-ui .cashback-hub-input,
.app-native-ui .voucher-search {
    min-height: 48px;
    border-radius: 14px !important;
    font-size: 16px !important;
}

.app-native-ui button,
.app-native-ui .btn,
.app-native-ui .cashback-hub-btn,
.app-native-ui .voucher-copy-btn,
.app-native-ui .voucher-apply-link,
.app-native-ui .profile-suite-body .btn {
    min-height: 44px;
    border-radius: 14px !important;
    font-weight: 850 !important;
}

.app-native-ui .cashback-store-card,
.app-native-ui .native-account-menu a,
.app-native-ui .voucher-card,
.app-native-ui button,
.app-native-ui .btn,
.app-native-ui a {
    -webkit-touch-callout: none;
}

.app-native-ui .cashback-store-card:active,
.app-native-ui .native-account-menu a:active,
.app-native-ui .voucher-card:active,
.app-native-ui .app-card:active {
    transform: scale(.985);
}

.app-native-ui .voucher-page--app .voucher-shell {
    padding-bottom: 92px !important;
}

.app-native-ui .voucher-page--app .voucher-hero {
    margin-bottom: 12px !important;
}

.app-native-ui .voucher-page--app .voucher-hero-main {
    padding: 18px 16px !important;
}

.app-native-ui .voucher-page--app .voucher-eyebrow {
    margin-bottom: 12px !important;
    font-size: 11px !important;
}

.app-native-ui .voucher-page--app .voucher-title {
    font-size: 28px !important;
    line-height: 1.08 !important;
}

.app-native-ui .voucher-page--app .voucher-subtitle {
    max-width: 100% !important;
    margin-top: 8px !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
}

.app-native-ui .voucher-page--app .voucher-toolbar {
    margin-bottom: 12px !important;
    padding: 12px !important;
    border-radius: 20px !important;
}

.app-native-ui .voucher-page--app #platformFilterSection {
    gap: 8px !important;
    margin-top: 10px !important;
}

.app-native-ui .voucher-page--app #platformFilterSection .platform-tab {
    min-height: 38px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
}

.app-native-ui .voucher-page--app .voucher-grid {
    gap: 9px !important;
    margin-top: 8px !important;
}

.app-native-ui .voucher-page--app .voucher-card {
    grid-template-columns: 58px minmax(0, 1fr) !important;
    overflow: hidden !important;
    min-height: 124px !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 24px rgba(18, 24, 38, .06) !important;
}

.app-native-ui .voucher-page--app .coupon-left {
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    padding: 13px 0 10px 10px !important;
    background: #fff !important;
    color: #ff401a !important;
    border-radius: 18px 0 0 18px !important;
}

.app-native-ui .voucher-page--app .voucher-logo {
    width: 44px !important;
    height: 44px !important;
    border-radius: 14px !important;
    background: #f8fafc !important;
    border-color: #e8edf5 !important;
    box-shadow: 0 5px 12px rgba(18, 24, 38, .08) !important;
}

.app-native-ui .voucher-page--app .voucher-logo img {
    filter: none !important;
}

.app-native-ui .voucher-page--app .coupon-span {
    max-width: 48px !important;
    min-height: 21px !important;
    padding: 4px 6px !important;
    background: #fff1ec !important;
    color: #ff401a !important;
    font-size: 8.5px !important;
}

.app-native-ui .voucher-page--app .coupon-right {
    padding: 11px 10px 11px 8px !important;
    gap: 6px !important;
}

.app-native-ui .voucher-page--app .ticket-cut::before,
.app-native-ui .voucher-page--app .ticket-cut::after {
    display: none !important;
}

.app-native-ui .voucher-page--app .voucher-store {
    font-size: 10px !important;
}

.app-native-ui .voucher-page--app .voucher-name {
    margin-top: 2px !important;
    font-size: 14.5px !important;
    line-height: 1.18 !important;
}

.app-native-ui .voucher-page--app .voucher-desc {
    display: none !important;
}

.app-native-ui .voucher-page--app .progress-block {
    gap: 4px !important;
}

.app-native-ui .voucher-page--app .progress-meta {
    font-size: 11px !important;
}

.app-native-ui .voucher-page--app .voucher-code-box {
    min-height: 38px !important;
    padding: 6px 6px 6px 9px !important;
    border-radius: 12px !important;
}

.app-native-ui .voucher-page--app .voucher-code-label {
    font-size: 8.5px !important;
}

.app-native-ui .voucher-page--app .voucher-code {
    max-width: 140px !important;
    font-size: 12px !important;
}

.app-native-ui .voucher-page--app .voucher-copy-btn {
    width: 36px !important;
    min-width: 36px !important;
    height: 36px !important;
    border-radius: 12px !important;
}

.app-native-ui .voucher-page--app .voucher-copy-btn i {
    font-size: 16px !important;
}

.app-native-ui .voucher-page--app .voucher-card-footer {
    gap: 8px !important;
    padding-top: 0 !important;
}

.app-native-ui .voucher-page--app .countdown-wrap {
    min-width: 0 !important;
    font-size: 10.5px !important;
}

.app-native-ui .voucher-page--app .voucher-apply-link {
    min-height: 34px !important;
    padding: 0 12px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
}

.app-native-ui .profile-suite-topbar,
.app-native-ui .profile-suite-sidebar {
    display: none !important;
}

.app-native-ui .profile-suite-shell {
    display: block !important;
    padding: 0 !important;
}

.app-native-ui .profile-suite-content {
    width: 100% !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.app-native-ui .profile-suite-heading {
    padding: 10px 4px 12px !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

.app-native-ui .profile-suite-body {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
}

.app-native-ui .native-account-menu {
    gap: 6px;
}

.app-native-ui .native-account-menu a {
    min-height: 52px;
    padding: 8px 10px;
}

.app-native-ui .table-responsive {
    border-radius: var(--native-radius) !important;
}

.app-native-ui .modal-content,
.app-native-ui .swal2-popup {
    border-radius: 24px !important;
}

.app-native-ui.bht-keyboard-open,
.bht-keyboard-open.app-native-ui {
    padding-bottom: 0 !important;
}

.bht-keyboard-open.app-native-ui .cashback-bottom-nav,
.bht-keyboard-open.app-native-ui .app-mobile-bottom-nav {
    display: grid !important;
    transform: translateY(0) !important;
}

@media (max-width: 420px) {
    .app-native-ui .app-native-title strong {
        font-size: 16px;
    }

    .app-native-ui .app-native-container.container {
        padding-right: 8px !important;
        padding-left: 8px !important;
    }

    .app-native-ui .cashback-hub,
    .app-native-ui .voucher-page,
    .app-native-ui .profile-suite {
        margin-right: 0;
        margin-left: 0;
    }
}
