:root {
    --brx-bg: #F2F7F6;
    --brx-white: #FFFFFF;
    --brx-gray: #3F3F3F;
    --brx-light-green: #CCFA89;
    --brx-light-gray: #F2F7F6;
    --brx-footer-inactive-gray: #484848;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { height: 100%; width: 100%; overflow: hidden; font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; }
body { background: #FEFEFE; display: flex; flex-direction: column; }

/* ===== LOADING ===== */
.loading-screen {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--brx-gray); display: flex; align-items: center; justify-content: center; z-index: 9999;
}
.loading-screen.hidden { display: none; }
.loader-dots {
    display: flex; gap: 8px; align-items: center;
}
.loader-dot {
    width: 12px; height: 12px; background: var(--brx-light-green); border-radius: 50%;
    animation: bounce 0.6s ease-in-out infinite;
}
.loader-dot:nth-child(1) { animation-delay: 0s; }
.loader-dot:nth-child(2) { animation-delay: 0.1s; }
.loader-dot:nth-child(3) { animation-delay: 0.2s; }
.loader-dot:nth-child(4) { animation-delay: 0.3s; }
.loader-dot:nth-child(5) { animation-delay: 0.4s; }
.loader-dot:nth-child(6) { animation-delay: 0.5s; }
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ===== APP CONTAINER ===== */
.app-wrap { display: none; flex-direction: column; height: 90%; width: 100%; margin: 0 auto; }
.app-wrap.visible { display: flex; }
@media screen and (min-height: 700px) {
    .app-wrap { height: calc(90% - 2rem); }
}

/* ===== PAGES ===== */
.page { display: none; flex: 1; flex-direction: column; overflow-y: auto; padding: 0.5rem; }
.page.active { display: flex; }
.page.dark { background: var(--brx-gray); }
.page::-webkit-scrollbar { width: 4px; }
.page::-webkit-scrollbar-thumb { background: var(--brx-light-green); border-radius: 2px; }
#page-shop { overflow: hidden; padding: 0; flex-direction: column; height: 100%; }
#page-shop.active { display: flex; }

/* ===== CARDS ===== */
.card-box {
    background: var(--brx-light-gray); border-radius: 1.5rem; padding: 0.3rem 1rem 0.5rem; margin: 0.7rem 0.5rem;
    box-shadow: 0px 3px 6px 2px rgb(0 0 0 / 34%);
}
.card-divider { height: 2px; background: var(--brx-white); margin: 0.5rem 0; }
.card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.6rem; }
.card-head-left { display: flex; align-items: center; }
.card-icon {
    width: 2rem; height: 2rem; border: 2px solid var(--brx-gray); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin-right: 0.6rem;
    font-size: 1rem; color: var(--brx-gray); opacity: 0.75; overflow: hidden;
}
.card-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.card-icon.no-border { border: none; }
.card-icon.green { border-color: var(--brx-light-green); color: var(--brx-light-green); }
.card-title { font-weight: 700; font-size: 0.85rem; color: var(--brx-gray); }
.card-sub { font-size: 0.7rem; color: #888; margin-top: 0.1rem; }

/* ===== BUTTONS ===== */
.btn-pill {
    background: var(--brx-light-green); color: var(--brx-gray); border: none; border-radius: 20px;
    padding: 0.25rem 1rem; font-weight: 700; font-size: 0.72rem; cursor: pointer;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}
.btn-pill-outline {
    background: transparent; border: 2px solid var(--brx-light-green); color: var(--brx-gray);
    border-radius: 20px; padding: 0.4rem 0.85rem; font-weight: 700; font-size: 0.72rem; cursor: pointer;
}

.action-row { display: flex; gap: 0.5rem; padding: 0.75rem 0; margin-top: 0.5rem; }
.btn-cta {
    flex: 1 1 0; border-radius: 1.25rem; font-weight: 600; padding: 0.6rem 0.4rem;
    letter-spacing: 0.3px; font-size: 0.85rem; display: flex; align-items: center;
    justify-content: center; gap: 0.55rem; cursor: pointer; text-transform: uppercase;
    border: none; outline: none;
    box-shadow: 0px 6px 11px 2px rgb(0 0 0 / 47%);
}
.btn-cta.start {
    background: var(--brx-light-green); color: var(--brx-gray);
    border: 2px solid var(--brx-light-green);
}
.btn-cta.start.scanning {
    background: var(--brx-white); color: var(--brx-gray);
    border: 2px solid var(--brx-light-green);
}
.btn-cta.withdraw {
    background: var(--brx-gray); color: var(--brx-light-green);
    border: 2px solid var(--brx-light-green);
}
.btn-cta.withdraw i { font-size: 0.85rem; }

/* ===== LIVE BADGE ===== */
.live-badge {
    display: none; align-items: center; gap: 0.3rem; background: var(--brx-light-gray); border: none;
    padding: 0.25rem 0.8rem; border-radius: 999px; font-size: 0.75rem; font-weight: 600; color: var(--brx-gray);
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}
.live-badge.active { display: flex; }
.live-dot { width: 7px; height: 7px; background: red; border-radius: 50%; box-shadow: 0 0 4px rgba(255,0,0,0.5); animation: live-pulse 1.3s infinite ease-in-out; }
@keyframes live-pulse { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.2); opacity: 0.8; } }

/* ===== BLOCKCHAIN CAROUSEL ===== */
.blockchains-carousel { position: relative; display: flex; align-items: center; }
.chain-track { 
    display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.05rem 0.25rem 0.25rem; 
    scrollbar-width: none; -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth; flex-wrap: nowrap; width: 100%;
}
.chain-track::-webkit-scrollbar { display: none; }
.chain-btn {
    flex: 0 0 74px; padding: 0.1rem 0; border-radius: 1rem; 
    border: 1px solid var(--brx-footer-inactive-gray);
    background: var(--brx-white); display: flex; flex-direction: column; align-items: center; 
    justify-content: center; cursor: pointer; transition: all 0.2s ease;
    box-shadow: 0 0 0 1px rgb(0 0 0 / 50%);
}
.chain-btn.selected { background: var(--brx-light-green); }
.chain-btn img { width: 2rem; height: 2rem; margin-bottom: 0; }
.chain-btn span { font-size: 0.8rem; font-weight: 600; color: var(--brx-gray); }

.chain-btn.locked {
    border: 1px solid var(--brx-footer-inactive-gray);
    opacity: 0.6; cursor: pointer; position: relative;
    box-shadow: none;
}

.carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 1.25rem; height: 1.25rem; border-radius: 999px;
    background: var(--brx-white); border: 1px solid var(--brx-gray);
    color: var(--brx-gray); opacity: 0.75;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; user-select: none; font-size: 0.65rem; z-index: 2;
}
.carousel-arrow.prev { left: 0; }
.carousel-arrow.next { right: 0; }
.carousel-arrow.hidden { display: none !important; }

/* ===== CHECKED LIST ===== */
.check-panel {
    background: rgba(204, 250, 137, 0.5); border-radius: 1.2rem; padding: 0.25rem;
}
.check-list { 
    background: var(--brx-white); border-radius: 1rem; padding: 0.3rem 0.6rem;
    min-height: 6rem; max-height: 6rem; overflow-y: auto;
    display: flex; flex-direction: column; gap: 0.25rem; margin: 0;
}
.check-item { display: flex; align-items: center; gap: 0.3rem; font-size: 0.7rem; }
.check-amt {
    background: var(--brx-gray); color: var(--brx-light-green); padding: 0.22rem 0.48rem;
    border-radius: 999px; font-weight: 500; font-size: 0.7rem; white-space: nowrap; line-height: 1;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.08), 0 1px 1px rgba(0,0,0,0.08);
}
.check-sep { color: #333; font-weight: 400; font-size: 0.65rem; }
.check-txt { color: #333; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1; font-weight: 600; font-size: 0.65rem; }

/* ===== FOUND WALLET ===== */
.found-item {
    display: flex; align-items: center; background: var(--brx-white); border-radius: 999px;
    padding: 0.3rem 0.5rem; margin: 0.5rem 0; gap: 0.3rem;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.3);
}
.found-amt {
    display: inline-flex; align-items: center; background: var(--brx-gray); color: var(--brx-light-green);
    padding: 0.32rem 0.48rem 0.22rem 0.35rem; border-radius: 999px; font-weight: 600; font-size: 0.75rem;
    gap: 0.25rem; line-height: 1;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,0.08), 0 1px 1px rgba(0,0,0,0.08);
}
.found-amt img { width: 1.2rem; height: 1.2rem; filter: invert(1) brightness(2); }
.found-sep { color: var(--brx-gray); font-size: 0.7rem; }
.found-seed { font-size: 0.7rem; color: #3a3a3a; font-weight: 600; flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ===== FOOTER ===== */
.footer {
    background: var(--brx-gray);
    border-top-left-radius: 2rem;
    border-top-right-radius: 2rem;
    padding: 0 1.5rem; 
    display: flex; 
    justify-content: space-around; 
    align-items: flex-end; 
    z-index: 100;
    height: 10%;
    min-height: 85px;
    flex-shrink: 0;
    box-shadow: 0px 6px 20px 8px var(--brx-footer-inactive-gray);
}
@media screen and (min-height: 700px) {
    .footer {
        height: calc(10% + 2rem);
    }
    .footer-icon {
        margin-bottom: 2rem !important;
    }
}
.footer-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 1;
    position: relative;
    height: 100%;
    color: var(--brx-white);
}
.footer-icon {
    width: 3.2rem;
    height: 3.2rem;
    object-fit: contain;
    border-radius: 50%;
    transition: border 0.15s ease-in-out, transform 0.1s ease-in-out, box-shadow 0.15s ease-in-out;
    border: 2px solid transparent;
    margin-bottom: 1rem;
}
.footer-btn.active .footer-icon { 
    border: 2px solid var(--brx-light-green);
    box-shadow: 0 0 8px var(--brx-light-green);
}
.footer-btn:not(.active):active .footer-icon {
    transform: scale(0.92);
}
.footer-btn.locked { 
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.55;
}
.footer-btn.locked .footer-icon {
    filter: grayscale(100%);
    border: 1px dashed var(--brx-footer-inactive-gray);
}
.footer-btn .lock-badge {
    position: absolute; top: 8px; right: calc(50% - 22px);
    transform: translateX(50%);
    background: var(--brx-gray);
    color: var(--brx-light-green);
    border-radius: 9999px;
    padding: 4px 6px;
    font-size: 0.7rem;
    line-height: 1;
    box-shadow: 0 0 0 2px var(--brx-gray), 0 2px 8px rgba(0,0,0,.25);
}

/* ===== WALLETS LOCKED OVERLAY ===== */
.wallets-locked-overlay {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(63,63,63,0.97); display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center; padding: 2rem; z-index: 10;
}
.wallets-locked-overlay i { font-size: 3.5rem; color: var(--brx-light-green); margin-bottom: 1rem; }
.wallets-locked-overlay h3 { color: white; font-size: 1.2rem; margin-bottom: 0.5rem; }
.wallets-locked-overlay p { color: #999; font-size: 0.85rem; margin-bottom: 1.5rem; line-height: 1.4; }
.wallets-locked-overlay button {
    background: var(--brx-light-green); color: var(--brx-gray); border: none;
    padding: 0.9rem 2rem; border-radius: 16px; font-weight: 700; cursor: pointer;
}

/* ===== WALLETS PAGE ===== */
#page-wallets { background: var(--brx-white); padding: 0; }
#page-wallets.active { display: flex; }

.wallets-top {
    background: var(--brx-gray); padding: 0.5rem 1rem 0.75rem;
    border-bottom-left-radius: 2rem; border-bottom-right-radius: 2rem;
    margin-bottom: 0.5rem; text-align: center;
}
.wallets-header {
    display: inline-block;
    background: var(--brx-gray); color: var(--brx-light-green); padding: 0.75rem 1.5rem;
    border-radius: 20px; text-align: center; font-weight: 700; font-size: 0.85rem;
    border: 2px solid var(--brx-light-green); cursor: pointer;
    letter-spacing: 0.5px;
}
.wallets-title { 
    color: var(--brx-light-gray); font-size: 0.8rem; text-align: center; 
    letter-spacing: 0.15rem; margin-top: 0.5rem; font-weight: 600; opacity: 0.8;
}
.wallets-list { display: flex; flex-direction: column; gap: 0.6rem; padding: 0 0.5rem; }

.wallet-card {
    background: var(--brx-light-gray); border-radius: 1rem; padding: 0.3rem 0.75rem 0.5rem;
    display: grid; grid-template-columns: 4.5rem 1fr auto; align-items: center; gap: 0.5rem;
    box-shadow: 0px 3px 6px 2px rgb(0 0 0 / 34%);
}
.wallet-icon {
    width: 4rem; height: 4rem; border-radius: 16px; background: var(--brx-light-gray);
    display: flex; align-items: center; justify-content: center;
}
.wallet-icon img { width: 4rem; height: 4rem; object-fit: contain; }

.wallet-info { 
    display: flex; flex-direction: column; gap: 0.15rem;
    background: var(--brx-gray); border-radius: 0.75rem; padding: 0.4rem 0.8rem;
    border: 1px solid var(--brx-light-green);
}
.wallet-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.75rem; font-family: var(--brx-font);
}
.wallet-label { color: var(--brx-light-green); font-weight: 600; }
.wallet-val { color: var(--brx-white); font-weight: 400; }

.wallet-copy {
    background: var(--brx-light-green); color: var(--brx-gray); border: none;
    padding: 0.45rem 0.5rem; border-radius: 1rem; font-weight: 800; font-size: 0.7rem;
    cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.3rem; letter-spacing: 0.03rem;
    box-shadow: 0px 3px 6px 2px rgb(0 0 0 / 20%);
    min-width: 5rem;
}
.wallet-copy i { font-size: 0.8rem; }
.wallet-copy.copied { background: var(--brx-gray); color: var(--brx-light-green); border: 1px solid var(--brx-light-green); }

/* ===== SHOP PAGE ===== */
.top-container {
    padding: 0.75rem 1rem 0.75rem;
    border-bottom-left-radius: 1.5rem;
    border-bottom-right-radius: 1.5rem;
    background: #F1F7F5;
    margin-bottom: 0.5rem;
    overflow: visible;
}
.bottom-actions { 
    display: flex; 
    gap: 1rem;
    padding: 0 1rem;
    overflow: visible;
}
.btn-cta.shop-tab {
    position: relative;
    overflow: visible;
    flex: 1 1 0;
    height: 2.5rem;
    border-radius: 1.25rem; 
    font-weight: 700; 
    letter-spacing: 0.3px;
    font-size: 0.85rem; 
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer; 
    border: 2px solid var(--brx-light-green);
    transition: transform .15s ease, box-shadow .2s ease;
    box-shadow: 0 6px 11px 2px rgba(0, 0, 0, .35);
    text-transform: uppercase;
}
.btn-cta.shop-tab.active { 
    background: var(--brx-light-green); 
    color: var(--brx-gray); 
}
.btn-cta.shop-tab:not(.active) { 
    background: var(--brx-white) !important; 
    color: var(--brx-gray) !important; 
    border: 2px solid var(--brx-gray); 
}

.hotdeals-content { display: none; flex-direction: column; flex: 1; min-height: 0; }
.hotdeals-content.active { display: flex; }
.blockchains-content { display: flex; flex-direction: column; flex: 1; min-height: 0; }
.blockchains-content.hidden { display: none; }

.hotdeals-header {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--brx-white); border-radius: 1rem; padding: 0.75rem 1rem;
    margin: 0.5rem 1rem; border: 2px solid var(--brx-gray);
}
.hotdeals-header-left { display: flex; align-items: center; gap: 0.5rem; }
.hotdeals-icon { font-size: 1.5rem; }
.hotdeals-title { font-weight: 700; font-size: 0.9rem; color: var(--brx-gray); }
.hotdeals-subtitle { font-size: 0.7rem; color: #888; }
.hotdeals-timer {
    background: var(--brx-light-gray); border: 2px solid var(--brx-gray); border-radius: 999px;
    padding: 0.4rem 0.8rem; display: flex; align-items: center; gap: 0.4rem;
    font-weight: 700; font-size: 0.85rem; color: var(--brx-gray);
}
.hotdeals-timer i { font-size: 0.8rem; }

.hotdeals-list {
    flex: 1; overflow-y: auto; padding: 0.5rem 1rem;
    display: flex; flex-direction: column; gap: 0.75rem;
}
.hotdeal-item {
    background: var(--brx-white); border-radius: 1.25rem; padding: 1rem;
    border: 2px solid var(--brx-gray); cursor: pointer; transition: all 0.2s;
    display: flex; align-items: center; gap: 1rem;
}
.hotdeal-item:hover { transform: translateY(-2px); }
.hotdeal-item.selected {
    background: var(--brx-light-green); border-color: var(--brx-gray);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.hotdeal-icon {
    width: 4rem; height: 4rem; border-radius: 1rem; background: var(--brx-light-gray);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    border: 2px solid var(--brx-gray); overflow: hidden;
}
.hotdeal-icon img { width: 3.5rem; height: 3.5rem; }
.hotdeal-info { flex: 1; }
.hotdeal-name { font-weight: 700; font-size: 1rem; color: var(--brx-gray); margin-bottom: 0.3rem; }
.hotdeal-prices { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.3rem; }
.hotdeal-original {
    text-decoration: line-through; color: #888; font-size: 0.85rem; font-weight: 600;
    background: var(--brx-light-gray); padding: 0.2rem 0.5rem; border-radius: 999px;
}
.hotdeal-price {
    background: var(--brx-light-green); color: var(--brx-gray); font-weight: 800;
    padding: 0.25rem 0.6rem; border-radius: 999px; font-size: 0.9rem;
}
.hotdeal-item.selected .hotdeal-price { background: var(--brx-white); }
.hotdeal-desc { font-size: 0.75rem; color: #666; }

.blockchains-card {
    background: #F2F6F5;
    border-radius: 1.5rem;
    padding: 0.3rem 0 0.5rem 0.5rem;
    margin: 1rem 0 0 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}
.checkout-wrapper {
    background: #F2F6F5;
    border-radius: 1.5rem;
    padding: 0.5rem;
    margin: 1rem 1rem 1rem 1rem;
    flex-shrink: 0;
}
.products-card {
    margin-top: -0.1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}
.shop-list { 
    overflow-y: auto; 
    padding: 0.5rem 0.5rem 0.5rem 0.25rem;
    margin-right: 4px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    min-height: 0;
}
.shop-list::-webkit-scrollbar { width: 4px; }
.shop-list::-webkit-scrollbar-track { background: transparent; }
.shop-list::-webkit-scrollbar-thumb { background: var(--brx-light-green); border-radius: 3px; }
.shop-item {
    display: flex; 
    align-items: center; 
    padding: 0.25em 0.5em;
    background: #ffffff;
    border: 1px solid var(--brx-light-gray);
    border-radius: 1em; 
    cursor: pointer; 
    transition: transform .12s ease, box-shadow .25s ease;
    box-shadow: 0 0 3px 3px #3f3f3f45;
    width: 100%;
    box-sizing: border-box;
}
.shop-item:hover { 
    transform: translateY(-2px);
    box-shadow: inset 0 0 0 2px var(--brx-light-green);
}
.shop-item:active { transform: translateY(0) scale(.99); }
.shop-item.selected { 
    background: var(--brx-light-green); 
    color: var(--brx-gray);
    border-color: var(--brx-light-green);
    box-shadow: 0 0 0 3px rgba(173, 250, 137, .35), 0 8px 16px -6px rgba(0,0,0,.3);
}
.shop-item.owned { 
    pointer-events: none;
    cursor: not-allowed;
    opacity: 0.8;
    filter: grayscale(60%);
}
.shop-item-icon {
    width: 3.5rem; height: 3.5rem; 
    display: flex; align-items: center; justify-content: center; 
    margin-right: 0.5rem;
}
.shop-item-icon img { width: 3.5rem; height: 3.5rem; border-radius: 12px; object-fit: cover; }
.shop-item-info { display: flex; flex-direction: column; gap: 0.4rem; }
.shop-item-name { font-weight: 800; font-size: 1rem; color: var(--brx-gray); }
.shop-item.selected .shop-item-name { color: var(--brx-gray); }
.shop-item-price {
    display: inline-block; background: var(--brx-light-green); color: var(--brx-gray);
    padding: 0.15rem 0.3rem; border-radius: 999px; border: 1px solid var(--brx-light-green);
    font-weight: 800; font-size: 0.75rem; min-width: 4rem; text-align: center;
}
.shop-item.selected .shop-item-price { background: white; border-color: white; }
.checkout-inner {
    display: grid;
    grid-template-columns: auto auto;
    gap: 1rem;
    align-items: center;
    padding: 0.35rem;
}
.pill-stack { 
    display: grid;
    gap: 0.2rem;
    padding: 0.35rem 0 0.35rem 0.35rem;
}
.dark-pill-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--brx-gray); 
    color: var(--brx-white);
    padding: 0.25rem 0.9rem;
    border-radius: 1rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    font-size: 0.75rem;
}
.dark-pill-row .label { opacity: 0.9; }
.dark-pill-row .value.green { color: var(--brx-light-green); }
.btn-pay {
    min-width: 8rem;
    height: 3rem;
    padding: 0 22px;
    border-radius: 16px;
    background: #DEF8B9;
    color: var(--brx-gray); 
    border: 1.5px solid #DEF8B9;
    font-weight: 900;
    letter-spacing: 0.5px;
    font-size: 1rem;
    cursor: pointer;
    transition: transform .12s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
    box-shadow: 0 10px 24px -10px rgba(130, 180, 90, .4);
}
.btn-pay.active {
    background: var(--brx-light-green);
    border-color: var(--brx-light-green);
    box-shadow: 0 10px 24px -10px rgba(130, 200, 90, .7);
}
.btn-pay.active:hover { transform: translateY(-2px); box-shadow: 0 14px 32px -12px rgba(130, 200, 90, .85); }
.btn-pay:active { transform: translateY(0) scale(.98); }

/* ===== REFERRAL PAGE ===== */
#page-referral.active { display: flex; flex-direction: column; height: 100%; padding: 0; }
.ref-top-container {
    background: var(--brx-light-gray); padding: 0.75rem 1rem 1.25rem;
    border-bottom-left-radius: 2rem; border-bottom-right-radius: 2rem;
    text-align: center; width: 100%;
    box-shadow: 0px 3px 6px 2px rgb(0 0 0 / 34%);
}
.ref-title { font-size: 1rem; font-weight: 600; color: var(--brx-gray); letter-spacing: 1px; margin-bottom: 0.75rem; }
.ref-code {
    background: var(--brx-light-gray); border-radius: 10px; padding: 0.65rem 0.9rem;
    font-size: 1rem; font-weight: 600; letter-spacing: 8px; color: var(--brx-gray);
    margin-bottom: 0.75rem; display: inline-block; padding-left: 1.2rem;
    border: 1px solid var(--brx-light-green);
    box-shadow: inset 0px 0px 0px 4px rgb(255 255 255), 0 2px 6px rgba(0, 0, 0, .14);
}
.ref-btns { display: flex; justify-content: center; gap: 0.6rem; }
.ref-btn {
    padding: 0.5rem 1rem; border-radius: 0.5rem; font-weight: 700; font-size: 0.85rem;
    cursor: pointer; display: flex; align-items: center; gap: 0.5rem; border: 1.5px solid var(--brx-light-green);
    background: var(--brx-light-green); color: var(--brx-gray);
}
.ref-btn.icon { background: var(--brx-light-green); padding: 0.5rem 0.65rem; }
.ref-btn.icon i { font-size: 1.1rem; }
.ref-btn.icon-copy { background: var(--brx-gray); border: 1.5px solid var(--brx-light-green); color: var(--brx-light-green); padding: 0.5rem 0.65rem; }
.ref-btn.icon-copy i { font-size: 1.1rem; }

.ref-scroll-area { flex: 1; overflow-y: auto; padding: 0.75rem 0.5rem; }

.ref-info-box {
    background: var(--brx-light-gray); border-radius: 1.5rem; padding: 0.5rem 1rem 0.75rem;
    margin: 0.5rem; box-shadow: 0px 3px 6px 2px rgb(0 0 0 / 34%);
}
.ref-info-head { display: flex; align-items: center; margin-bottom: 0.5rem; gap: 0.5rem; }
.ref-info-icon {
    width: 2rem; height: 2rem; border: 2px solid var(--brx-gray); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: var(--brx-gray); opacity: 0.75;
    font-size: 1rem;
}
.ref-info-title { font-weight: 700; color: var(--brx-gray); font-size: 0.85rem; }
.ref-info-sub { font-size: 0.7rem; color: var(--brx-gray); opacity: 0.75; }
.ref-divider { height: 2px; background: var(--brx-white); margin: 0.5rem 0; }

.ref-earned {
    text-align: center; padding: 0.75rem; background: var(--brx-white); border-radius: 1rem; margin: 0.5rem 0;
    box-shadow: 0px 3px 6px 2px rgb(0 0 0 / 34%);
}
.ref-earned-label { font-size: 0.72rem; color: var(--brx-gray); opacity: 0.9; font-weight: 600; letter-spacing: 0.3px; }
.ref-earned-val {
    font-size: 1.2rem; font-weight: 800; color: var(--brx-gray); letter-spacing: 0.5px;
    padding: 0.35rem 0.9rem; margin: 0.25rem 0 0.35rem; border-radius: 0.8rem;
    border: 2px solid var(--brx-light-green); background: var(--brx-white);
    box-shadow: inset 0 0 4px 6px var(--brx-light-gray), 0 2px 6px rgba(0, 0, 0, .10);
    display: inline-block; min-width: 8rem;
}
.ref-earned-sub { font-size: 0.68rem; color: var(--brx-gray); opacity: 0.7; }

.ref-action {
    background: var(--brx-white); border-radius: 1rem; padding: 0.75rem; text-align: center; margin-top: 0.5rem;
    box-shadow: 0px 3px 6px 2px rgb(0 0 0 / 34%);
}
.ref-action-icon {
    width: 2.25rem; height: 2.25rem; border: 2px solid var(--brx-gray); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 0.4rem; color: var(--brx-gray);
}
.ref-action-title { font-weight: 700; color: var(--brx-gray); font-size: 0.82rem; }
.ref-action-sub { font-size: 0.7rem; color: var(--brx-gray); opacity: 0.75; }
.ref-reward-amt {
    display: inline-block; background: var(--brx-gray); color: var(--brx-light-green);
    padding: 0.2rem 0.5rem; border-radius: 6px; font-weight: 700; font-size: 0.75rem;
}

/* ===== PROFILE PAGE ===== */
#page-profile.active { display: flex; flex-direction: column; height: 100%; padding: 0; }
.profile-scroll { flex: 1; overflow-y: auto; padding: 0.5rem; }

.profile-card {
    background: var(--brx-light-gray); border-radius: 1.5rem; padding: 0.75rem 1rem;
    margin-bottom: 0.5rem; box-shadow: 0px 3px 6px 2px rgb(0 0 0 / 34%);
}
.profile-header { display: flex; justify-content: space-between; align-items: flex-start; }
.profile-title { font-weight: 700; color: var(--brx-gray); font-size: 0.9rem; }
.profile-subtitle { font-size: 0.72rem; color: var(--brx-gray); opacity: 0.75; }
.profile-support {
    background: var(--brx-light-green); border: none; padding: 0.4rem 0.85rem; border-radius: 999px;
    font-size: 0.75rem; font-weight: 600; color: var(--brx-gray); cursor: pointer;
    box-shadow: 0px 3px 6px 2px rgb(0 0 0 / 20%);
}
.profile-divider { height: 2px; background: var(--brx-white); margin: 0.5rem 0; }

.profile-summary {
    display: grid; grid-template-columns: 4rem auto; gap: 0.75rem;
    background: var(--brx-white); border-radius: 1rem; padding: 0.75rem;
    box-shadow: 0px 3px 6px 2px rgb(0 0 0 / 20%);
}
.profile-avatar {
    width: 4rem; height: 4rem; border-radius: 50%; background: var(--brx-light-gray);
    border: 2px solid var(--brx-light-green); display: flex; align-items: center;
    justify-content: center; overflow: hidden; margin-top: 0.5rem;
    font-size: 1.5rem; font-weight: 700; color: var(--brx-gray);
}
.profile-avatar img { width: 90%; height: 90%; object-fit: cover; border-radius: 50%; }

.profile-info { display: flex; flex-direction: column; justify-content: center; gap: 0.25rem; }
.profile-kv-row {
    display: flex; align-items: center; background: var(--brx-light-gray);
    border-radius: 1rem; padding: 0.4rem 0.5rem; justify-content: center;
    box-shadow: 0px 3px 6px 2px rgb(0 0 0 / 10%);
}
.profile-kv-key { font-size: 0.7rem; color: var(--brx-gray); font-weight: 600; letter-spacing: 0.02em; }
.profile-kv-value {
    font-size: 0.7rem; font-weight: 500; background: var(--brx-gray); color: var(--brx-light-green);
    padding: 0.2rem 1rem; border-radius: 999px; margin-left: 0.25rem; letter-spacing: 0.06em;
}

.profile-actions { display: grid; grid-template-columns: 1fr 0.5fr; gap: 0.5rem; margin-top: 0.75rem; }
.btn-upgrade {
    width: 100%; padding: 0.65rem; border-radius: 999px; background: var(--brx-light-green);
    color: var(--brx-gray); border: none; font-weight: 700; font-size: 0.8rem; cursor: pointer;
    box-shadow: 0px 3px 6px 2px rgb(0 0 0 / 20%);
}
.btn-promo {
    position: relative; padding: 0.5rem 0.4rem; border-radius: 999px; 
    background: var(--brx-light-green); opacity: 0.6;
    color: var(--brx-gray); border: none; font-weight: 600; font-size: 0.6rem; cursor: not-allowed;
    line-height: 1.2; text-align: center; box-shadow: 0px 3px 6px 2px rgb(0 0 0 / 20%);
    overflow: hidden;
}
.btn-promo .soon-badge {
    position: absolute; top: 15%; left: -15%;
    background: var(--brx-gray); color: var(--brx-light-green); font-size: 0.45rem;
    padding: 0.1rem 1.2rem; font-weight: 700; transform: rotate(-35deg);
}

.tasks-card {
    background: var(--brx-light-gray); border-radius: 1.5rem; padding: 0.75rem 1rem;
    margin-bottom: 0.5rem; box-shadow: 0px 3px 6px 2px rgb(0 0 0 / 34%);
}
.tasks-header { display: flex; align-items: center; margin-bottom: 0.3rem; }
.tasks-dot-ring {
    width: 10px; height: 10px; border-radius: 50%;
    background: var(--brx-light-green); border: 1.5px solid var(--brx-gray);
}
.tasks-title { font-weight: 700; color: var(--brx-gray); font-size: 0.85rem; margin: 0 0.4rem; }
.tasks-subtitle { font-size: 0.72rem; color: var(--brx-gray); opacity: 0.75; }
.tasks-divider { height: 2px; background: var(--brx-white); margin: 0.5rem 0; }

.task-item {
    border: 2px solid #D0D0D0; border-radius: 1rem; padding: 0.75rem; background: var(--brx-white);
    box-shadow: 0px 3px 6px 2px rgb(0 0 0 / 15%);
}
.task-inner {
    border: 2px dashed #D0D0D0; border-radius: 0.75rem; padding: 0.6rem;
    box-shadow: 0px 2px 4px 1px rgb(0 0 0 / 10%);
}
.task-head { display: flex; align-items: center; }
.task-icon {
    width: 2.5rem; height: 2.5rem; background: var(--brx-white); border: 2px solid var(--brx-gray);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 0.6rem;
    color: var(--brx-gray); font-size: 1rem;
}
.task-title { font-weight: 700; color: var(--brx-gray); font-size: 0.85rem; }
.task-reward { font-size: 0.72rem; color: var(--brx-gray); opacity: 0.75; }
.task-reward-badge {
    background: var(--brx-gray); color: var(--brx-light-green);
    padding: 0.15rem 0.4rem; border-radius: 6px; font-weight: 700; font-size: 0.72rem;
}
.task-item .task-btns { display: flex; gap: 0.5rem; justify-content: center; margin-top: 0.6rem; }
.task-btn {
    padding: 0.55rem 1.5rem; border-radius: 999px; font-weight: 700; font-size: 0.75rem;
    cursor: pointer; border: none;
}
.task-btn.green { background: var(--brx-light-green); color: var(--brx-gray); box-shadow: 0px 3px 6px 2px rgb(0 0 0 / 20%); }
.task-btn.dark { 
    background: var(--brx-gray); color: var(--brx-white); padding: 0.55rem 1.3rem;
    border: 2px solid var(--brx-light-green); box-shadow: 0px 3px 6px 2px rgb(0 0 0 / 20%);
}

.popup-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8); z-index: 9999;
    display: flex; justify-content: center; align-items: center;
    padding: 1rem;
}
.popup-box {
    background: var(--brx-gray); border-radius: 1rem; padding: 1.5rem;
    max-width: 320px; width: 100%; position: relative;
    border: 2px solid var(--brx-light-green);
    box-shadow: 0 0 20px rgba(182, 255, 93, 0.4);
}
.popup-close {
    position: absolute; top: 0.75rem; right: 0.75rem;
    background: none; border: none; color: var(--brx-light-green);
    font-size: 1.5rem; cursor: pointer; line-height: 1;
}
.popup-title {
    font-size: 1.1rem; font-weight: 700; color: var(--brx-white);
    text-align: center; margin-bottom: 0.5rem;
}
.popup-arrow {
    text-align: center; color: var(--brx-light-green); font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.popup-text {
    color: var(--brx-white); font-size: 0.85rem; margin-bottom: 0.75rem;
    line-height: 1.4;
}
.popup-small {
    font-size: 0.8rem; opacity: 0.9;
}
.popup-highlight {
    color: var(--brx-light-green); font-weight: 700;
}
.popup-btn {
    width: 100%; padding: 0.75rem; border-radius: 8px;
    font-weight: 700; font-size: 0.9rem; cursor: pointer;
    border: none; margin-top: 0.5rem;
}
.popup-btn.green {
    background: var(--brx-light-green); color: var(--brx-gray);
}
.popup-btn.gray {
    background: var(--brx-footer-inactive-gray); color: var(--brx-white);
    border: 2px solid var(--brx-light-green);
}

.stats-card {
    background: var(--brx-light-gray); border-radius: 1.5rem; padding: 0.75rem 1rem;
    margin-bottom: 0.5rem; box-shadow: 0px 3px 6px 2px rgb(0 0 0 / 34%);
}
.stats-title { font-weight: 700; color: var(--brx-gray); font-size: 0.85rem; }
.stats-subtitle { font-size: 0.72rem; color: var(--brx-gray); opacity: 0.75; margin-top: 0.2rem; }
.stats-divider { height: 2px; background: var(--brx-white); margin: 0.5rem 0; }
.stats-amount { font-size: 1.6rem; font-weight: 800; color: var(--brx-gray); letter-spacing: 0.04em; }
.stats-progress {
    width: 100%; height: 1.5rem; background: rgba(255, 255, 255, 0.5);
    border-radius: 999px; overflow: hidden; margin: 0.5rem 0;
    box-shadow: 0px 3px 6px 2px rgb(0 0 0 / 34%);
}
.stats-progress-fill { height: 100%; background: var(--brx-light-green); border-radius: 999px; }

.stats-asset-wrapper {
    background: var(--brx-white); border-radius: 1rem; padding: 0.5rem;
}
.stats-asset {
    display: flex; align-items: center; background: #EFEFEF;
    border-radius: 1rem; padding: 0.5rem 0.6rem;
}
.stats-asset-dot {
    width: 12px; height: 12px; background: var(--brx-light-green); border: 2px solid var(--brx-gray);
    border-radius: 50%; margin-right: 0.5rem;
}
.stats-asset-icon { width: 1.5rem; height: 1.5rem; margin-right: 0.5rem; }
.stats-asset-text { flex: 1; font-size: 0.8rem; color: var(--brx-gray); font-weight: 600; }
.stats-asset-pct { font-weight: 800; color: var(--brx-gray); font-size: 0.9rem; }

.stats-carousel-wrapper { position: relative; }
.stats-carousel {
    display: flex; gap: 0.5rem; overflow-x: auto; padding: 0.5rem 0.25rem;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.stats-carousel::-webkit-scrollbar { display: none; }
.stats-chain {
    min-width: 100px; flex-shrink: 0; padding: 0.65rem; background: var(--brx-white);
    border-radius: 1rem; text-align: center; border: 2px solid var(--brx-gray);
}
.stats-chain img { width: 2.25rem; height: 2.25rem; margin-bottom: 0.25rem; }
.stats-chain-name { font-size: 0.7rem; font-weight: 600; color: var(--brx-gray); }
.stats-chain-pct {
    font-size: 0.6rem; background: var(--brx-gray); color: var(--brx-white);
    padding: 0.1rem 0.4rem; border-radius: 999px; font-weight: 700; display: inline-block; margin-top: 0.2rem;
}
.stats-carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 1.5rem; height: 1.5rem; border-radius: 50%; background: var(--brx-white);
    border: 1.5px solid var(--brx-gray); color: var(--brx-gray);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 0.7rem; z-index: 2;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.stats-carousel-arrow.prev { left: 0.25rem; }
.stats-carousel-arrow.next { right: 0.25rem; }

.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(15,15,15,0.6); display: none; align-items: center;
    justify-content: center; z-index: 1000; padding: 0.8rem; backdrop-filter: blur(3px);
}
.modal-overlay.active { display: flex; }
.modal-box {
    background: var(--brx-gray); border-radius: 18px; width: 100%; max-width: 380px;
    max-height: 85vh; overflow-y: auto; border: 2px solid var(--brx-light-green);
    box-shadow: 0 0 20px rgba(204,250,137,0.2); position: relative;
}
.modal-close {
    position: absolute; top: 10px; right: 12px; background: transparent;
    border: none; color: var(--brx-light-green); font-size: 1.1rem; cursor: pointer;
}
.modal-head { padding: 0.9rem 0.9rem 0.5rem; }
.modal-step { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.modal-step-pill {
    font-size: 0.62rem; font-weight: 800; letter-spacing: 0.5px;
    padding: 0.35rem 0.6rem; border-radius: 20px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: white;
}
.modal-step-text { font-size: 0.7rem; color: rgba(255,255,255,0.7); font-weight: 600; }
.modal-title { font-size: 1.15rem; font-weight: 800; color: white; margin-bottom: 0.25rem; }
.modal-subtitle { font-size: 0.72rem; color: rgba(255,255,255,0.65); line-height: 1.3; }
.modal-body { padding: 0.5rem 0.9rem; }
.modal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.modal-card {
    border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04);
    border-radius: 14px; padding: 0.7rem; display: flex; align-items: center; gap: 0.5rem;
    cursor: pointer; transition: all 0.15s;
}
.modal-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(204,250,137,0.3); }
.modal-card.selected { background: rgba(204,250,137,0.1); border-color: rgba(204,250,137,0.45); }
.modal-card-icon {
    position: relative;
    width: 40px; height: 40px; border-radius: 12px; background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
}
.modal-card-icon img { width: 26px; height: 26px; }
.network-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #4a4a4a;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #3F3F3F;
}
.network-badge img { width: 12px !important; height: 12px !important; }
.modal-card-name { font-size: 0.8rem; font-weight: 800; color: white; }
.modal-card-net { font-size: 0.68rem; color: rgba(255,255,255,0.6); margin-top: 0.15rem; }
.modal-foot { padding: 0.7rem 0.9rem 0.9rem; border-top: 1px solid rgba(255,255,255,0.06); }
.modal-continue {
    width: 100%; border: none; border-radius: 14px; padding: 0.75rem;
    font-weight: 800; letter-spacing: 0.3px; background: var(--brx-light-green);
    color: var(--brx-gray); cursor: pointer; font-size: 0.85rem;
}
.modal-continue.disabled { opacity: 0.45; cursor: not-allowed; }
.modal-footnote { margin-top: 0.5rem; font-size: 0.68rem; color: rgba(255,255,255,0.5); text-align: center; }

.pay-selected {
    display: flex; align-items: center; background: rgba(255,255,255,0.06);
    border-radius: 12px; padding: 0.65rem; margin-bottom: 0.7rem; gap: 0.5rem;
}
.pay-icon-wrapper {
    position: relative;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}
.pay-icon-wrapper img { width: 36px; height: 36px; }
.pay-icon-wrapper .network-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #4a4a4a;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #3F3F3F;
}
.pay-icon-wrapper .network-badge img { width: 10px !important; height: 10px !important; }
.pay-selected-name { font-weight: 700; color: white; font-size: 0.85rem; }
.pay-selected-net { font-size: 0.68rem; color: rgba(255,255,255,0.6); }
.pay-timer {
    margin-left: auto; background: rgba(0,0,0,0.3); padding: 0.35rem 0.6rem;
    border-radius: 15px; color: white; font-weight: 600; font-size: 0.75rem;
    display: flex; align-items: center; gap: 0.3rem;
}
.pay-qr { background: rgba(0,0,0,0.3); padding: 0.4rem; border-radius: 8px; margin-left: 0.4rem; cursor: pointer; transition: background 0.15s; }
.pay-qr:hover { background: rgba(0,0,0,0.5); }
.pay-field {
    background: rgba(255,255,255,0.06); border-radius: 10px; padding: 0.65rem; margin-bottom: 0.55rem;
}
.pay-field-label { font-size: 0.68rem; color: rgba(255,255,255,0.6); margin-bottom: 0.2rem; }
.pay-field-row { display: flex; align-items: center; }
.pay-field-val { flex: 1; font-weight: 600; color: white; font-size: 0.85rem; }
.pay-field-copy {
    background: rgba(0,0,0,0.3); border: none; color: white;
    padding: 0.4rem 0.5rem; border-radius: 6px; cursor: pointer;
}
.pay-note { color: rgba(255,255,255,0.5); font-size: 0.68rem; text-align: center; margin: 0.7rem 0; }
.pay-btns { display: flex; gap: 0.4rem; }
.pay-btn {
    flex: 1; padding: 0.65rem; border-radius: 12px; font-weight: 700; font-size: 0.78rem;
    cursor: pointer; text-align: center; border: none;
}
.pay-btn.light { background: rgba(255,255,255,0.1); color: white; }
.pay-btn.green { background: var(--brx-light-green); color: var(--brx-gray); }

.qr-modal-overlay {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85); z-index: 1001; align-items: center; justify-content: center;
}
.qr-modal-overlay.active { display: flex; }
.qr-modal-box {
    background: var(--brx-gray); border-radius: 1.5rem; padding: 1.5rem;
    width: 90%; max-width: 320px; text-align: center; position: relative;
    border: 2px solid var(--brx-light-green);
}
.qr-modal-close {
    position: absolute; top: 0.75rem; right: 0.75rem; background: none; border: none;
    color: rgba(255,255,255,0.6); font-size: 1.2rem; cursor: pointer;
}
.qr-modal-title { color: white; font-weight: 700; font-size: 1rem; margin-bottom: 0.5rem; }
.qr-modal-subtitle { color: rgba(255,255,255,0.6); font-size: 0.75rem; margin-bottom: 1rem; }
.qr-code-container {
    background: white; border-radius: 1rem; padding: 1rem; display: inline-block; margin-bottom: 1rem;
}
.qr-code-container img { width: 180px; height: 180px; display: block; }
.qr-address {
    background: rgba(255,255,255,0.06); border-radius: 10px; padding: 0.6rem;
    color: white; font-size: 0.72rem; word-break: break-all; font-family: monospace;
}

#withdrawModal .modal-box {
    background: var(--brx-gray); border: 2px solid var(--brx-light-green);
    border-radius: 1.5rem; padding: 1.2rem 0.75rem; width: calc(100% - 1.5rem); max-width: 340px;
}
#withdrawModal .modal-title {
    color: var(--brx-light-gray); font-size: 0.95rem; font-weight: 600;
    text-align: center; margin-bottom: 1rem;
}
.seed-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; margin: 0 0.25rem 1.2rem;
}
.seed-input {
    display: flex; align-items: center; background: transparent;
    border: 2px solid var(--brx-light-green); border-radius: 999px;
    padding: 0.25rem 0.5rem;
}
.seed-num {
    color: var(--brx-light-gray); font-weight: 800; font-size: 0.8rem;
    min-width: 20px;
}
.seed-input input {
    flex: 1; background: transparent; border: none; outline: none;
    color: var(--brx-light-gray); font-size: 0.8rem; font-weight: 700; 
    width: 100%; min-width: 0;
}
.seed-input input::placeholder { color: rgba(255,255,255,0.3); }
.seed-btns {
    display: flex; gap: 0.5rem; justify-content: center;
}
.seed-btn {
    padding: 0.6rem 1.5rem; border-radius: 999px; font-weight: 700;
    font-size: 0.85rem; cursor: pointer; border: 2px solid var(--brx-light-green);
    letter-spacing: 1px;
}
.seed-btn.light { background: var(--brx-light-green); color: var(--brx-gray); }
.seed-btn.outline { background: transparent; color: white; }