:root {
            /* Light Theme (Default) */
            --bg-dark: #f8fafc;
            --bg-card: #ffffff;
            --bg-input: #f1f5f9;
            --primary: #3b82f6;
            --primary-dark: #2563eb;
            --primary-gradient: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #2563eb 100%);
            --secondary-gradient: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
            --success-gradient: linear-gradient(135deg, #34d399 0%, #10b981 100%);
            --text-primary: #1e293b;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --success: #10b981;
            --danger: #ef4444;
            --glow: rgba(59, 130, 246, 0.1);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }

        @media (prefers-color-scheme: dark) {
            :root {
                --bg-dark: #0a0e1a;
                --bg-card: #131927;
                --bg-input: #1a2133;
                --text-primary: #f8fafc;
                --text-muted: #94a3b8;
                --border: #1e293b;
                --glow: rgba(59, 130, 246, 0.3);
                --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
            }
        }

        /* Light Mode Overrides */
        body.light-mode {
            --bg-dark: #f8fafc;
            --bg-card: #ffffff;
            --bg-input: #f1f5f9;
            --text-primary: #0f172a;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --glow: rgba(37, 99, 235, 0.1);
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        body.light-mode .glass-card,
        body.light-mode .transaction-card-modern {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            backdrop-filter: none;
        }

        body.light-mode .txn-icon-container {
            background: #f1f5f9;
        }

        body.light-mode .txn-amount-modern[style*="#ef4444"] {
            color: #dc2626 !important;
        }

        body.light-mode .txn-amount-modern[style*="#10b981"] {
            color: #059669 !important;
        }

        body.light-mode .screen-header {
            background: rgba(255, 255, 255, 0.9);
            border-bottom: 1px solid #e2e8f0;
        }

        body.light-mode .screen-title {
            color: #0f172a;
        }

        body.light-mode .back-btn {
            background: #f1f5f9;
            color: #475569;
        }

        body.light-mode .setting-item {
            background: #ffffff;
            border: 1px solid #f1f5f9;
        }

        body.light-mode .setting-title {
            color: #0f172a;
        }

        body.light-mode .bottom-nav {
            background: rgba(255, 255, 255, 0.9);
            border-top: 1px solid #e2e8f0;
        }

        body.light-mode .nav-item {
            color: #64748b;
        }

        body.light-mode .nav-item.active {
            color: var(--primary);
        }

        body.light-mode .qr-card-container {
            background: white;
            border: 1px solid #e2e8f0;
        }

        body.light-mode .qr-card-container div {
            color: #0f172a !important;
        }

        body.light-mode .card-detail-row {
            border-bottom: 1px solid #f1f5f9;
        }

        body.light-mode .card-detail-label {
            color: #64748b;
        }

        body.light-mode .card-detail-value {
            color: #1e293b;
        }

        body.light-mode .block-btn.active {
            background: #fee2e2;
            color: #dc2626;
        }

        body.light-mode .section-title {
            color: #0f172a;
        }

        body.light-mode .balance-label {
            color: rgba(255, 255, 255, 0.9);
        }

        body.light-mode .balance-amount {
            color: #ffffff;
        }

        body.light-mode .account-number,
        body.light-mode .virtual-card {
            color: #ffffff;
        }

        /* Custom Toggle Switch */
        .toggle-slider {
            position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
            background-color: #cbd5e1; transition: .4s; border-radius: 24px;
        }
        .toggle-slider:before {
            position: absolute; content: ""; height: 18px; width: 18px; left: 3px; bottom: 3px;
            background-color: white; transition: .4s; border-radius: 50%; box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        input:checked + .toggle-slider {
            background-color: #10b981;
        }
        input:checked + .toggle-slider:before {
            transform: translateX(20px);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-tap-highlight-color: transparent;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-dark);
            color: var(--text-primary);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            transition: background 0.3s, color 0.3s;
        }

        .app-container {
            width: 100%;
            max-width: 600px;
            margin: 0 auto;
            min-height: 100vh;
            background: var(--bg-dark);
            position: relative;
            display: none;
            flex-direction: column;
            box-shadow: var(--shadow);
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            z-index: 999999;
            align-items: center;
            justify-content: center;
            padding: 24px;
            animation: fadeIn 0.3s;
        }

        @media (min-width: 601px) {
            .app-container {
                border-left: 1px solid var(--border);
                border-right: 1px solid var(--border);
            }
        }

        .screen {
            display: none;
            flex-direction: column;
            flex: 1;
            overflow-y: auto;
            background: var(--bg-dark);
            width: 100%;
        }

        .screen.active {
            display: flex;
            animation: screenFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        @keyframes screenFadeIn {
            from {
                opacity: 0;
                transform: translateY(15px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes shake {

            0%,
            100% {
                transform: translateX(0);
            }

            20% {
                transform: translateX(-8px);
            }

            40% {
                transform: translateX(8px);
            }

            60% {
                transform: translateX(-6px);
            }

            80% {
                transform: translateX(6px);
            }
        }

        @keyframes floatUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .screen-header {
            padding: 24px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(10, 14, 26, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .screen-title {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: #fff;
        }

        .back-btn {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .back-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(-2px);
        }

        /* Modern Animations */
        @keyframes screenIn {
            from {
                opacity: 0;
                transform: translateY(20px) scale(0.98);
            }

            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes floatUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .screen.active {
            display: flex;
            animation: screenIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        }

        /* Glass Cards */
        .glass-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 20px;
            margin-bottom: 16px;
            transition: transform 0.2s, background 0.3s;
        }

        .transaction-card-modern {
            padding: 16px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 16px;
            animation: floatUp 0.4s ease-out;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 18px;
        }

        .txn-icon-container {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .txn-amount-modern {
            font-weight: 700;
            font-size: 15px;
        }

        .txn-status-label {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 2px;
        }

        /* Card Management Specifics */
        .qr-card-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            padding: 32px 20px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
            border-radius: 32px;
            margin-bottom: 24px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .qr-wrapper {
            padding: 16px;
            background: white;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

        .card-detail-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .card-detail-label {
            color: var(--text-muted);
            font-size: 13px;
        }

        .card-detail-value {
            font-weight: 600;
            font-size: 14px;
        }

        .status-badge {
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .status-active {
            background: rgba(16, 185, 129, 0.1);
            color: #10b981;
        }

        .status-blocked {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
        }

        .block-btn {
            width: 100%;
            padding: 16px;
            border-radius: 16px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 12px;
        }

        .block-btn.active {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
        }

        .block-btn.blocked {
            background: var(--primary);
            color: white;
        }

        .close-btn {
            width: 40px;
            height: 40px;
            border-radius: 20px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 20px;
            color: var(--text-muted);
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            color: var(--text-white);
            transform: rotate(90deg);
        }

        .content-area {
            flex: 1;
            padding: 20px;
            overflow-y: auto;
            padding-bottom: 100px;
        }

        /* Home Screen */
        .balance-card {
            background: var(--primary-gradient);
            border-radius: 28px;
            padding: 32px;
            margin-bottom: 24px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 16px 40px -8px rgba(37, 99, 235, 0.45);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .balance-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 220px;
            height: 220px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            filter: blur(60px);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .balance-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 8px;
        }

        .balance-amount {
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 28px;
            position: relative;
            z-index: 1;
        }

        .balance-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .account-number {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.9);
        }

        .virtual-card {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Action Grid */
        .action-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 32px;
        }

        .action-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

        .action-icon {
            width: 64px;
            height: 64px;
            border-radius: 22px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.15);
        }

        .action-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: var(--primary);
            opacity: 0.2;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .filter-chip {
            padding: 8px 20px;
            border-radius: 20px;
            background: rgba(255, 255, 255, 0.05);
            color: var(--text-muted);
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .filter-chip.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        }

        .no-scrollbar::-webkit-scrollbar {
            display: none;
        }
        .no-scrollbar {
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .action-item:active .action-icon::before {
            width: 100px;
            height: 100px;
        }

        .action-item:active .action-icon {
            transform: scale(0.95);
        }

        .action-label {
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 20px;
            font-weight: 700;
        }

        .see-all {
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
        }

        .transaction-card {
            background: #121826;
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            padding: 18px 20px;
            margin-bottom: 12px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.2);
        }

        .transaction-card:hover {
            background: #161e30;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.3);
            border-color: rgba(255, 255, 255, 0.08);
        }

        .txn-left {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .txn-icon {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
        }

        .txn-icon.outflow {
            background: rgba(239, 68, 68, 0.1);
            color: #ef4444;
        }

        .txn-icon.inflow {
            background: rgba(16, 185, 129, 0.1);
            color: #10b981;
        }

        .txn-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-white);
            margin-bottom: 2px;
        }

        .txn-subtitle {
            font-size: 14px;
            color: var(--text-muted);
        }

        .txn-amount {
            font-size: 16px;
            font-weight: 700;
            text-align: right;
            margin-bottom: 4px;
        }

        .txn-date {
            font-size: 13px;
            color: var(--text-muted);
            text-align: right;
        }

        /* Form Elements */
        .form-group {
            margin-bottom: 24px;
        }

        .form-label {
            font-size: 15px;
            font-weight: 500;
            margin-bottom: 10px;
            display: block;
            color: var(--text-white);
        }

        .input-wrapper {
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 14px 16px 14px 44px;
            background: #0b1426;
            border: 1px solid #1e293b;
            border-radius: 12px;
            color: var(--text-white);
            font-size: 15px;
            transition: all 0.25s;
            outline: none;
        }

        .form-input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
            background: #0f172a;
        }

        .form-input::placeholder {
            color: var(--text-muted);
        }

        .input-icon {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            font-size: 20px;
        }

        /* Buttons */
        .btn {
            width: 100%;
            padding: 16px;
            border-radius: 18px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            font-family: inherit;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
        }

        .btn-primary {
            background: var(--primary-gradient);
            color: white;
            box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
        }

        .btn-primary:hover {
            box-shadow: 0 12px 28px rgba(37, 99, 235, 0.45);
            transform: translateY(-2px);
        }

        .btn-primary:active {
            transform: scale(0.96) translateY(0);
            box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
        }

        .btn-google {
            background: white;
            color: #1f2937;
            border: 1px solid #e5e7eb;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 16px;
        }

        .btn-google img {
            width: 20px;
            height: 20px;
        }

        .btn-google:active {
            transform: scale(0.98);
            background: #f9fafb;
        }

        .btn-secondary {
            background: var(--bg-card);
            color: var(--text-white);
            border: 1px solid var(--border);
        }

        /* Amount Pills */
        .amount-pills {
            display: flex;
            gap: 12px;
            margin-bottom: 24px;
        }

        .amount-pill {
            flex: 1;
            padding: 14px;
            border-radius: 12px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            text-align: center;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
            box-shadow: 0 2px 8px -2px rgba(0, 0, 0, 0.1);
        }

        .amount-pill:active {
            transform: scale(0.95);
            background: var(--primary);
            box-shadow: 0 0 20px var(--glow);
        }

        /* Deposit Methods */
        .method-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }

        .method-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 18px;
            display: flex;
            align-items: center;
            gap: 16px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.05);
        }

        .method-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
            border-color: rgba(255, 255, 255, 0.08);
        }

        .method-item:active {
            transform: scale(0.98);
            border-color: var(--primary);
        }

        .method-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--bg-input);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .method-info {
            flex: 1;
        }

        .method-title {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .method-subtitle {
            font-size: 13px;
            color: var(--text-muted);
        }

        .method-arrow {
            font-size: 20px;
            color: var(--text-muted);
        }

        /* Bank List */
        .bank-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .bank-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 20px;
            padding: 18px;
            display: flex;
            align-items: center;
            gap: 16px;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.05);
        }

        .bank-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
            border-color: rgba(255, 255, 255, 0.08);
        }

        .bank-item:active {
            transform: scale(0.98);
        }

        .bank-logo {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--bg-input);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
        }

        /* Contacts */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-bottom: 24px;
        }

        .contact-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .contact-card:active {
            transform: scale(0.95);
        }

        .contact-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .contact-name {
            font-size: 14px;
            font-weight: 600;
        }

        .contact-phone {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Modal */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
            padding: 20px;
        }

        .modal.active {
            display: flex;
            animation: modalFadeIn 0.3s ease-out forwards;
        }

        .modal.active .modal-content {
            animation: modalScaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        @keyframes modalFadeIn {
            from {
                background: rgba(0, 0, 0, 0);
            }

            to {
                background: rgba(0, 0, 0, 0.8);
            }
        }

        @keyframes modalScaleIn {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(15px);
            }

            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .modal-content {
            background: rgba(19, 25, 39, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 32px;
            width: 100%;
            max-width: 350px;
            border: 1px solid rgba(59, 130, 246, 0.2);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.1);
        }

        .modal-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
        }

        .modal-icon.success {
            background: rgba(16, 185, 129, 0.15);
            color: var(--success);
        }

        .modal-icon.processing {
            background: rgba(37, 99, 235, 0.15);
            color: var(--primary);
            animation: spin 1s linear infinite;
        }

        .modal-icon.error {
            background: rgba(239, 68, 68, 0.15);
            color: var(--danger);
            animation: shake 0.5s;
        }

        @keyframes shake {

            0%,
            100% {
                transform: translateX(0);
            }

            25% {
                transform: translateX(-10px);
            }

            75% {
                transform: translateX(10px);
            }
        }

        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .modal-title {
            font-size: 22px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 12px;
        }

        .modal-message {
            font-size: 14px;
            color: var(--text-muted);
            text-align: center;
            margin-bottom: 24px;
            line-height: 1.5;
        }

        /* Confirm Transfer */
        .confirm-details {
            background: var(--bg-input);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 24px;
        }

        .confirm-row {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }

        .confirm-row:last-child {
            border-bottom: none;
            padding-top: 16px;
            margin-top: 8px;
        }

        .confirm-label {
            font-size: 14px;
            color: var(--text-muted);
        }

        .confirm-value {
            font-size: 15px;
            font-weight: 600;
        }

        .total-value {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
        }

        /* Profile Screen */
        .profile-header {
            text-align: center;
            padding: 32px 20px;
            border-bottom: 1px solid var(--border);
        }

        .profile-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 700;
            margin: 0 auto 16px;
        }

        .profile-name {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .profile-phone {
            font-size: 15px;
            color: var(--text-muted);
        }

        .account-info {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 20px;
            margin-bottom: 24px;
        }

        .info-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 14px 0;
            border-bottom: 1px solid var(--border);
        }

        .info-row:last-child {
            border-bottom: none;
        }

        .info-label {
            font-size: 14px;
            color: var(--text-muted);
        }

        .info-value {
            font-size: 15px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .copy-btn {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: var(--bg-input);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 16px;
        }

        .settings-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .setting-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 18px 20px;
            display: flex;
            align-items: center;
            gap: 16px;
            cursor: pointer;
            transition: all 0.2s;
        }

        .setting-item:active {
            transform: scale(0.98);
        }

        .setting-item.logout {
            background: rgba(239, 68, 68, 0.1);
            border-color: rgba(239, 68, 68, 0.2);
        }

        .setting-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--bg-input);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .setting-item.logout .setting-icon {
            background: rgba(239, 68, 68, 0.15);
            color: var(--danger);
        }

        .setting-info {
            flex: 1;
        }

        .setting-title {
            font-size: 15px;
            font-weight: 600;
        }

        .setting-item.logout .setting-title {
            color: var(--danger);
        }

        /* Toggle Switch */
        .toggle-switch {
            width: 52px;
            height: 28px;
            background: var(--bg-input);
            border-radius: 14px;
            position: relative;
            cursor: pointer;
            transition: background 0.3s;
        }

        .toggle-switch.active {
            background: var(--primary);
        }


        .toggle-slider {
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 50%;
            position: absolute;
            top: 2px;
            left: 2px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }


        .toggle-switch.active .toggle-slider {
            transform: translateX(24px);
        }

        /* Bottom Navigation */
        .bottom-nav {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(19, 25, 39, 0.85);
            /* Use specific dark color to handle transparency */
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-around;
            padding: 12px 0 26px;
            z-index: 100;
            box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.25);
        }

        .phone-container .bottom-nav {
            position: absolute;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            padding: 8px 20px;
            transition: all 0.2s;
        }

        .nav-icon {
            font-size: 24px;
            color: var(--text-muted);
            transition: color 0.2s;
        }

        .nav-label {
            font-size: 11px;
            color: var(--text-muted);
            transition: color 0.2s;
        }

        .nav-item.active .nav-icon,
        .nav-item.active .nav-label {
            color: var(--primary);
        }

        /* Utility */
        .mt-24 {
            margin-top: 24px;
        }

        .mb-24 {
            margin-bottom: 24px;
        }

        /* ---- Light Mode ---- */
        * {
            transition: background-color 0.25s ease, color 0.2s ease, border-color 0.2s ease;
        }

        body.light-mode {
            background: #e8edf5;
            color: #0f172a;
        }

        body.light-mode .phone-container {
            background: #f8fafc;
            border-color: #cbd5e1;
            box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
        }

        body.light-mode {
            --bg-dark: #f1f5f9;
            --bg-card: #ffffff;
            --bg-input: #e2e8f0;
            --border: #cbd5e1;
            --text-white: #0f172a;
            --text-muted: #64748b;
        }

        body.light-mode .screen {
            background: #f8fafc;
        }

        body.light-mode .screen-header {
            background: rgba(248, 250, 252, 0.85);
            border-bottom: 1px solid #e2e8f0;
        }

        body.light-mode .close-btn {
            background: #ffffff;
            border-color: #e2e8f0;
            color: #64748b;
        }

        body.light-mode .close-btn:hover {
            background: #f1f5f9;
            color: #0f172a;
        }

        body.light-mode .bottom-nav {
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-color: rgba(226, 232, 240, 0.6);
            box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
        }

        body.light-mode .transaction-card {
            background: #ffffff;
            border-color: #e2e8f0;
            box-shadow: 0 4px 15px -5px rgba(0, 0, 0, 0.05);
        }

        body.light-mode .transaction-card:hover {
            background: #f8fafc;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            border-color: #cbd5e1;
            transform: translateY(-3px);
        }

        body.light-mode .form-input {
            background: #f1f5f9;
            border-color: #cbd5e1;
            color: #0f172a;
            box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
            border-radius: 12px;
        }

        body.light-mode .form-input:focus {
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15), inset 0 0 0 1px var(--primary);
            border-color: var(--primary);
        }

        body.light-mode .form-input::placeholder {
            color: #94a3b8;
        }

        body.light-mode .modal-content {
            background: rgba(255, 255, 255, 0.97);
            border-color: rgba(37, 99, 235, 0.15);
        }

        body.light-mode .method-item,
        body.light-mode .bank-item,
        body.light-mode .contact-card {
            background: #ffffff;
            border-color: #e2e8f0;
            box-shadow: 0 4px 12px -4px rgba(0, 0, 0, 0.05);
        }

        body.light-mode .method-item:hover,
        body.light-mode .bank-item:hover,
        body.light-mode .contact-card:hover {
            background: #f8fafc;
            border-color: #cbd5e1;
            box-shadow: 0 8px 16px -4px rgba(0, 0, 0, 0.1);
        }

        body.light-mode .method-icon,
        body.light-mode .bank-logo {
            background: #e2e8f0;
        }

        body.light-mode .amount-pill {
            background: #ffffff;
            border-color: #e2e8f0;
        }

        body.light-mode .amount-pill:active {
            background: var(--primary);
            color: white;
        }

        body.light-mode .confirm-details {
            background: #e2e8f0;
        }

        body.light-mode .confirm-row {
            border-color: #cbd5e1;
        }

        body.light-mode .account-info {
            background: #ffffff;
            border-color: #e2e8f0;
        }

        body.light-mode .info-row {
            border-color: #e2e8f0;
        }

        body.light-mode .setting-item {
            background: #ffffff;
            border-color: #e2e8f0;
        }

        body.light-mode .setting-icon {
            background: #e2e8f0;
        }

        body.light-mode .toggle-switch {
            background: #cbd5e1;
        }

        body.light-mode .notch {
            background: #0a0e1a;
        }

        body.light-mode .btn-secondary {
            background: #e2e8f0;
            color: #0f172a;
            border-color: #cbd5e1;
        }

        .notification-toast {
            position: fixed;
            top: -100px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 400px;
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            z-index: 9999999;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .notification-toast.active {
            top: 20px;
        }

        .notification-icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .notification-content {
            flex: 1;
        }

        .notification-msg {
            font-size: 13px;
            line-height: 1.4;
            color: var(--text-white);
        }

        .notif-item {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 16px;
            margin-bottom: 12px;
            display: flex;
            gap: 12px;
            animation: slideIn 0.3s ease-out backwards;
        }

        .notif-icon-circle {
            width: 40px;
            height: 40px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .notif-time {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .notif-message {
            font-size: 13px;
            color: var(--text-white);
            line-height: 1.4;
        }

        .bell-icon {
            position: relative;
            cursor: pointer;
        }

        .bell-dot {
            position: absolute;
            top: -2px;
            right: -2px;
            width: 8px;
            height: 8px;
            background: #ef4444;
            border-radius: 50%;
            display: none;
        }

        .bell-dot.active {
            display: block;
        }

        /* Login Screen */
        #login-screen.screen {
            padding-top: 0;
            display: none;
            flex-direction: row;
            background: white;
        }

        #login-screen.screen.active {
            display: flex;
        }

        .login-left {
            flex: 1.2;
            background: #004d99;
            background: linear-gradient(135deg, #02367d 0%, #004d99 100%);
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .login-left::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
            border-radius: 50%;
        }

        .login-left-content {
            position: relative;
            z-index: 1;
        }

        .login-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 60px;
        }

        .login-brand-icon {
            font-size: 28px;
        }

        .login-left-title {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .login-left-subtitle {
            font-size: 15px;
            opacity: 0.9;
        }

        .login-left-footer {
            font-size: 11px;
            opacity: 0.7;
            position: relative;
            z-index: 1;
        }

        .login-right {
            flex: 1;
            background: #0b1426;
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: var(--text-primary);
        }

        .login-form-container {
            width: 100%;
        }

        .login-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--text-primary);
        }

        .login-subtitle {
            color: var(--text-muted);
            margin-bottom: 32px;
            font-size: 13px;
        }

        #login-screen .form-label {
            color: var(--text-muted);
            font-size: 13px;
        }

        #login-screen .form-input {
            background: var(--bg-input);
            border: 1px solid var(--border);
            color: var(--text-primary);
            border-radius: 12px;
            padding: 14px;
        }

        #login-screen .form-input:focus {
            border-color: var(--primary);
            background: var(--bg-card);
            box-shadow: 0 0 0 3px var(--glow);
        }

        #login-screen .btn-primary {
            width: 100%;
            border-radius: 12px;
            padding: 16px;
            background: #0f62fe;
            margin-top: 10px;
            font-size: 15px;
            box-shadow: none;
        }

        #login-screen .btn-primary:hover {
            background: #0353e9;
        }

        /* Match admin app login on mobile */
        @media (max-width: 640px) {
            #login-screen.screen {
                flex-direction: column;
                position: relative;
                height: auto;
                min-height: 100vh;
                overflow-y: auto;
            }

            .login-left {
                display: none;
            }

            .login-right {
                padding: 40px 20px;
                flex: 1;
                width: 100%;
                min-height: 100vh;
            }

            .login-title {
                font-size: 32px;
            }

            .login-subtitle {
                margin-bottom: 30px;
            }
        }
/* Session Expiry Overlay */
.session-expiry-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 28, 0.85);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.session-expiry-overlay.active {
    display: flex;
    opacity: 1;
}

.session-expiry-card {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.8) translateY(20px);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.session-expiry-overlay.active .session-expiry-card {
    transform: scale(1) translateY(0);
}

.session-expiry-icon {
    font-size: 64px;
    margin-bottom: 24px;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(239, 68, 68, 0.7)); }
    70% { transform: scale(1.05); filter: drop-shadow(0 0 15px rgba(239, 68, 68, 0)); }
    100% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(239, 68, 68, 0)); }
}

.session-expiry-title {
    font-size: 24px;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 12px;
}

.session-expiry-text {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 32px;
}

.session-expiry-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 16px;
}

.session-expiry-btn:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* ── Premium Musemind-inspired Fintech Sign-in Flow Styles ── */
.premium-fintech-login {
    background: #050811 !important;
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: row;
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
    animation: floatGlow 15s infinite alternate ease-in-out;
}

.glow-1 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #2563eb, #8b5cf6);
    top: -120px;
    left: -120px;
}

.glow-2 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, #6366f1, #d946ef);
    bottom: -180px;
    right: -120px;
    animation-delay: -5s;
}

.glow-3 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #10b981, #3b82f6);
    top: 35%;
    left: 45%;
    opacity: 0.08;
    animation-delay: -9s;
}

@keyframes floatGlow {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(40px) scale(1.15); }
}

.login-left-premium {
    flex: 1.25;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    z-index: 1;
}

.premium-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.premium-brand-logo {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    color: white;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
}

.premium-brand-text {
    font-size: 22px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.premium-tag {
    font-size: 10px;
    font-weight: 700;
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.15);
    padding: 5px 12px;
    border-radius: 99px;
    letter-spacing: 1px;
}

.login-header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.login-visual-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

.glass-fintech-card {
    width: 100%;
    max-width: 420px;
    background: rgba(10, 15, 30, 0.45);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 28px;
    padding: 32px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

.glass-fintech-card:hover {
    transform: translateY(-6px) rotate(0.5deg);
    border-color: rgba(59, 130, 246, 0.25);
}

.card-glow-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.12), transparent 55%);
    pointer-events: none;
}

.card-title-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-subtitle {
    font-size: 11px;
    font-weight: 700;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.card-title {
    font-size: 18px;
    font-weight: 800;
    color: white;
}

.card-status-badge {
    font-size: 11px;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 4px 10px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot-green {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 8px #10b981;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.chart-container-mock {
    height: 140px;
    margin: 28px 0 20px;
    position: relative;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);
    overflow: visible;
}

.mock-grid-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    border-top: 1px dashed rgba(255, 255, 255, 0.04);
}

.trend-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.trend-path-bg {
    opacity: 0.15;
}

.trend-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 3.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes drawPath {
    to { stroke-dashoffset: 0; }
}

.pulse-point {
    animation: pulsePoint 2s infinite alternate;
}

@keyframes pulsePoint {
    0% { r: 4.5; fill-opacity: 0.7; }
    100% { r: 7.5; fill-opacity: 1; filter: drop-shadow(0 0 10px #ec4899); }
}

.floating-badge {
    position: absolute;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 6px 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    animation: floatBadge 4s infinite alternate ease-in-out;
}

.badge-1 {
    top: 25px;
    left: 15px;
}

.badge-2 {
    bottom: 25px;
    right: 15px;
    animation-delay: -2s;
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.card-footer-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
}

.stat-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-lbl {
    font-size: 11px;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
}

.stat-val {
    font-size: 15px;
    font-weight: 800;
    color: white;
}

.login-footer-premium {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #475569;
}

.login-right-premium {
    flex: 1.15;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    z-index: 1;
}

.premium-form-card {
    width: 100%;
    max-width: 400px;
}

.portal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.06);
    border: 1px solid rgba(59, 130, 246, 0.15);
    padding: 6px 14px;
    border-radius: 99px;
}

.portal-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3b82f6;
    box-shadow: 0 0 6px #3b82f6;
}

.portal-name {
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 1px;
}

.premium-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
}

.premium-subtitle {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

.modern-input-group {
    margin-bottom: 20px;
    position: relative;
}

.input-field-wrapper {
    position: relative;
    width: 100%;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.input-field-wrapper:hover {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(15, 23, 42, 0.55);
}

.input-field-wrapper:focus-within {
    border-color: #3b82f6;
    background: rgba(15, 23, 42, 0.7);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
}

.modern-input {
    width: 100%;
    height: 64px;
    padding: 26px 44px 8px 16px;
    background: transparent;
    border: none;
    color: white;
    font-size: 15px;
    font-weight: 600;
    outline: none;
}

.modern-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modern-input:focus ~ .modern-label,
.modern-input:not(:placeholder-shown) ~ .modern-label {
    top: 15px;
    font-size: 10px;
    color: #60a5fa;
    font-weight: 700;
}

.input-action-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #475569;
    font-size: 16px;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.remember-me-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #64748b;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox {
    display: none;
}

.checkbox-box {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    background: rgba(15, 23, 42, 0.4);
    display: inline-block;
    position: relative;
    transition: all 0.2s;
}

.remember-me-label:hover .checkbox-box {
    border-color: rgba(255, 255, 255, 0.25);
}

.custom-checkbox:checked + .checkbox-box {
    background: #3b82f6;
    border-color: #3b82f6;
}

.custom-checkbox:checked + .checkbox-box::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.checkbox-text {
    font-weight: 600;
}

.forgot-pin-link {
    font-size: 13px;
    font-weight: 700;
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s;
}

.forgot-pin-link:hover {
    color: #60a5fa;
}

.premium-error-toast {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 12px 16px;
    color: #f87171;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: shake 0.4s ease;
}

.action-buttons-group {
    display: flex;
    gap: 14px;
    margin-bottom: 28px;
}

.premium-submit-btn {
    flex: 1;
    height: 56px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    font-weight: 700;
    font-size: 15px;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.3);
}

.biometric-btn {
    width: 56px;
    height: 56px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.biometric-btn:hover {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.premium-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 24px;
    margin-bottom: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #475569;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.08);
}

.signup-prompt {
    text-align: center;
    font-size: 13px;
    color: #475569;
    font-weight: 600;
}

.signup-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.signup-link:hover {
    color: #60a5fa;
}

@media (max-width: 900px) {
    .premium-fintech-login {
        flex-direction: column;
    }
    
    .login-left-premium {
        display: none !important;
    }
    
    .login-right-premium {
        padding: 40px 20px;
        flex: 1;
        width: 100%;
        min-height: 100vh;
    }
}
