* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #F0B90B;
    --primary-dark: #D9A707;
    --bg-primary: #0B0E11;
    --bg-secondary: #1E2329;
    --bg-card: #181A20;
    --text-primary: #EAECEF;
    --text-secondary: #848E9C;
    --border-color: #2B3139;
    --profit: #0ECB81;
    --loss: #F6465D;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    user-select: none;
}

#app {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-primary);
    min-height: 100vh;
    position: relative;
}

.screen {
    display: none;
    min-height: 100vh;
}

.screen.active {
    display: block;
}

/* Login Screen */
.login-container {
    padding: 60px 24px;
    text-align: center;
    background: var(--bg-primary);
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 40px;
}

.login-container h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.subtitle {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.input-group {
    text-align: left;
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    background: var(--bg-card);
    color: var(--text-primary);
    transition: border-color 0.2s;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-primary {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: var(--bg-primary);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.2s;
}

.btn-primary:active {
    background: var(--primary-dark);
    transform: scale(0.98);
}

.login-footer {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
}

.login-footer a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
}

/* App Header */
.app-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 16px 20px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-greeting {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 400;
}

.user-info span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--bg-primary);
}

.icon-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--text-primary);
}

/* Portfolio Section */
.portfolio-section {
    padding: 20px;
}

.balance-card {
    background: linear-gradient(135deg, #1E2329 0%, #2B3139 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    color: var(--text-primary);
    margin-bottom: 16px;
    box-shadow: var(--shadow);
}

.balance-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.balance-amount {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.currency {
    font-size: 20px;
    font-weight: 600;
    margin-right: 4px;
    color: var(--text-secondary);
}

.balance-change {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.balance-change .profit {
    color: var(--profit);
    font-weight: 600;
}

.balance-change .time-period {
    color: var(--text-secondary);
}

.referral-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.referral-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.2) 0%, rgba(217, 167, 7, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.referral-info {
    flex: 1;
}

.referral-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.referral-amount {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.referral-btn {
    background: var(--primary);
    color: var(--bg-primary);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.referral-btn:active {
    background: var(--primary-dark);
    transform: scale(0.95);
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.action-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    transition: all 0.2s;
}

.action-btn:active {
    transform: scale(0.95);
    background: var(--bg-secondary);
}

.action-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.15) 0%, rgba(217, 167, 7, 0.15) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

/* Assets Section */
.assets-section {
    padding: 0 20px 100px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-secondary);
    cursor: pointer;
}

.asset-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.asset-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.asset-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.2) 0%, rgba(217, 167, 7, 0.2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
}

.asset-details h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.asset-details p {
    font-size: 13px;
    color: var(--text-secondary);
}

.asset-value {
    text-align: right;
}

.asset-value .amount {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.asset-value .change {
    font-size: 13px;
}

.asset-value .change.profit {
    color: var(--profit);
}

.asset-value .change.loss {
    color: var(--loss);
}

/* Markets Screen */
.markets-content {
    padding: 20px 20px 100px;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.search-bar input {
    flex: 1;
    border: none;
    background: none;
    font-size: 15px;
    outline: none;
    color: var(--text-primary);
}

.search-bar input::placeholder {
    color: var(--text-secondary);
}

.market-info-banner {
    background: linear-gradient(135deg, rgba(240, 185, 11, 0.15), rgba(248, 209, 47, 0.15));
    border: 1px solid rgba(240, 185, 11, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.market-info-banner h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.market-info-banner p {
    font-size: 13px;
    color: var(--text-secondary);
}

.market-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 12px;
}

.market-price {
    text-align: right;
}

.buy-btn {
    background: var(--primary);
    color: var(--bg-primary);
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.buy-btn:active {
    background: var(--primary-dark);
}

/* Trade Screen */
.trade-content {
    padding: 20px 20px 100px;
}

.total-earnings-card {
    background: linear-gradient(135deg, #0ECB81 0%, #0AA66D 100%);
    border-radius: 16px;
    padding: 24px;
    color: white;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.earnings-label {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.earnings-amount {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.earnings-info {
    font-size: 13px;
    opacity: 0.9;
}

.investment-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
}

.investment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.investment-header h3 {
    font-size: 16px;
    font-weight: 600;
}

.investment-status {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.investment-status.active {
    background: rgba(240, 185, 11, 0.15);
    color: var(--primary);
    border: 1px solid rgba(240, 185, 11, 0.3);
}

.investment-status.completed {
    background: rgba(14, 203, 129, 0.15);
    color: var(--profit);
    border: 1px solid rgba(14, 203, 129, 0.3);
}

.investment-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--text-primary);
}

.detail-row span {
    color: var(--text-secondary);
}

/* Wallet Screen */
.wallet-content {
    padding: 20px 20px 100px;
}

.wallet-balance-card {
    background: linear-gradient(135deg, #1E2329 0%, #2B3139 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.wallet-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.wallet-action-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.wallet-action-btn:active {
    background: var(--bg-secondary);
}

.transaction-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.transaction-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.transaction-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.transaction-icon.deposit {
    background: rgba(14, 203, 129, 0.15);
}

.transaction-icon.withdraw {
    background: rgba(246, 70, 93, 0.15);
}

.transaction-icon.investment {
    background: rgba(240, 185, 11, 0.15);
}

.transaction-details h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.transaction-details p {
    font-size: 13px;
    color: var(--text-secondary);
}

.transaction-amount {
    font-size: 15px;
    font-weight: 600;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.close-modal {
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-secondary);
    line-height: 1;
}

.modal-body {
    padding: 20px;
}

.info-box {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid var(--border-color);
}

.info-box p {
    font-size: 14px;
    margin-bottom: 4px;
    color: var(--text-secondary);
}

.info-box p:last-child {
    margin-bottom: 0;
}

.expected-return {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
    font-size: 14px;
    color: var(--text-primary);
}

.expected-return > div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.expected-return > div:last-child {
    margin-bottom: 0;
    padding-top: 8px;
    border-top: 1px solid var(--border-color);
    font-weight: 600;
    font-size: 15px;
}

.pix-key-box {
    margin: 20px 0;
}

.pix-key-box p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.pix-key {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
    font-size: 12px;
    word-break: break-all;
    margin-bottom: 12px;
    font-family: monospace;
    color: var(--text-primary);
}

.btn-secondary {
    width: 100%;
    padding: 12px;
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 12px;
}

.btn-secondary:active {
    background: var(--bg-secondary);
}

.settings-section {
    margin-bottom: 24px;
}

.settings-section:last-child {
    margin-bottom: 0;
}

.settings-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.verification-status {
    text-align: center;
}

/* Bottom Navigation */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    padding: 8px 0 max(8px, env(safe-area-inset-bottom));
    z-index: 100;
}

.nav-btn {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    color: var(--text-secondary);
    padding: 8px 12px;
    transition: color 0.2s;
}

.nav-btn svg {
    stroke-width: 2px;
}

.nav-btn span {
    font-size: 11px;
    font-weight: 500;
}

.nav-btn.active {
    color: var(--primary);
}

/* Profile Screen */
.screen-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.screen-header h1 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.back-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--text-primary);
}

/* Referral/Affiliates Page */
.referral-content {
    padding: 20px 20px 100px;
}

.referral-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
}

.stat-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-weight: 500;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.earnings-card {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.earnings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.earnings-label {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.earnings-amount {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
}

.withdraw-earnings-btn {
    background: var(--primary);
    color: var(--bg-primary);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.withdraw-earnings-btn:active {
    background: var(--primary-dark);
}

.earnings-info {
    background: rgba(240, 185, 11, 0.1);
    border: 1px solid rgba(240, 185, 11, 0.2);
    border-radius: 8px;
    padding: 12px;
}

.earnings-info p {
    font-size: 13px;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.earnings-info p:last-child {
    margin-bottom: 0;
}

.referral-link-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

.referral-link-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.referral-link-box {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.referral-link-box input {
    flex: 1;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    color: var(--text-primary);
}

.copy-link-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-link-btn:active {
    background: var(--bg-primary);
}

.share-link-btn {
    width: 100%;
    background: var(--primary);
    color: var(--bg-primary);
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.share-link-btn:active {
    background: var(--primary-dark);
}

.referral-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
}

.referral-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.referral-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--bg-primary);
}

.referral-details h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.referral-details p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 2px;
}

.referral-details .join-date {
    font-size: 12px;
}

.referral-stats-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: center;
}

.referral-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.referral-stat span {
    font-size: 12px;
    color: var(--text-secondary);
}

.referral-stat strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.status-badge {
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    grid-column: span 2;
}

.status-badge.active {
    background: rgba(14, 203, 129, 0.15);
    color: var(--profit);
    border: 1px solid rgba(14, 203, 129, 0.3);
}

.status-badge.inactive {
    background: rgba(132, 142, 156, 0.15);
    color: var(--text-secondary);
    border: 1px solid rgba(132, 142, 156, 0.3);
}

.profile-content {
    padding: 24px 20px 100px;
}

.profile-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    color: var(--bg-primary);
    margin: 0 auto 16px;
}

.profile-card h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.profile-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 12px;
}

.verification-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(14, 203, 129, 0.1);
    color: var(--profit);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.profile-menu {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.menu-section h3 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.menu-item {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-size: 15px;
    transition: background 0.2s;
}

.menu-item:active {
    background: var(--bg-secondary);
}

.menu-item-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu-item.danger {
    color: var(--loss);
}

@media (max-width: 480px) {
    .balance-amount {
        font-size: 32px;
    }
}