/* Gigypay User Panel — responsive auth + dashboard */
:root {
    --gp-primary: #52b788;
    --gp-primary-dark: #3d9a6f;
    --gp-primary-light: #74d4a8;
    --gp-accent: #f4a261;
    --gp-accent-dark: #e76f51;
    --gp-bg: #050b16;
    --gp-bg-soft: #0a1830;
    --gp-card: rgba(10, 24, 48, 0.78);
    --gp-card-solid: #0c1e38;
    --gp-glass: rgba(255, 255, 255, 0.05);
    --gp-border: rgba(56, 140, 220, 0.22);
    --gp-border-light: rgba(120, 180, 255, 0.1);
    --gp-text: #eef4ff;
    --gp-muted: #8ba4c4;
    --gp-white: #ffffff;
    --gp-dark: #0a1f18;
    --gp-gradient: linear-gradient(135deg, #52b788 0%, #3d9a6f 50%, #2d7a57 100%);
    --gp-gradient-accent: linear-gradient(135deg, #f4a261 0%, #e9c46a 100%);
    --gp-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
    --gp-radius: 18px;
    --gp-radius-sm: 12px;
    --gp-font: 'Segoe UI', system-ui, -apple-system, sans-serif;
    --gp-sidebar-w: 260px;
    --gp-max: 1400px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.lucide-icon, .lucide-icon svg, [data-lucide] svg {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    stroke: currentColor;
}
.gp-input-wrap .lucide-icon,
.gp-input-wrap [data-lucide] svg { color: var(--gp-primary); }
.gp-nav .lucide-icon,
.gp-bottom-nav .lucide-icon { width: 20px; height: 20px; }
.medal-gold { color: #ffd43b; }
.medal-silver { color: #ced4da; }
.medal-bronze { color: #e67700; }
.gp-form-icon, .gp-q-icon, .gp-app-icon, .gp-stat-icon, .gp-fm-icon, .gp-feed-icon, .gp-empty-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.gp-section-head h2 { display: inline-flex; align-items: center; gap: 8px; }
.gp-btn-invest { display: inline-flex; align-items: center; gap: 6px; }
.gp-btn-primary .gp-btn-arrow { display: inline-flex; align-items: center; }
.gp-auth-secure { display: flex; align-items: center; gap: 8px; }
.gp-link-box > span:first-child { display: inline-flex; align-items: center; }
.gp-marquee-inner { display: inline-flex; align-items: center; gap: 8px; }
html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}
body.gp-body {
    font-family: var(--gp-font);
    background: var(--gp-bg);
    color: var(--gp-text);
    line-height: 1.5;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}
body.gp-body.gp-user-bg {
    background-color: #050b16;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.gp-hidden { display: none !important; }

/* ── Auth pages ── */
.gp-auth-page {
    min-height: 100vh;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(82,183,136,0.12), transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(244,162,97,0.1), transparent 50%),
        #f5f8f6;
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px),
        radial-gradient(ellipse at 0% 0%, rgba(82,183,136,0.12), transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(244,162,97,0.1), transparent 50%);
    background-size: 28px 28px, 28px 28px, auto, auto;
}
.gp-auth-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.gp-auth-brand { display: flex; align-items: center; gap: 12px; }
.gp-auth-brand img { width: 44px; height: 44px; border-radius: 50%; }
.gp-auth-brand h1 { font-size: 1.2rem; color: #111; font-weight: 800; }
.gp-auth-brand span { display: block; font-size: 0.68rem; letter-spacing: 0.08em; color: var(--gp-accent-dark); font-weight: 700; text-transform: uppercase; }
.gp-auth-home {
    width: 42px; height: 42px; border-radius: 50%;
    background: #111; color: #fff; display: grid; place-items: center;
    border: none; cursor: pointer; transition: transform .2s;
}
.gp-auth-home:hover { transform: scale(1.05); }
.gp-auth-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px 40px;
}
.gp-auth-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--gp-shadow);
    min-height: 560px;
}
.gp-auth-promo {
    background: linear-gradient(165deg, #0a2e1f 0%, #061510 45%, #030a08 100%);
    padding: 40px 36px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.gp-auth-promo::before,
.gp-auth-promo::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(82,183,136,0.12);
}
.gp-auth-promo::before { width: 280px; height: 280px; top: -80px; right: -60px; }
.gp-auth-promo::after { width: 200px; height: 200px; bottom: -40px; left: -40px; }
.gp-auth-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px; padding: 6px 14px;
    font-size: 0.72rem; letter-spacing: 0.06em; font-weight: 700;
    color: #fff; width: fit-content; margin-bottom: 24px; position: relative; z-index: 1;
}
.gp-auth-badge i { width: 8px; height: 8px; border-radius: 50%; background: var(--gp-primary); box-shadow: 0 0 8px var(--gp-primary); }
.gp-auth-promo h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    line-height: 1.25; color: #fff; font-weight: 800;
    position: relative; z-index: 1; margin-bottom: 16px;
}
.gp-auth-promo h2 em { font-style: normal; color: #f4d35e; }
.gp-auth-promo p { color: rgba(255,255,255,0.72); font-size: 0.95rem; max-width: 380px; position: relative; z-index: 1; }
.gp-auth-form-card {
    background: #fff;
    padding: 36px 32px;
    display: flex; flex-direction: column; justify-content: center;
}
.gp-form-head { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 28px; }
.gp-form-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--gp-gradient-accent);
    display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0;
}
.gp-form-head h3 { font-size: 1.35rem; color: #111; font-weight: 800; }
.gp-form-head p { font-size: 0.85rem; color: #666; margin-top: 4px; }
.gp-field { margin-bottom: 16px; }
.gp-field label {
    display: block; font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.06em; color: #888; margin-bottom: 6px; text-transform: uppercase;
}
.gp-input-wrap {
    display: flex; align-items: center; gap: 10px;
    background: #f3f5f4; border: 1px solid #e5ebe8;
    border-radius: 12px; padding: 0 14px; transition: border-color .2s;
}
.gp-input-wrap:focus-within { border-color: var(--gp-primary); }
.gp-input-wrap svg { width: 18px; height: 18px; color: var(--gp-primary); flex-shrink: 0; }
.gp-input-wrap input {
    flex: 1; border: none; background: transparent;
    padding: 14px 0; color: #111; outline: none; min-width: 0;
}
.gp-input-wrap .gp-eye {
    background: none; border: none; cursor: pointer; color: #999; padding: 4px;
}
.gp-btn-primary {
    width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(135deg, #0a2e1f, #061510);
    color: #fff; border: none; border-radius: 14px;
    padding: 16px 20px; font-weight: 800; letter-spacing: 0.04em;
    cursor: pointer; margin-top: 8px; transition: transform .2s, box-shadow .2s;
    position: relative; overflow: hidden;
}
.gp-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(6,21,16,0.35); }
.gp-btn-arrow {
    width: 32px; height: 32px; border-radius: 50%;
    background: #f4d35e; color: #111;
    display: grid; place-items: center; margin-left: auto;
}
.gp-auth-extra { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.gp-btn-outline {
    flex: 1; min-width: 140px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 14px; border-radius: 12px; font-size: 0.82rem; font-weight: 700;
    border: none; cursor: pointer;
}
.gp-btn-wa { background: #25d366; color: #fff; }
.gp-btn-play { background: #1a3a6b; color: #fff; }
.gp-auth-foot {
    margin-top: 20px; font-size: 0.82rem; color: #666;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
}
.gp-auth-foot a { color: var(--gp-primary-dark); font-weight: 700; }
.gp-auth-secure { display: flex; align-items: center; gap: 6px; color: var(--gp-primary-dark); font-size: 0.78rem; margin-top: 14px; }
.gp-alert {
    background: #fff3cd; border: 1px solid #ffc107; color: #664d03;
    padding: 12px 14px; border-radius: 10px; margin-bottom: 16px; font-size: 0.88rem;
}
.gp-forgot { text-align: right; margin: -8px 0 12px; }
.gp-forgot a { color: var(--gp-accent-dark); font-size: 0.82rem; font-weight: 600; }

/* ── User shell — premium blue gradient (BarkatX-inspired) ── */
.gp-user-bg {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    isolation: isolate;
}
.gp-user-bg::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        linear-gradient(rgba(96, 165, 250, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96, 165, 250, 0.04) 1px, transparent 1px),
        radial-gradient(ellipse 85% 55% at 100% 0%, rgba(34, 211, 238, 0.2), transparent 58%),
        radial-gradient(ellipse 75% 50% at 0% 100%, rgba(59, 130, 246, 0.16), transparent 52%),
        radial-gradient(ellipse 55% 45% at 48% 42%, rgba(99, 102, 241, 0.1), transparent 62%),
        radial-gradient(ellipse 40% 30% at 12% 18%, rgba(14, 165, 233, 0.12), transparent 55%),
        linear-gradient(168deg, #040a14 0%, #071525 28%, #0b2240 52%, #0d2d52 72%, #061428 100%);
    background-size: 34px 34px, 34px 34px, auto, auto, auto, auto, auto;
    background-attachment: fixed;
}
.gp-user-bg::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 22%, rgba(56, 189, 248, 0.08), transparent 28%),
        radial-gradient(circle at 22% 78%, rgba(37, 99, 235, 0.07), transparent 32%);
    filter: blur(0.5px);
}
.gp-shell {
    display: block;
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    position: relative;
    z-index: 0;
}
.gp-sidebar {
    position: sticky; top: 0; height: 100vh;
    background: linear-gradient(180deg, rgba(8, 20, 42, 0.92) 0%, rgba(6, 14, 32, 0.88) 100%);
    border-right: 1px solid rgba(56, 140, 220, 0.18);
    padding: 24px 16px;
    display: flex; flex-direction: column;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: inset -1px 0 0 rgba(120, 180, 255, 0.06);
    z-index: 100;
}
.gp-sidebar-brand {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 10px 24px; border-bottom: 1px solid var(--gp-border-light);
    margin-bottom: 20px;
}
.gp-sidebar-brand img { width: 40px; height: 40px; border-radius: 50%; }
.gp-sidebar-brand strong { display: block; font-size: 1rem; }
.gp-sidebar-brand small { color: var(--gp-primary); font-size: 0.65rem; letter-spacing: 0.06em; font-weight: 700; }
.gp-nav { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.gp-nav a, .gp-nav button.gp-nav-logout {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px; border-radius: var(--gp-radius-sm);
    color: var(--gp-muted); font-weight: 600; font-size: 0.9rem;
    border: none; background: none; width: 100%; text-align: left; cursor: pointer;
    transition: background .2s, color .2s;
}
.gp-nav a:hover, .gp-nav a.active {
    background: linear-gradient(90deg, rgba(56, 140, 220, 0.16), rgba(34, 211, 238, 0.08));
    color: #b8dcff;
}
.gp-nav a.active {
    border: 1px solid rgba(56, 140, 220, 0.35);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.08);
}
.gp-nav svg { width: 20px; height: 20px; flex-shrink: 0; }
.gp-main {
    padding: 16px 16px calc(96px + env(safe-area-inset-bottom, 0px));
    max-width: var(--gp-max);
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
}
.gp-topbar {
    display: flex;
    align-items: center; justify-content: space-between;
    background: linear-gradient(135deg, rgba(12, 28, 54, 0.88) 0%, rgba(8, 20, 42, 0.82) 100%);
    border: 1px solid rgba(56, 140, 220, 0.2);
    border-radius: var(--gp-radius);
    padding: 12px 16px; margin-bottom: 20px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
}
.gp-topbar-brand { display: flex; align-items: center; gap: 10px; }
.gp-topbar-brand img { width: 36px; height: 36px; border-radius: 50%; }
.gp-topbar-actions { display: flex; gap: 8px; align-items: center; }
.gp-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--gp-gradient); display: grid; place-items: center;
    font-weight: 800; color: #fff; border: 2px solid var(--gp-border);
}
.gp-bottom-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    max-width: 520px;
    margin: 0 auto;
    padding: 8px 10px;
    background: linear-gradient(180deg, rgba(10, 26, 52, 0.96) 0%, rgba(8, 18, 38, 0.94) 100%);
    border: 1px solid rgba(56, 140, 220, 0.28);
    border-radius: 999px;
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    z-index: 9999;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(34, 211, 238, 0.06) inset;
    gap: 2px;
}
.gp-bottom-nav__item,
.gp-bottom-nav__logout button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex: 1;
    min-width: 0;
    padding: 8px 4px;
    border-radius: 999px;
    color: var(--gp-muted);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    border: none;
    background: none;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.1;
    -webkit-tap-highlight-color: transparent;
}
.gp-bottom-nav__item span,
.gp-bottom-nav__logout button span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.gp-bottom-nav__item.active {
    background: var(--gp-gradient-accent);
    color: #111;
}
.gp-bottom-nav__item:active,
.gp-bottom-nav__logout button:active {
    opacity: 0.85;
}
.gp-bottom-nav__logout {
    flex: 1;
    min-width: 0;
    margin: 0;
    padding: 0;
    display: flex;
}
.gp-bottom-nav__logout button {
    width: 100%;
}
.gp-bottom-nav svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ── Cards & sections ── */
.gp-section { margin-bottom: 24px; }
.gp-section-head {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 14px; gap: 12px;
}
.gp-section-head h2 {
    font-size: 0.82rem; letter-spacing: 0.08em; font-weight: 800;
    text-transform: uppercase; display: flex; align-items: center; gap: 8px;
}
.gp-section-head span { font-size: 0.72rem; color: var(--gp-muted); font-weight: 600; }
.gp-card {
    background: linear-gradient(145deg, rgba(12, 28, 54, 0.82) 0%, rgba(8, 18, 38, 0.88) 100%);
    border: 1px solid rgba(56, 140, 220, 0.18);
    border-radius: var(--gp-radius);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.gp-profile-card {
    padding: 22px 20px 20px;
    position: relative;
    overflow: hidden;
    border-color: rgba(56, 140, 220, 0.28);
    background:
        linear-gradient(145deg, rgba(14, 32, 58, 0.94) 0%, rgba(8, 18, 36, 0.96) 55%, rgba(6, 14, 30, 0.98) 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(34, 211, 238, 0.04);
}
.gp-profile-card__grid {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image:
        linear-gradient(rgba(96, 165, 250, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96, 165, 250, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}
.gp-profile-card__glow {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    filter: blur(48px);
    pointer-events: none;
    opacity: 0.55;
}
.gp-profile-card__glow--left {
    top: -60px;
    left: -40px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.42), rgba(59, 130, 246, 0.18), transparent 70%);
}
.gp-profile-card__glow--right {
    top: -50px;
    right: -30px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.45), rgba(56, 189, 248, 0.2), transparent 70%);
}
.gp-profile-top {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}
.gp-profile-user { display: flex; gap: 14px; align-items: center; min-width: 0; }
.gp-profile-meta { min-width: 0; }
.gp-profile-avatar {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(180deg, #fbbf24 0%, #84cc16 45%, var(--gp-primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(82, 183, 136, 0.25);
}
.gp-profile-avatar .gp-check {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gp-primary);
    border: 2px solid #0a1520;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.gp-profile-name {
    font-size: 1.15rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
}
.gp-verified { color: #4dabf7; display: inline-flex; }
.gp-upliner-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gp-primary-light);
    background: rgba(82, 183, 136, 0.12);
    border: 1px solid rgba(82, 183, 136, 0.28);
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gp-profile-status-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}
.gp-profile-fingerprint {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #b197fc 0%, #e64980 100%);
    color: #fff;
    box-shadow: 0 8px 20px rgba(177, 151, 252, 0.3);
}
.gp-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}
.gp-status-pill i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gp-primary-light);
    box-shadow: 0 0 8px var(--gp-primary);
}
.gp-balance-row {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 22px;
    gap: 16px;
    flex-wrap: wrap;
}
.gp-balance label {
    display: block;
    font-size: 0.68rem;
    color: var(--gp-muted);
    letter-spacing: 0.12em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.gp-balance-value {
    display: flex;
    align-items: center;
    gap: 8px;
}
.gp-balance-currency {
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    font-weight: 700;
    color: var(--gp-muted);
}
.gp-balance-amount {
    font-size: clamp(1.6rem, 4vw, 2.1rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
}
.gp-balance-eye {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gp-text);
    cursor: pointer;
    margin-left: 4px;
    transition: border-color 0.2s;
}
.gp-balance-eye:hover { border-color: var(--gp-primary); }
.gp-btn-refresh {
    background: linear-gradient(90deg, #f77f2a, #fbbf24);
    color: #111;
    border: none;
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 28px rgba(247, 127, 42, 0.35);
    transition: transform 0.2s;
}
.gp-btn-refresh:hover { transform: translateY(-2px); }
.gp-btn-refresh.is-loading { opacity: 0.85; pointer-events: none; }
.gp-btn-refresh.is-loading .lucide-icon,
.gp-btn-refresh.is-loading [data-lucide] svg {
    animation: gp-spin 0.75s linear infinite;
}
.gp-balance-amount.is-counting {
    color: var(--gp-primary-light);
    text-shadow: 0 0 20px rgba(82, 183, 136, 0.35);
}
@keyframes gp-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.gp-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.gp-quick-btn {
    display: block;
    color: inherit;
    text-decoration: none;
    background: linear-gradient(160deg, rgba(14, 32, 58, 0.75) 0%, rgba(8, 20, 42, 0.85) 100%);
    border: 1px solid rgba(56, 140, 220, 0.16);
    border-radius: var(--gp-radius);
    padding: 16px 10px; text-align: center;
    transition: transform .2s, border-color .2s;
    cursor: pointer;
}
.gp-quick-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(56, 189, 248, 0.45);
    box-shadow: 0 8px 24px rgba(34, 211, 238, 0.1);
}
.gp-quick-btn .gp-q-icon {
    width: 44px; height: 44px; margin: 0 auto 8px;
    border-radius: 12px; display: grid; place-items: center; font-size: 1.3rem;
}
.gp-quick-btn .gp-q-icon--3d {
    width: auto;
    height: auto;
    min-height: 52px;
    background: transparent;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gp-quick-btn .gp-q-icon--3d .gp-icon3d {
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
    transition: transform 0.2s ease;
}
.gp-quick-btn:hover .gp-q-icon--3d .gp-icon3d {
    transform: translateY(-3px) scale(1.06);
}
.gp-quick-btn span { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.05em; }
.gp-marquee {
    overflow: hidden; white-space: nowrap;
    background: linear-gradient(90deg, rgba(8, 22, 44, 0.7), rgba(12, 32, 58, 0.65));
    border-radius: 999px;
    padding: 10px 0;
    border: 1px solid rgba(56, 140, 220, 0.14);
}
.gp-marquee-inner {
    display: inline-block; animation: gp-marquee 28s linear infinite;
    padding-left: 100%; font-size: 0.82rem; color: var(--gp-muted);
}
@keyframes gp-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.gp-feed-list { display: flex; flex-direction: column; gap: 10px; }
.gp-feed-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px; background: var(--gp-glass);
    border-radius: var(--gp-radius-sm); border: 1px solid var(--gp-border-light);
}
.gp-feed-item .gp-feed-icon { font-size: 1.2rem; }
.gp-feed-meta { flex: 1; min-width: 0; }
.gp-feed-meta strong { display: block; font-size: 0.88rem; }
.gp-feed-meta small { color: var(--gp-muted); font-size: 0.72rem; }
.gp-feed-amount { font-weight: 800; color: var(--gp-primary-light); white-space: nowrap; }
/* Finance Map — Barkat X bento grid (mobile + desktop) */
.gp-finance-map {
    display: grid;
    grid-template-columns: 1.08fr 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 10px;
}
.gp-fm-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 104px;
    padding: 14px 14px 16px;
    border-radius: 22px;
    border: 1px solid rgba(56, 140, 220, 0.14);
    background: linear-gradient(155deg, rgba(12, 28, 54, 0.88) 0%, rgba(8, 16, 34, 0.92) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
}
.gp-fm-card:hover {
    border-color: rgba(96, 165, 250, 0.28);
    transform: translateY(-1px);
}
.gp-fm-invest {
    grid-row: 1 / 3;
    grid-column: 1;
    min-height: 228px;
    background:
        linear-gradient(165deg, rgba(59, 130, 246, 0.18) 0%, rgba(10, 22, 44, 0.94) 52%),
        linear-gradient(155deg, rgba(12, 28, 54, 0.9) 0%, rgba(8, 16, 34, 0.95) 100%);
}
.gp-fm-withdraw { grid-row: 1; grid-column: 2; }
.gp-fm-profit { grid-row: 2; grid-column: 2; }
.gp-fm-referral { grid-row: 3; grid-column: 1; }
.gp-fm-team { grid-row: 3; grid-column: 2; }
.gp-fm-teaminvest {
    grid-row: 4;
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    padding: 16px 18px;
    background:
        linear-gradient(90deg, rgba(12, 28, 54, 0.92) 0%, rgba(244, 162, 97, 0.1) 100%);
}
.gp-fm-icon-badge {
    position: relative;
    z-index: 2;
    width: fit-content;
    margin-bottom: 10px;
}
.gp-fm-icon-badge--end {
    margin-bottom: 0;
    margin-left: auto;
    flex-shrink: 0;
}
.gp-fm-card .gp-icon3d {
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}
.gp-fm-content {
    position: relative;
    z-index: 2;
    margin-top: auto;
}
.gp-fm-teaminvest .gp-fm-content {
    margin-top: 0;
}

.gp-fm-pattern {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 42%;
    opacity: 0.35;
    background:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 6px,
            rgba(77, 171, 247, 0.08) 6px,
            rgba(77, 171, 247, 0.08) 7px
        );
    mask-image: linear-gradient(to top, #000 30%, transparent 100%);
    pointer-events: none;
}
.gp-fm-watermark {
    position: absolute;
    top: 8px;
    right: 10px;
    opacity: 0.12;
    color: #fff;
    pointer-events: none;
    line-height: 0;
}
.gp-fm-card label {
    display: block;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    color: rgba(180, 200, 230, 0.72);
    text-transform: uppercase;
}
.gp-fm-val {
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.15;
    margin-top: 5px;
    color: #fff;
}
.gp-fm-invest .gp-fm-val { font-size: 1.5rem; }
.gp-fm-teaminvest .gp-fm-val { font-size: 1.35rem; }

.gp-fm-withdraw {
    background:
        linear-gradient(155deg, rgba(82, 183, 136, 0.14) 0%, rgba(10, 22, 44, 0.94) 68%),
        linear-gradient(155deg, rgba(12, 28, 54, 0.9) 0%, rgba(8, 16, 34, 0.95) 100%);
}
.gp-fm-profit {
    background:
        linear-gradient(155deg, rgba(255, 212, 59, 0.12) 0%, rgba(10, 22, 44, 0.94) 68%),
        linear-gradient(155deg, rgba(12, 28, 54, 0.9) 0%, rgba(8, 16, 34, 0.95) 100%);
}
.gp-fm-referral {
    background:
        linear-gradient(155deg, rgba(151, 117, 250, 0.14) 0%, rgba(10, 22, 44, 0.94) 68%),
        linear-gradient(155deg, rgba(12, 28, 54, 0.9) 0%, rgba(8, 16, 34, 0.95) 100%);
}
.gp-fm-team {
    background:
        linear-gradient(155deg, rgba(255, 107, 157, 0.14) 0%, rgba(10, 22, 44, 0.94) 68%),
        linear-gradient(155deg, rgba(12, 28, 54, 0.9) 0%, rgba(8, 16, 34, 0.95) 100%);
}
.gp-fm-withdraw::after,
.gp-fm-profit::after,
.gp-fm-referral::after,
.gp-fm-team::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -16px;
    width: 64px;
    height: 64px;
    border: 1px dashed rgba(96, 165, 250, 0.1);
    border-radius: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.gp-fm-invest::before {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 96px;
    height: 96px;
    border: 1px dashed rgba(59, 130, 246, 0.18);
    border-radius: 50%;
    pointer-events: none;
}
/* Dashboard stack sections */
.gp-dashboard-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 4px;
}
.gp-block-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.gp-block-head::before {
    content: '';
    width: 3px;
    height: 14px;
    border-radius: 2px;
    background: linear-gradient(180deg, #f4a261, #e76f51);
    flex-shrink: 0;
}
.gp-block-head h2 {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.75);
}
.gp-block-tag {
    margin-left: auto;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--gp-muted);
}

/* 3D icon component */
.gp-icon3d {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--gp-icon3d-size, 44px);
    height: var(--gp-icon3d-size, 44px);
    flex-shrink: 0;
}
.gp-icon3d img {
    position: relative;
    z-index: 1;
    width: var(--gp-icon3d-size, 44px);
    height: var(--gp-icon3d-size, 44px);
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}
.gp-icon3d-glow {
    position: absolute;
    inset: 8%;
    border-radius: 50%;
    filter: blur(14px);
    opacity: 0.9;
    z-index: 0;
}
.gp-icon3d--blue .gp-icon3d-glow { background: radial-gradient(circle, rgba(77, 171, 247, 0.95), transparent 70%); }
.gp-icon3d--green .gp-icon3d-glow { background: radial-gradient(circle, rgba(82, 183, 136, 0.95), transparent 70%); }
.gp-icon3d--teal .gp-icon3d-glow { background: radial-gradient(circle, rgba(56, 217, 169, 0.9), transparent 70%); }
.gp-icon3d--purple .gp-icon3d-glow { background: radial-gradient(circle, rgba(151, 117, 250, 0.95), transparent 70%); }
.gp-icon3d--pink .gp-icon3d-glow { background: radial-gradient(circle, rgba(255, 107, 157, 0.9), transparent 70%); }
.gp-icon3d--gold .gp-icon3d-glow { background: radial-gradient(circle, rgba(255, 212, 59, 0.95), transparent 70%); }
.gp-icon3d--orange .gp-icon3d-glow { background: radial-gradient(circle, rgba(244, 162, 97, 0.95), transparent 70%); }

/* Earning pulse */
.gp-pulse-card { padding: 18px 16px; }
.gp-pulse-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}
.gp-pulse-top strong { font-size: 1rem; display: block; }
.gp-pulse-top p { font-size: 0.78rem; color: var(--gp-muted); margin-top: 4px; max-width: 280px; }
.gp-status-pill--sm { font-size: 0.6rem; padding: 5px 10px; }
.gp-pulse-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.gp-pulse-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 10px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.06);
    min-width: 0;
}
.gp-pulse-stat label {
    display: block;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--gp-muted);
}
.gp-pulse-stat strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    margin-top: 2px;
}

/* Growth ladder */
.gp-ladder-list { display: flex; flex-direction: column; gap: 10px; }
.gp-ladder-card {
    display: flex;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(10, 18, 32, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.07);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s;
}
a.gp-ladder-card:hover {
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}
.gp-ladder-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.gp-ladder-body { flex: 1; min-width: 0; }
.gp-ladder-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}
.gp-ladder-title strong { font-size: 0.92rem; }
.gp-ladder-body p {
    font-size: 0.76rem;
    color: var(--gp-muted);
    margin-top: 4px;
    line-height: 1.4;
}
.gp-ladder-foot {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}
.gp-ladder-val {
    font-size: 1.1rem;
    font-weight: 800;
    white-space: nowrap;
}
.gp-progress {
    flex: 1;
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}
.gp-progress span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--gp-primary), var(--gp-primary-light));
    transition: width 0.4s ease;
}
.gp-ladder-blue .gp-progress span { background: linear-gradient(90deg, #4dabf7, #74c0fc); }
.gp-ladder-orange .gp-progress span { background: linear-gradient(90deg, #f4a261, #ffd43b); }
.gp-ladder-teal .gp-progress span { background: linear-gradient(90deg, #38d9a9, #74d4a8); }

/* Team engine + fast actions duo */
.gp-duo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.gp-team-card, .gp-fast-card { padding: 18px 16px; }
.gp-team-head, .gp-fast-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}
.gp-team-head strong, .gp-fast-head strong { font-size: 0.95rem; display: block; }
.gp-team-head p, .gp-fast-head p {
    font-size: 0.76rem;
    color: var(--gp-muted);
    margin-top: 4px;
    line-height: 1.4;
}
.gp-btn-tree {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(77, 171, 247, 0.15);
    border: 1px solid rgba(77, 171, 247, 0.35);
    color: #74c0fc;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    white-space: nowrap;
    flex-shrink: 0;
}
.gp-btn-tree:hover { background: rgba(77, 171, 247, 0.25); }
.gp-team-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.gp-team-stat {
    padding: 14px 12px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.gp-team-stat label {
    display: block;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--gp-muted);
}
.gp-team-stat strong {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 6px 0 2px;
}
.gp-team-stat small {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
}
.gp-fast-bolt { flex-shrink: 0; }
.gp-fast-actions { display: flex; flex-direction: column; gap: 8px; }
.gp-fast-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    transition: border-color 0.2s, background 0.2s;
}
.gp-fast-btn:hover {
    border-color: var(--gp-primary);
    background: rgba(82, 183, 136, 0.08);
}

/* Share pass */
.gp-share-card { padding: 18px 16px; }
.gp-share-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}
.gp-share-head strong { font-size: 0.95rem; display: block; }
.gp-share-head p { font-size: 0.78rem; color: var(--gp-muted); margin-top: 4px; }
.gp-btn-invest--wide {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
    text-decoration: none;
}

/* Leaderboard banner */
.gp-leaderboard-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(82, 183, 136, 0.12) 0%, rgba(10, 18, 32, 0.95) 60%),
        rgba(10, 18, 32, 0.9);
    border: 1px solid rgba(82, 183, 136, 0.2);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, border-color 0.2s;
}
.gp-leaderboard-banner:hover {
    transform: translateY(-1px);
    border-color: rgba(82, 183, 136, 0.4);
}
.gp-lb-text { flex: 1; min-width: 0; }
.gp-lb-text strong { display: block; font-size: 1rem; }
.gp-lb-text span { font-size: 0.76rem; color: var(--gp-muted); margin-top: 2px; display: block; }
.gp-lb-go {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gp-gradient);
    color: #fff;
    flex-shrink: 0;
}

/* Control apps 3D grid */
.gp-apps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.gp-apps-grid--3d {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.gp-app-btn {
    background: var(--gp-glass);
    border: 1px solid var(--gp-border-light);
    border-radius: var(--gp-radius-sm);
    padding: 14px 8px; text-align: center;
    transition: border-color .2s, transform .2s;
    font-size: 0.65rem; font-weight: 800; letter-spacing: 0.04em;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.gp-app-btn:hover { border-color: var(--gp-primary); transform: translateY(-2px); }
.gp-app-btn .gp-app-icon { font-size: 1.4rem; margin-bottom: 6px; }
.gp-app-btn--3d {
    padding: 16px 8px 12px;
    border-radius: 16px;
    background: rgba(10, 18, 32, 0.75);
    min-height: 108px;
    justify-content: flex-end;
}
.gp-app-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    min-height: 52px;
}
.gp-app-glow--blue .gp-icon3d-glow { background: radial-gradient(circle, rgba(77, 171, 247, 0.85), transparent 70%); }
.gp-app-glow--purple .gp-icon3d-glow { background: radial-gradient(circle, rgba(151, 117, 250, 0.85), transparent 70%); }
.gp-app-glow--teal .gp-icon3d-glow { background: radial-gradient(circle, rgba(56, 217, 169, 0.85), transparent 70%); }
.gp-app-glow--pink .gp-icon3d-glow { background: radial-gradient(circle, rgba(255, 107, 157, 0.85), transparent 70%); }
.gp-app-glow--gold .gp-icon3d-glow { background: radial-gradient(circle, rgba(255, 212, 59, 0.85), transparent 70%); }

/* Trust center */
.gp-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.gp-trust-card {
    position: relative;
    padding: 16px 14px;
    border-radius: 16px;
    background: rgba(10, 18, 32, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
}
.gp-trust-card label {
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--gp-muted);
}
.gp-trust-card strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 800;
    margin-top: 6px;
}
.gp-trust-dot {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffd43b;
    box-shadow: 0 0 8px rgba(255, 212, 59, 0.6);
}
.gp-trust-card.is-ok .gp-trust-dot {
    background: var(--gp-primary-light);
    box-shadow: 0 0 8px var(--gp-primary);
}
.gp-trust-card.is-pending .gp-trust-dot {
    background: #ffd43b;
    box-shadow: 0 0 8px rgba(255, 212, 59, 0.6);
}
.gp-btn-invest {
    background: var(--gp-gradient); color: #fff;
    border: none; border-radius: 12px; padding: 10px 20px;
    font-weight: 800; font-size: 0.82rem; cursor: pointer;
    display: inline-flex; align-items: center; gap: 6px;
}
.gp-empty {
    text-align: center; padding: 32px 16px; color: var(--gp-muted);
}
.gp-empty-icon { font-size: 2.5rem; margin-bottom: 10px; opacity: 0.6; }
.gp-link-box {
    display: flex; align-items: center; gap: 10px;
    background: rgba(0,0,0,0.3); border-radius: 12px;
    padding: 10px 12px; border: 1px solid var(--gp-border-light);
    margin-top: 14px;
}
.gp-link-box input {
    flex: 1; background: transparent; border: none; color: var(--gp-text);
    outline: none; font-size: 0.82rem; min-width: 0;
}
.gp-copy-btn {
    background: #fff; color: #111; border: none;
    border-radius: 8px; padding: 8px 14px; font-weight: 800;
    font-size: 0.75rem; cursor: pointer; white-space: nowrap;
}
.gp-level-tabs {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 16px 0;
}
.gp-level-tab {
    padding: 14px; border-radius: var(--gp-radius-sm);
    background: var(--gp-glass); border: 1px solid var(--gp-border-light);
    text-align: center; cursor: pointer; font-weight: 800; font-size: 0.78rem;
    transition: all .2s;
}
.gp-level-tab.active { background: var(--gp-gradient-accent); color: #111; border-color: transparent; }
.gp-level-tab span { display: block; font-size: 1.1rem; margin-top: 4px; }
.gp-ref-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.gp-ref-stat {
    padding: 14px; border-radius: var(--gp-radius-sm);
    border: 1px solid var(--gp-border-light); position: relative; overflow: hidden;
}
.gp-ref-stat label { font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.8); }
.gp-ref-stat strong { display: block; font-size: 1.1rem; margin-top: 4px; }
.gp-user-list { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.gp-user-row {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 14px; background: var(--gp-glass);
    border-radius: var(--gp-radius-sm); border: 1px solid var(--gp-border-light);
    font-size: 0.88rem;
}

/* Plans */
.gp-plans-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.gp-plan-card {
    display: grid; grid-template-columns: 56px 1fr;
    border-radius: var(--gp-radius); overflow: hidden;
    border: 1px solid var(--gp-border); background: var(--gp-card);
}
.gp-plan-side {
    writing-mode: vertical-rl; transform: rotate(180deg);
    display: flex; flex-direction: column; align-items: center; justify-content: space-between;
    padding: 16px 8px; font-weight: 800; font-size: 0.72rem; letter-spacing: 0.08em;
}
.gp-plan-side.blue { background: linear-gradient(180deg, #4dabf7, #228be6); }
.gp-plan-side.gold { background: linear-gradient(180deg, #ffd43b, #fab005); color: #111; }
.gp-plan-side.purple { background: linear-gradient(180deg, #9775fa, #7950f2); }
.gp-plan-side.teal { background: linear-gradient(180deg, #38d9a9, #20c997); }
.gp-plan-side.orange { background: linear-gradient(180deg, #ff922b, #fd7e14); }
.gp-plan-body { padding: 20px; }
.gp-plan-capital {
    float: right; background: var(--gp-glass); border-radius: 999px;
    padding: 6px 12px; font-size: 0.72rem; font-weight: 700;
}
.gp-plan-badge {
    display: inline-block; padding: 4px 10px; border-radius: 999px;
    font-size: 0.65rem; font-weight: 800; margin-bottom: 8px;
    background: rgba(77,171,247,0.2); color: #74c0fc;
}
.gp-plan-title { font-size: 1.3rem; font-weight: 800; margin-bottom: 14px; clear: both; }
.gp-plan-stats {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 14px;
}
.gp-plan-stats div label { font-size: 0.62rem; color: var(--gp-muted); display: block; }
.gp-plan-stats div strong { font-size: 0.95rem; }
.gp-plan-levels {
    display: flex; align-items: center; gap: 8px; margin: 14px 0;
    font-size: 0.72rem; color: var(--gp-muted);
}
.gp-plan-levels span {
    background: var(--gp-glass); padding: 4px 10px; border-radius: 999px; font-weight: 700;
}
.gp-plan-foot {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 16px; gap: 12px; flex-wrap: wrap;
}

/* Leaderboard */
.gp-hero-card {
    padding: 24px; background: linear-gradient(135deg, rgba(82,183,136,0.15), var(--gp-card));
    display: grid; grid-template-columns: 1fr auto; gap: 20px; align-items: center;
}
.gp-countdown { display: flex; gap: 10px; margin-top: 14px; }
.gp-countdown div {
    background: rgba(0,0,0,0.35); border-radius: 10px;
    padding: 10px 14px; text-align: center; min-width: 70px;
}
.gp-countdown strong { display: block; font-size: 1.2rem; }
.gp-countdown small { font-size: 0.62rem; color: var(--gp-muted); }
.gp-prize-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 16px 0; }
.gp-prize-card {
    padding: 16px; border-radius: var(--gp-radius-sm);
    background: var(--gp-glass); border: 1px solid var(--gp-border-light); text-align: center;
}
.gp-prize-card.gold { border-color: rgba(255,212,59,0.5); box-shadow: 0 0 20px rgba(255,212,59,0.1); }
.gp-prize-card strong { display: block; font-size: 1.2rem; margin-top: 6px; }
.gp-lb-item {
    display: grid; grid-template-columns: auto 1fr auto;
    gap: 12px; align-items: center; padding: 14px;
    background: var(--gp-glass); border-radius: var(--gp-radius-sm);
    border: 1px solid var(--gp-border-light); margin-bottom: 8px;
}
.gp-medal { font-size: 1.4rem; }
.gp-lb-bars { display: flex; flex-direction: column; gap: 4px; margin-top: 8px; }
.gp-lb-bar { height: 4px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden; }
.gp-lb-bar span { display: block; height: 100%; border-radius: 999px; }
.gp-lb-bar.teal span { background: #38d9a9; width: 70%; }
.gp-lb-bar.orange span { background: #ff922b; width: 45%; }
.gp-lb-live { display: flex; flex-direction: column; gap: 0; }
.gp-lb-live.is-refreshing .gp-lb-item--live {
    opacity: 0.55;
    transform: translateY(4px);
}
.gp-lb-item--live {
    transition: opacity 0.28s ease, transform 0.28s ease;
}
.gp-live-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #6ee7b7;
}
.gp-live-tag i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6ee7b7;
    box-shadow: 0 0 10px rgba(110, 231, 183, 0.8);
    animation: gp-live-pulse 1.4s ease-in-out infinite;
}
@keyframes gp-live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.85); }
}

.gp-dashboard-grid,
.gp-dashboard-stack {
    width: 100%;
    max-width: 100%;
}
.gp-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}
.gp-dashboard-grid .gp-span-2 { grid-column: span 1; }

/* Responsive — mobile first */
@media (max-width: 1024px) {
    .gp-sidebar { display: none !important; }
    .gp-dashboard-grid { grid-template-columns: 1fr; }
    .gp-dashboard-grid .gp-span-2 { grid-column: span 1; }
    .gp-duo-grid { grid-template-columns: 1fr; }
    .gp-pulse-grid { grid-template-columns: 1fr; }
    .gp-quick-grid { grid-template-columns: repeat(2, 1fr); }
    .gp-finance-map {
        grid-template-columns: 1.08fr 1fr;
        gap: 10px;
    }
    .gp-fm-invest { min-height: 210px; }
    .gp-section { margin-bottom: 18px; }
    .gp-card { padding: 16px; }
    .gp-profile-card { padding: 18px 16px; }
    .gp-marquee { border-radius: 14px; }
}

@media (max-width: 768px) {
    .gp-main { padding: 14px 12px calc(92px + env(safe-area-inset-bottom, 0px)); }
    .gp-topbar { padding: 10px 12px; margin-bottom: 14px; }
    .gp-auth-split { grid-template-columns: 1fr; min-height: auto; }
    .gp-auth-promo { padding: 28px 24px; min-height: 200px; }
    .gp-auth-form-card { padding: 28px 20px; }
    .gp-finance-map {
        grid-template-columns: 1.06fr 1fr;
        grid-template-rows: auto auto auto auto;
        gap: 9px;
    }
    .gp-fm-invest {
        grid-row: 1 / 3;
        grid-column: 1;
        min-height: 196px;
    }
    .gp-fm-withdraw { grid-row: 1; grid-column: 2; }
    .gp-fm-profit { grid-row: 2; grid-column: 2; }
    .gp-fm-referral { grid-row: 3; grid-column: 1; }
    .gp-fm-team { grid-row: 3; grid-column: 2; }
    .gp-fm-teaminvest {
        grid-row: 4;
        grid-column: 1 / -1;
    }
    .gp-fm-val { font-size: 1.08rem; }
    .gp-fm-invest .gp-fm-val { font-size: 1.22rem; }
    .gp-fm-teaminvest .gp-fm-val { font-size: 1.15rem; }
    .gp-fm-card {
        padding: 12px 12px 14px;
        min-height: 92px;
        border-radius: 20px;
    }
    .gp-fm-card label { font-size: 0.56rem; }
    .gp-fm-card .gp-icon3d,
    .gp-fm-card .gp-icon3d img {
        width: 30px !important;
        height: 30px !important;
    }
    .gp-fm-invest .gp-icon3d,
    .gp-fm-invest .gp-icon3d img {
        width: 34px !important;
        height: 34px !important;
    }
    .gp-fm-teaminvest .gp-icon3d,
    .gp-fm-teaminvest .gp-icon3d img {
        width: 36px !important;
        height: 36px !important;
    }
    .gp-apps-grid,
    .gp-apps-grid--3d { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .gp-app-btn--3d { min-height: 100px; padding: 12px 6px 10px; font-size: 0.58rem; }
    .gp-trust-grid { grid-template-columns: 1fr; }
    .gp-pulse-stat { padding: 10px 8px; }
    .gp-pulse-stat strong { font-size: 0.85rem; }
    .gp-plans-grid { grid-template-columns: 1fr; }
    .gp-plan-card { grid-template-columns: 1fr; }
    .gp-plan-side {
        writing-mode: horizontal-tb; transform: none;
        flex-direction: row; padding: 10px 16px;
    }
    .gp-plan-stats { grid-template-columns: repeat(2, 1fr); }
    .gp-ref-stats { grid-template-columns: repeat(2, 1fr); }
    .gp-hero-card { grid-template-columns: 1fr; }
    .gp-prize-row { grid-template-columns: 1fr; }
    .gp-balance-row {
        flex-direction: column;
        align-items: stretch;
    }
    .gp-btn-refresh { width: 100%; justify-content: center; }
    .gp-profile-top {
        flex-wrap: wrap;
    }
    .gp-profile-fingerprint { width: 40px; height: 40px; }
    .gp-profile-name { font-size: 1.05rem; }
    .gp-balance-amount { font-size: 1.75rem; }
    .gp-leaderboard-banner { padding: 14px; gap: 10px; }
    .gp-team-stats { grid-template-columns: 1fr; }
    .gp-ladder-card { padding: 14px; }
    .gp-section-head { flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .gp-quick-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .gp-quick-btn { padding: 12px 8px; }
    .gp-quick-btn .gp-q-icon { width: 40px; height: 40px; }
    .gp-finance-map {
        grid-template-columns: 1.05fr 1fr;
        gap: 8px;
    }
    .gp-fm-invest { min-height: 188px; }
    .gp-fm-card { min-height: 86px; padding: 11px 11px 13px; }
    .gp-fm-val { font-size: 1rem; }
    .gp-fm-invest .gp-fm-val { font-size: 1.15rem; }
    .gp-apps-grid--3d { grid-template-columns: repeat(3, 1fr); }
    .gp-bottom-nav__item span,
    .gp-bottom-nav__logout button span {
        font-size: 0.52rem;
    }
    .gp-bottom-nav svg { width: 20px; height: 20px; }
    .gp-upliner-pill { max-width: 180px; }
}

@media (min-width: 1025px) {
    .gp-shell {
        display: grid;
        grid-template-columns: var(--gp-sidebar-w) 1fr;
    }
    .gp-sidebar { display: flex !important; }
    .gp-topbar { display: none; }
    .gp-bottom-nav { display: none !important; }
    .gp-main {
        padding: 20px 24px 32px;
    }
    .gp-dashboard-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .gp-dashboard-grid .gp-span-2 { grid-column: span 2; }
    .gp-quick-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── Deposit & Withdraw pages ── */
.gp-link-muted {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gp-primary-light);
}
.gp-finance-hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 18px;
    margin-bottom: 16px;
    border-radius: 20px;
    border: 1px solid var(--gp-border);
    background:
        linear-gradient(135deg, rgba(82, 183, 136, 0.12) 0%, rgba(10, 18, 32, 0.95) 55%),
        var(--gp-card);
    position: relative;
    overflow: hidden;
}
.gp-finance-hero--withdraw {
    background:
        linear-gradient(135deg, rgba(244, 162, 97, 0.12) 0%, rgba(10, 18, 32, 0.95) 55%),
        var(--gp-card);
}
.gp-finance-hero--invest {
    background:
        linear-gradient(135deg, rgba(151, 117, 250, 0.14) 0%, rgba(10, 18, 32, 0.95) 55%),
        var(--gp-card);
}
.gp-invest-confirm-card { margin-top: 0; }
.gp-invest-plan-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}
.gp-invest-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.62rem;
    font-weight: 800;
    padding: 5px 11px;
    border-radius: 999px;
    background: rgba(151, 117, 250, 0.18);
    color: #c4b5fd;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
}
.gp-invest-plan-capital { text-align: right; }
.gp-invest-plan-capital small {
    display: block;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--gp-muted);
    text-transform: uppercase;
}
.gp-invest-plan-capital strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 900;
    margin-top: 2px;
}
.gp-invest-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}
.gp-invest-stats > div {
    padding: 11px 10px;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid var(--gp-border-light);
}
.gp-invest-stats label {
    display: block;
    font-size: 0.58rem;
    color: var(--gp-muted);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 4px;
}
.gp-invest-stats strong {
    font-size: 0.9rem;
    font-weight: 800;
}
.gp-invest-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    margin: 16px 0;
    border-radius: 14px;
    background: rgba(82, 183, 136, 0.1);
    border: 1px solid rgba(82, 183, 136, 0.28);
}
.gp-invest-total span {
    font-size: 0.75rem;
    color: var(--gp-muted);
    font-weight: 700;
}
.gp-invest-total strong {
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--gp-primary-light);
}
.gp-input-wrap.is-readonly input {
    opacity: 0.95;
    cursor: default;
}
@media (max-width: 768px) {
    .gp-invest-stats { grid-template-columns: repeat(2, 1fr); }
    .gp-invest-total { flex-direction: column; align-items: flex-start; }
}
.gp-finance-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--gp-primary-light);
    margin-bottom: 8px;
}
.gp-finance-hero__badge i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gp-primary);
    box-shadow: 0 0 8px var(--gp-primary);
}
.gp-finance-hero h1 {
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.2;
}
.gp-finance-hero p {
    font-size: 0.82rem;
    color: var(--gp-muted);
    margin-top: 6px;
    max-width: 360px;
}
.gp-finance-hero__balance {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.gp-finance-hero__balance label {
    display: block;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--gp-muted);
}
.gp-finance-hero__balance strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    margin-top: 2px;
}
.gp-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}
.gp-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    background: var(--gp-glass);
    border: 1px solid var(--gp-border-light);
    opacity: 0.65;
}
.gp-step.is-active {
    opacity: 1;
    border-color: var(--gp-primary);
    background: rgba(82, 183, 136, 0.08);
}
.gp-step span {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 0.75rem;
    font-weight: 800;
    background: rgba(0, 0, 0, 0.35);
    color: var(--gp-muted);
    flex-shrink: 0;
}
.gp-step.is-active span {
    background: var(--gp-gradient);
    color: #fff;
}
.gp-step strong {
    display: block;
    font-size: 0.82rem;
}
.gp-step small {
    font-size: 0.72rem;
    color: var(--gp-muted);
}
.gp-finance-form-card {
    padding: 20px 18px;
}
.gp-finance-page .gp-field label {
    color: var(--gp-muted);
}
.gp-finance-page .gp-input-wrap {
    background: rgba(0, 0, 0, 0.28);
    border-color: var(--gp-border-light);
}
.gp-finance-page .gp-input-wrap input,
.gp-finance-page .gp-input-wrap textarea {
    color: var(--gp-text);
    padding: 14px 0;
}
.gp-input-wrap--lg {
    padding-right: 16px;
}
.gp-input-suffix {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--gp-muted);
    flex-shrink: 0;
}
.gp-input-wrap--area {
    align-items: stretch;
    padding: 12px 14px;
}
.gp-input-wrap--area textarea {
    width: 100%;
    min-height: 90px;
    border: none;
    background: transparent;
    color: var(--gp-text);
    resize: vertical;
    outline: none;
}
.gp-field-hint {
    font-size: 0.72rem;
    color: var(--gp-muted);
    margin-top: 8px;
}
.gp-gateway-grid,
.gp-account-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.gp-gateway-card,
.gp-account-card {
    cursor: pointer;
}
.gp-gateway-card input,
.gp-account-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.gp-gateway-card__inner,
.gp-account-card__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 108px;
    padding: 14px 10px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid var(--gp-border-light);
    text-align: center;
    transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.gp-gateway-card__inner img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    border-radius: 10px;
}
.gp-gateway-card__inner strong,
.gp-account-card__inner strong {
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.2;
}
.gp-account-card__inner small {
    font-size: 0.65rem;
    color: var(--gp-muted);
}
.gp-gateway-card.is-selected .gp-gateway-card__inner,
.gp-account-card.is-selected .gp-account-card__inner,
.gp-gateway-card input:checked + .gp-gateway-card__inner,
.gp-account-card input:checked + .gp-account-card__inner {
    border-color: var(--gp-primary);
    background: rgba(82, 183, 136, 0.1);
    transform: translateY(-1px);
}
.gp-manual-block {
    margin: 16px 0;
    padding: 16px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px dashed var(--gp-border-light);
}
.gp-manual-instructions {
    font-size: 0.82rem;
    color: var(--gp-muted);
    margin-bottom: 14px;
    line-height: 1.5;
}
.gp-file-upload input[type="file"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.gp-file-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    border-radius: 12px;
    border: 1px dashed var(--gp-border);
    color: var(--gp-muted);
    font-size: 0.82rem;
    cursor: pointer;
}
.gp-file-label.has-file {
    border-color: var(--gp-primary);
    color: var(--gp-primary-light);
}
.gp-review-card {
    margin: 18px 0;
    padding: 16px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid var(--gp-border-light);
}
.gp-review-card h3 {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
    color: var(--gp-muted);
}
.gp-review-table {
    width: 100%;
    border-collapse: collapse;
}
.gp-review-table td {
    padding: 10px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    vertical-align: middle;
}
.gp-review-table td:first-child {
    color: var(--gp-muted);
    font-weight: 600;
    width: 42%;
}
.gp-review-table td:last-child {
    font-weight: 800;
    text-align: right;
}
.gp-review-table tr:last-child td { border-bottom: none; }
.gp-review-total td {
    color: var(--gp-primary-light) !important;
    font-size: 0.95rem !important;
}
.gp-review-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
}
.gp-w-cred-img {
    max-width: 80px;
    border-radius: 8px;
}
.gp-finance-form-card .gp-btn-primary {
    background: var(--gp-gradient);
    margin-top: 12px;
}
.gp-btn-primary--full { width: 100%; }
.gp-finance-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}
.gp-finance-actions .gp-btn-primary {
    flex: 1;
    min-width: 180px;
    margin-top: 0;
}
.gp-finance-page .gp-btn-outline {
    flex: 1;
    min-width: 160px;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid var(--gp-border-light);
    background: rgba(0, 0, 0, 0.25);
    color: var(--gp-text);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}
.gp-finance-page .gp-btn-outline:hover {
    border-color: var(--gp-primary);
}
.gp-empty-state {
    padding: 32px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.gp-empty-state h3 {
    font-size: 1.1rem;
    font-weight: 800;
}
.gp-empty-state p {
    font-size: 0.85rem;
    color: var(--gp-muted);
    max-width: 320px;
}
.gp-finance-page .gp-alert {
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(231, 111, 81, 0.12);
    border: 1px solid rgba(231, 111, 81, 0.35);
    color: #ffb4a2;
    font-size: 0.85rem;
}

@media (min-width: 640px) {
    .gp-gateway-grid,
    .gp-account-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gp-finance-hero {
        flex-direction: column;
        align-items: stretch;
    }
    .gp-finance-hero__balance {
        justify-content: flex-start;
    }
    .gp-steps {
        grid-template-columns: 1fr;
    }
    .gp-finance-actions {
        flex-direction: column;
    }
    .gp-finance-actions .gp-btn-primary,
    .gp-finance-page .gp-btn-outline {
        width: 100%;
        min-width: 0;
    }
}

/* ── Log pages, tickets, invest tasks ── */
.gp-log-page .gp-log-filter {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-bottom: 14px;
}
.gp-log-page .gp-log-filter .gp-input-wrap:first-child {
    grid-column: 1 / -1;
}
.gp-log-card { padding: 0; overflow: hidden; }
.gp-log-list { display: flex; flex-direction: column; }
.gp-log-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: start;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(56, 140, 220, 0.1);
}
.gp-log-item:last-child { border-bottom: 0; }
.gp-log-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.gp-log-item__icon.is-credit {
    background: rgba(82, 183, 136, 0.15);
    color: #6ee7b7;
}
.gp-log-item__icon.is-debit {
    background: rgba(231, 111, 81, 0.15);
    color: #ffb4a2;
}
.gp-log-item__body strong {
    display: block;
    font-size: 0.9rem;
    line-height: 1.3;
}
.gp-log-item__body small,
.gp-log-item__body time {
    display: block;
    font-size: 0.72rem;
    color: var(--gp-muted);
    margin-top: 3px;
}
.gp-log-type {
    display: inline-block;
    margin-top: 6px;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(96, 165, 250, 0.14);
    color: #93c5fd;
}
.gp-log-note {
    margin-top: 6px;
    font-size: 0.72rem;
    color: #fbbf24;
}
.gp-log-item__side { text-align: right; min-width: 92px; }
.gp-log-amount {
    font-size: 0.95rem;
    font-weight: 800;
    white-space: nowrap;
}
.gp-log-amount.is-credit { color: #6ee7b7; }
.gp-log-amount.is-debit { color: #ffb4a2; }
.gp-log-fee,
.gp-log-method {
    display: block;
    font-size: 0.68rem;
    color: var(--gp-muted);
    margin-top: 4px;
}
.gp-log-status {
    display: inline-block;
    margin-top: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.gp-log-status.is-success { background: rgba(82, 183, 136, 0.18); color: #6ee7b7; }
.gp-log-status.is-pending { background: rgba(251, 191, 36, 0.16); color: #fcd34d; }
.gp-log-status.is-failed { background: rgba(231, 111, 81, 0.16); color: #ffb4a2; }
.gp-pagination {
    padding: 14px 16px;
    border-top: 1px solid rgba(56, 140, 220, 0.1);
}
.gp-pagination nav { display: flex; justify-content: center; }
.gp-pagination .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.gp-pagination .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 10px;
    border-radius: 10px;
    border: 1px solid rgba(56, 140, 220, 0.18);
    background: rgba(10, 24, 48, 0.7);
    color: #dbeafe;
    font-size: 0.78rem;
    font-weight: 700;
}
.gp-pagination .page-item.active .page-link {
    background: var(--gp-primary);
    border-color: var(--gp-primary);
    color: #fff;
}
.gp-btn-primary--sm {
    padding: 10px 14px;
    font-size: 0.78rem;
    white-space: nowrap;
}
.gp-input-wrap--textarea {
    align-items: stretch;
    min-height: 120px;
    padding-top: 12px;
    padding-bottom: 12px;
}
.gp-input-wrap--textarea textarea {
    width: 100%;
    min-height: 96px;
    resize: vertical;
    background: transparent;
    border: 0;
    color: #fff;
    font: inherit;
    outline: none;
}
.gp-file-upload input { display: none; }
.gp-file-upload label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px dashed rgba(96, 165, 250, 0.28);
    color: var(--gp-primary-light);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
}
.gp-invest-list { display: flex; flex-direction: column; gap: 12px; }
.gp-invest-card { padding: 16px; }
.gp-invest-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.gp-invest-card__head strong { display: block; font-size: 0.95rem; }
.gp-invest-card__head small { color: var(--gp-muted); font-size: 0.72rem; }
.gp-invest-card__head .gp-log-status { margin-left: auto; }
.gp-invest-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    object-fit: cover;
}
.gp-invest-card__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.gp-invest-card__grid label {
    display: block;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--gp-muted);
}
.gp-invest-card__grid strong {
    display: block;
    margin-top: 4px;
    font-size: 0.88rem;
}
.gp-invest-cancel { margin-top: 14px; width: 100%; text-align: center; }
.gp-ticket-list { display: flex; flex-direction: column; }
.gp-ticket-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(56, 140, 220, 0.1);
}
.gp-ticket-item:last-child { border-bottom: 0; }
.gp-ticket-item__main strong { display: block; }
.gp-ticket-item__main small,
.gp-ticket-item__main time {
    display: block;
    font-size: 0.72rem;
    color: var(--gp-muted);
    margin-top: 3px;
}
.gp-ticket-item__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.gp-btn-outline--sm {
    padding: 8px 12px;
    font-size: 0.72rem;
}
.gp-ticket-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    padding: 16px;
    margin-bottom: 12px;
}
.gp-ticket-head strong { display: block; font-size: 1rem; }
.gp-ticket-head small { color: var(--gp-muted); font-size: 0.75rem; }
.gp-ticket-head__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
.gp-ticket-thread { display: flex; flex-direction: column; gap: 12px; margin-bottom: 12px; }
.gp-ticket-msg {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.gp-ticket-msg.is-admin { flex-direction: row-reverse; }
.gp-ticket-msg__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4dabf7, #9775fa);
    color: #fff;
    flex-shrink: 0;
}
.gp-ticket-msg.is-admin .gp-ticket-msg__avatar {
    background: linear-gradient(135deg, #f4a261, #e76f51);
}
.gp-ticket-msg__bubble {
    max-width: min(100%, 520px);
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(56, 140, 220, 0.14);
    background: rgba(10, 24, 48, 0.82);
}
.gp-ticket-msg.is-admin .gp-ticket-msg__bubble {
    background: rgba(244, 162, 97, 0.1);
    border-color: rgba(244, 162, 97, 0.22);
}
.gp-ticket-msg__body { font-size: 0.88rem; line-height: 1.5; }
.gp-ticket-msg__bubble footer {
    margin-top: 8px;
    font-size: 0.68rem;
    color: var(--gp-muted);
}
.gp-ticket-attach {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gp-primary-light);
}
.gp-control-link-card {
    padding: 20px;
    text-align: center;
}
.gp-control-link-hint {
    margin-top: 12px;
    font-size: 0.82rem;
    color: var(--gp-muted);
}

/* ── Daily Check-in ── */
.gp-checkin-page .gp-checkin-streak {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    margin-bottom: 14px;
}
.gp-checkin-streak label {
    display: block;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--gp-muted);
}
.gp-checkin-streak strong {
    display: block;
    font-size: 1.35rem;
    margin-top: 4px;
}
.gp-checkin-streak small {
    display: block;
    font-size: 0.72rem;
    color: var(--gp-muted);
    margin-top: 4px;
}
.gp-checkin-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}
.gp-checkin-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 28px 16px;
    color: var(--gp-muted);
    font-size: 0.88rem;
}
.gp-checkin-card {
    position: relative;
    padding: 14px 12px;
    border-radius: 18px;
    border: 1px solid rgba(56, 140, 220, 0.14);
    background: linear-gradient(155deg, rgba(12, 28, 54, 0.88), rgba(8, 16, 34, 0.92));
    text-align: center;
    min-height: 108px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.gp-checkin-card__day {
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--gp-muted);
    text-transform: uppercase;
}
.gp-checkin-card__name {
    font-size: 0.95rem;
    font-weight: 800;
}
.gp-checkin-card__amount {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--gp-primary-light);
}
.gp-checkin-card__status {
    margin-top: 4px;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 999px;
}
.gp-checkin-card.is-available {
    border-color: rgba(255, 212, 59, 0.45);
    box-shadow: 0 0 24px rgba(255, 212, 59, 0.12);
}
.gp-checkin-card.is-available .gp-checkin-card__status {
    background: rgba(255, 212, 59, 0.18);
    color: #fcd34d;
}
.gp-checkin-card.is-claimed .gp-checkin-card__status {
    background: rgba(82, 183, 136, 0.18);
    color: #6ee7b7;
}
.gp-checkin-card.is-locked .gp-checkin-card__status {
    background: rgba(255, 255, 255, 0.06);
    color: var(--gp-muted);
}
.gp-checkin-card.is-disabled {
    opacity: 0.55;
}
.gp-checkin-page #gp-checkin-claim {
    margin-top: 4px;
}
.gp-checkin-msg {
    margin-top: 10px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: #6ee7b7;
}

@media (min-width: 640px) {
    .gp-checkin-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 640px) {
    .gp-log-page .gp-log-filter {
        grid-template-columns: 1fr;
    }
    .gp-log-item {
        grid-template-columns: auto 1fr;
    }
    .gp-log-item__side {
        grid-column: 2;
        text-align: left;
        margin-top: 4px;
    }
}
