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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0A0E17;
    color: #FFFFFF;
    overflow-x: hidden;
}

.app {
    max-width: 500px;
    margin: 0 auto;
    background: #0F1219;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    padding-bottom: 70px;
}

.screen {
    display: none;
    animation: fadeIn 0.3s ease;
}

.screen.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.auth-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 24px;
    background: linear-gradient(145deg, #0F1219 0%, #0A0E17 100%);
}

.auth-brand {
    text-align: center;
    margin-bottom: 48px;
}

.auth-brand svg {
    color: #4F46E5;
    margin-bottom: 16px;
}

.auth-brand h1 {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #FFFFFF 0%, #A5B4FC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-brand p {
    color: #8B92A8;
    font-size: 14px;
    margin-top: 8px;
}

.auth-card {
    border-radius: 32px;
    padding: 32px 24px;
    background: rgba(30, 35, 48, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-card h2 {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 600;
}

.auth-links {
    text-align: center;
    margin-top: 20px;
}

.link {
    color: #818CF8;
    cursor: pointer;
    font-weight: 600;
}

.auth-footer {
    margin-top: 32px;
    text-align: center;
}

.partnership {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
    color: #6B7280;
    background: rgba(30, 35, 48, 0.5);
    padding: 12px 16px;
    border-radius: 60px;
    backdrop-filter: blur(4px);
}

.partnership svg {
    stroke: #4F46E5;
    flex-shrink: 0;
}

.top-nav, .bottom-nav {
    display: none;
}

.top-nav.visible, .bottom-nav.visible {
    display: flex;
}

.glass {
    background: rgba(30, 35, 48, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-glow {
    background: linear-gradient(135deg, rgba(30, 35, 48, 0.9) 0%, rgba(20, 25, 40, 0.95) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.input-group {
    margin-bottom: 16px;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 16px 18px;
    background: rgba(20, 25, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: white;
    font-size: 16px;
    transition: all 0.2s;
}

.input-group input:focus, .input-group select:focus {
    outline: none;
    border-color: #4F46E5;
    background: rgba(30, 35, 48, 0.9);
}

.btn-primary {
    background: linear-gradient(135deg, #4F46E5 0%, #7C3AED 100%);
    border: none;
    padding: 16px 24px;
    border-radius: 28px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.1s, opacity 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary.full {
    width: 100%;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: scale(0.98);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 24px;
    border-radius: 28px;
    color: white;
    font-weight: 500;
    cursor: pointer;
}

.top-nav {
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 12px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 18px;
}

.icon-btn, .logout-btn {
    background: rgba(30, 35, 48, 0.8);
    border: none;
    padding: 10px;
    border-radius: 40px;
    cursor: pointer;
    color: white;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.icon-btn:hover, .logout-btn:hover {
    background: rgba(79, 70, 229, 0.3);
    transform: scale(1.05);
}

.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    max-width: 500px;
    width: 100%;
    background: rgba(15, 18, 25, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    justify-content: space-around;
    padding: 12px 20px 20px;
    z-index: 100;
}

.nav-item {
    background: transparent;
    border: none;
    color: #6B7280;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s;
    padding: 4px 12px;
    border-radius: 30px;
}

.nav-item svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.nav-item.active {
    color: #4F46E5;
}

.nav-item:hover {
    color: #818CF8;
    background: rgba(79, 70, 229, 0.1);
}

.dashboard-content {
    padding: 8px 20px 32px;
}

.welcome-card {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.15) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: 24px;
    padding: 16px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(79, 70, 229, 0.3);
}

.welcome-text {
    font-size: 18px;
    font-weight: 600;
    color: #A5B4FC;
}

.brittney-card {
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #F59E0B;
    background: rgba(245, 158, 11, 0.08);
}

.brittney-card.hidden {
    display: none;
}

.brittney-header {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}

.brittney-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #F59E0B;
    margin-bottom: 12px;
}

.brittney-card p {
    font-size: 13px;
    color: #B0B7C8;
    line-height: 1.5;
}

.hero-card {
    border-radius: 32px;
    padding: 28px 24px;
    margin-bottom: 24px;
}

.hero-label {
    font-size: 14px;
    color: #A5B4FC;
}

.hero-balance {
    font-size: 44px;
    font-weight: 800;
    margin: 12px 0;
    letter-spacing: -0.5px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(79, 70, 229, 0.2);
    padding: 6px 12px;
    border-radius: 40px;
    font-size: 12px;
    color: #A5B4FC;
}

.progress-card {
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 20px;
    background: rgba(30, 35, 48, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(79, 70, 229, 0.3);
}

.progress-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #F59E0B;
}

.progress-bar-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-bar-fill {
    background: linear-gradient(90deg, #F59E0B, #F97316);
    border-radius: 10px;
    height: 100%;
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 12px;
    color: #B0B7C8;
}

.progress-note {
    font-size: 10px;
    color: #6B7280;
    margin-top: 8px;
}

.account-card {
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 16px;
    background: rgba(30, 35, 48, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

.account-card:hover {
    transform: translateY(-2px);
    background: rgba(40, 45, 60, 0.8);
}

.card-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.card-logo {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-shrink: 0;
}

.mastercard-logo-sm {
    background: transparent;
    display: flex;
    align-items: center;
    gap: 2px;
}

.mastercard-logo-sm .mc-red {
    width: 16px;
    height: 16px;
    background: #EB001B;
    border-radius: 50%;
}

.mastercard-logo-sm .mc-orange {
    width: 16px;
    height: 16px;
    background: #F79E1B;
    border-radius: 50%;
    margin-left: -6px;
}

.mastercard-logo-sm .mc-text {
    font-size: 8px;
    font-weight: 700;
    margin-left: 4px;
    color: #FFFFFF;
}

.account-title {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
}

.padlock-icon {
    flex-shrink: 0;
}

.account-balance-large {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #A5B4FC;
}

.card-number-muted {
    font-size: 14px;
    font-family: monospace;
    color: #8B92A8;
    letter-spacing: 1px;
}

.action-row {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 32px;
}

.action-btn {
    flex: 1;
    background: rgba(30, 35, 48, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.action-btn:hover {
    background: rgba(79, 70, 229, 0.3);
    transform: translateY(-2px);
}

/* Cards Screen - Platinum Debit Card Premium Design */
.cards-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: calc(100vh - 70px);
    overflow-y: auto;
}

.platinum-card {
    background: linear-gradient(145deg, #2a2a35 0%, #1a1a24 100%);
    border-radius: 28px;
    padding: 28px;
    position: relative;
    min-height: 320px;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.08), 0 0 0 2px rgba(255, 215, 0, 0.1);
    transition: all 0.2s;
}

.platinum-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 40px -12px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 0 2px rgba(255, 215, 0, 0.15);
}

.card-padlock {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 30px;
    padding: 8px;
}

.card-mastercard {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 30px;
}

.mc-red-lg {
    width: 35px;
    height: 35px;
    background: #EB001B;
    border-radius: 50%;
}

.mc-orange-lg {
    width: 35px;
    height: 35px;
    background: #F79E1B;
    border-radius: 50%;
    margin-left: -12px;
}

.card-badge-platinum {
    background: linear-gradient(135deg, #C0C0C0 0%, #E8E8E8 50%, #A8A8A8 100%);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a1a2e;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.card-badge-debit {
    background: rgba(255, 255, 255, 0.15);
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ccc;
    text-transform: uppercase;
    margin-left: 8px;
}

.card-number-group {
    font-size: 20px;
    font-family: monospace;
    letter-spacing: 3px;
    margin: 24px 0 20px;
    color: #FFFFFF;
    font-weight: 500;
}

.card-validity-row {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.validity-label {
    font-size: 10px;
    letter-spacing: 1px;
    color: #aaa;
    text-transform: uppercase;
}

.validity-date {
    font-size: 14px;
    font-weight: 600;
    color: #ddd;
}

.card-cvv {
    font-size: 14px;
    font-weight: 500;
    color: #ccc;
    margin-bottom: 20px;
}

.card-holder-name {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 8px;
}

.see-more-platinum-btn {
    width: 100%;
    background: rgba(79, 70, 229, 0.2);
    border: 1px solid rgba(79, 70, 229, 0.4);
    padding: 12px;
    border-radius: 40px;
    color: #818CF8;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 24px;
}

.see-more-platinum-btn:hover {
    background: rgba(79, 70, 229, 0.4);
    transform: scale(0.98);
}

.transactions-full-content {
    padding: 8px 20px 32px;
    height: calc(100vh - 70px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.transactions-list-full {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 20px;
}

.transaction-item {
    background: rgba(30, 35, 48, 0.5);
    border-radius: 20px;
    padding: 16px;
    transition: all 0.2s;
}

.transaction-item:hover {
    background: rgba(40, 45, 60, 0.7);
}

.transaction-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

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

.transaction-icon {
    width: 44px;
    height: 44px;
    background: rgba(79, 70, 229, 0.15);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.transaction-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.transaction-merchant {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
}

.transaction-date {
    font-size: 11px;
    color: #6B7280;
}

.transaction-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.transaction-amount {
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

.amount-positive {
    color: #10B981;
}

.amount-negative {
    color: #EF4444;
}

.amount-pending {
    color: #F59E0B;
}

.withdraw-form-container {
    background: #0F1219;
    width: 100%;
    max-width: 500px;
    padding: 24px;
}

.withdraw-form-container h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.admin-content {
    padding: 8px 20px 32px;
}

.admin-content h2, .admin-content h3 {
    margin-bottom: 20px;
    color: #A5B4FC;
}

.pending-list, .all-deposits-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.pending-item, .deposit-item {
    background: rgba(30, 35, 48, 0.5);
    border-radius: 20px;
    padding: 16px;
}

.pending-item .admin-actions {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.approve-btn, .decline-btn {
    padding: 8px 16px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.approve-btn {
    background: #10B981;
    color: white;
}

.decline-btn {
    background: #EF4444;
    color: white;
}

.decline-reason {
    margin-top: 8px;
    width: 100%;
    padding: 8px;
    border-radius: 12px;
    background: rgba(20, 25, 40, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.modal-overlay, .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.25s;
}

.modal-overlay.active, .popup-overlay.active {
    visibility: visible;
    opacity: 1;
}

.modal-container, .popup-container {
    background: #0F1219;
    width: 100%;
    max-width: 500px;
    border-radius: 32px 32px 0 0;
    padding: 24px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.popup-container {
    border-radius: 32px;
    max-width: 400px;
    margin: 20px;
    transform: scale(0.9);
}

.modal-overlay.active .modal-container,
.popup-overlay.active .popup-container {
    transform: translateY(0) scale(1);
}

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

.modal-header h3 {
    font-size: 24px;
    font-weight: 700;
}

.close-modal, .close-transfer-modal {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
}

.deposit-methods {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    background: rgba(20, 25, 40, 0.6);
    padding: 6px;
    border-radius: 60px;
}

.method-tab {
    flex: 1;
    padding: 12px;
    background: transparent;
    border: none;
    color: #8B92A8;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.2s;
}

.method-tab.active {
    background: #4F46E5;
    color: white;
}

.deposit-form {
    margin-bottom: 24px;
}

.bitcoin-address-card {
    background: rgba(20, 25, 40, 0.8);
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(79, 70, 229, 0.3);
}

.address-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    word-break: break-all;
}

.address-text {
    font-family: monospace;
    font-size: 12px;
    color: #A5B4FC;
    flex: 1;
}

.copy-btn {
    background: rgba(79, 70, 229, 0.3);
    border: none;
    padding: 8px 12px;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    font-size: 12px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.copy-btn:hover {
    background: #4F46E5;
}

.bank-details-card {
    background: rgba(20, 25, 40, 0.8);
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 16px;
}

.bank-details-card p {
    font-size: 13px;
    margin: 8px 0;
    color: #B0B7C8;
}

.bank-details-card strong {
    color: #A5B4FC;
}

.warning-text {
    background: rgba(220, 38, 38, 0.15);
    border-left: 3px solid #EF4444;
    padding: 12px;
    border-radius: 12px;
    font-size: 12px;
    color: #FCA5A5;
    margin: 12px 0;
}

.red-warning-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #8B0000 0%, #4A0000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.red-warning-modal.active {
    visibility: visible;
    opacity: 1;
}

.red-modal-content {
    text-align: center;
    padding: 32px;
    max-width: 400px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 32px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.red-modal-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.red-modal-icons svg {
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.3));
}

.red-modal-content h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #FFFFFF;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.red-modal-content p {
    color: #FFD4D4;
    margin-bottom: 16px;
    line-height: 1.5;
    font-size: 14px;
}

.progress-in-modal {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 20px;
    margin: 16px 0;
    font-size: 13px;
    font-weight: 600;
    color: #FEF08A;
}

.red-modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.red-modal-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.red-modal-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
}

.red-modal-btn.secondary {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
}

.transfer-options {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.radio-card {
    flex: 1;
    background: rgba(30, 35, 48, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-card input {
    display: none;
}

.radio-card:has(input:checked) {
    background: #4F46E5;
}

.settings-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.back-btn {
    background: rgba(30, 35, 48, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
}

.settings-header h2 {
    font-size: 24px;
    font-weight: 700;
}

.settings-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.toggle-switch {
    width: 48px;
    height: 26px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 40px;
    position: relative;
    cursor: pointer;
}

.toggle-switch.active {
    background: #4F46E5;
}

.toggle-switch .toggle-thumb {
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 22px;
    position: absolute;
    top: 2px;
    left: 3px;
    transition: left 0.2s;
}

.toggle-switch.active .toggle-thumb {
    left: 23px;
}

.logout-btn-full {
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(220, 38, 38, 0.4);
    padding: 16px;
    border-radius: 40px;
    color: #EF4444;
    font-weight: 700;
    cursor: pointer;
}

@media (max-width: 500px) {
    .hero-balance { font-size: 34px; }
    .account-balance-large { font-size: 24px; }
    .action-row { flex-wrap: wrap; }
    .transaction-row { flex-wrap: wrap; }
    .transaction-left { flex: 1; }
    .card-number-group { font-size: 16px; letter-spacing: 2px; }
    .red-modal-content h2 { font-size: 22px; }
}

.transactions-list-full::-webkit-scrollbar {
    width: 4px;
}

.transactions-list-full::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.transactions-list-full::-webkit-scrollbar-thumb {
    background: #4F46E5;
    border-radius: 10px;
}

.copied-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: #10B981;
    color: white;
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 12px;
    z-index: 3000;
    animation: fadeOut 1.5s ease;
}

@keyframes fadeOut {
    0% { opacity: 1; }
    70% { opacity: 1; }
    100% { opacity: 0; visibility: hidden; }
}