.elementor-1216 .elementor-element.elementor-element-b1e17d0{--display:flex;--background-transition:0.3s;}body.elementor-page-1216:not(.elementor-motion-effects-element-type-background), body.elementor-page-1216 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}@media(min-width:768px){.elementor-1216 .elementor-element.elementor-element-b1e17d0{--content-width:608px;}}/* Start custom CSS for html, class: .elementor-element-da74e2e */<style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'JetBrains Mono', 'Courier New', monospace;
        }

        body {
            background: #0a0f0a;
           
        }

        /* Matrix background effect */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(0deg, 
                rgba(0, 20, 0, 0.1) 0px, 
                rgba(0, 255, 0, 0.05) 1px, 
                transparent 2px,
                transparent 5px);
            pointer-events: none;
            z-index: 0;
            animation: scan 8s linear infinite;
        }

        @keyframes scan {
            0% { transform: translateY(0); }
            100% { transform: translateY(20px); }
        }

        .cyber-grid {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 255, 0, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 255, 0, 0.03) 1px, transparent 1px);
            background-size: 30px 30px;
            pointer-events: none;
            z-index: 0;
        }

        .main-container {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1400px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        /* TERMINAL HEADER */
        .terminal-header {
            background: #0f1a0f;
            border: 1px solid #00aa00;
            box-shadow: 0 0 15px rgba(0, 255, 0, 0.2);
            border-radius: 0;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #00ff00;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            backdrop-filter: blur(5px);
        }

        .terminal-header::before {
            content: '>';
            margin-right: 10px;
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }

        .status-led {
            width: 10px;
            height: 10px;
            background: #00ff00;
            border-radius: 50%;
            box-shadow: 0 0 10px #00ff00;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { opacity: 0.5; }
            50% { opacity: 1; }
            100% { opacity: 0.5; }
        }

        /* WALLET CARD */
        .wallet-hacker {
            background: #0a120a;
            border: 1px solid #00aa00;
            box-shadow: 0 0 20px rgba(0, 255, 0, 0.15);
            padding: 25px;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
        }

        .wallet-hacker:hover {
            box-shadow: 0 0 30px rgba(0, 255, 0, 0.3);
            border-color: #00ff00;
        }

        .wallet-hacker::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                to bottom right,
                transparent,
                transparent,
                rgba(0, 255, 0, 0.05),
                transparent,
                transparent
            );
            transform: rotate(45deg);
            animation: shine 6s infinite;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) rotate(45deg); }
            20%, 100% { transform: translateX(100%) rotate(45deg); }
        }

        .wallet-title {
            color: #00aa00;
            font-size: 14px;
            margin-bottom: 5px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .wallet-title span {
            color: #00ff00;
            font-weight: bold;
        }

        .wallet-balance {
            font-size: 42px;
            font-weight: bold;
            color: #00ff00;
            text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
            margin: 10px 0;
            letter-spacing: 2px;
        }

        .wallet-change {
            color: #00aa00;
            font-size: 16px;
            display: flex;
            gap: 15px;
            border-top: 1px dashed #00aa00;
            padding-top: 15px;
        }

        .positive {
            color: #00ff00;
        }

        .negative {
            color: #ff3333;
        }

        /* ACTION BUTTONS */
        .action-grid {
            display: flex;
            gap: 10px;
            margin: 10px 0;
        }

        .cyber-button {
            background: transparent;
            border: 1px solid #00aa00;
            color: #00ff00;
            padding: 12px 25px;
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: 0.2s;
            flex: 1;
            box-shadow: 0 0 5px rgba(0, 255, 0, 0.2);
        }

        .cyber-button:hover {
            background: #00aa00;
            color: #0a0f0a;
            box-shadow: 0 0 20px #00ff00;
            border-color: #00ff00;
        }

        .cyber-button:active {
            transform: scale(0.98);
        }

        /* CRYPTO LIST */
        .crypto-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 15px;
            margin-top: 20px;
        }

        .crypto-card {
            background: #0c140c;
            border: 1px solid #008800;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            transition: all 0.2s;
            position: relative;
            backdrop-filter: blur(5px);
        }

        .crypto-card:hover {
            border-color: #00ff00;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 255, 0, 0.2);
        }

        .crypto-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 3px;
            background: #00ff00;
            opacity: 0;
            transition: 0.2s;
        }

        .crypto-card:hover::before {
            opacity: 1;
        }

        .crypto-info {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .crypto-info img {
            width: 32px;
            height: 32px;
            filter: drop-shadow(0 0 5px #00ff00);
        }

        .crypto-name {
            color: #00ff00;
            font-weight: bold;
            font-size: 16px;
        }

        .crypto-sub {
            color: #008800;
            font-size: 12px;
        }

        .crypto-stats {
            text-align: right;
        }

        .crypto-amount {
            color: #00ff00;
            font-size: 18px;
            font-weight: bold;
        }

        .blocked-tag {
            color: #ff4444;
            font-size: 10px;
            letter-spacing: 2px;
            border: 1px solid #ff4444;
            padding: 2px 5px;
            margin-top: 5px;
            display: inline-block;
            animation: blink-blocked 1.5s infinite;
        }

        @keyframes blink-blocked {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        /* MODAL OVERLAY */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 5, 0, 0.95);
            backdrop-filter: blur(10px);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        .modal-content {
            background: #0c140c;
            border: 2px solid #00ff00;
            box-shadow: 0 0 50px rgba(0, 255, 0, 0.3);
            width: 90%;
            max-width: 500px;
            padding: 30px;
            position: relative;
        }

        .modal-content::before {
            content: 'SYSTEM_INPUT';
            position: absolute;
            top: -12px;
            left: 20px;
            background: #0c140c;
            padding: 0 10px;
            color: #00ff00;
            font-size: 12px;
            border-left: 2px solid #00ff00;
            border-right: 2px solid #00ff00;
        }

        .modal-title {
            color: #00ff00;
            font-size: 20px;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .modal-input {
            width: 100%;
            background: #0a0f0a;
            border: 1px solid #008800;
            padding: 12px;
            color: #00ff00;
            margin: 10px 0;
            font-size: 16px;
        }

        .modal-input:focus {
            outline: none;
            border-color: #00ff00;
            box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
        }

        .modal-select {
            width: 100%;
            background: #0a0f0a;
            border: 1px solid #008800;
            padding: 12px;
            color: #00ff00;
            margin: 10px 0;
            cursor: pointer;
        }

        .modal-select option {
            background: #0a0f0a;
        }

        .max-hint {
            color: #008800;
            font-size: 12px;
            margin: 5px 0;
            text-align: right;
        }

        .error-message {
            color: #ff4444;
            margin-top: 10px;
            font-size: 12px;
            border-left: 3px solid #ff4444;
            padding-left: 10px;
        }

        /* DETAIL VIEW */
        .crypto-detail-view {
            text-align: center;
        }

        .detail-logo {
            width: 80px;
            height: 80px;
            margin: 20px auto;
            filter: drop-shadow(0 0 20px #00ff00);
        }

        .wallet-address-box {
            display: flex;
            background: #0a0f0a;
            border: 1px solid #00aa00;
            margin: 20px 0;
        }

        .wallet-address-box input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 15px;
            color: #00ff00;
            font-size: 14px;
        }

        .wallet-address-box button {
            background: #00aa00;
            border: none;
            padding: 0 20px;
            color: #0a0f0a;
            font-weight: bold;
            cursor: pointer;
            transition: 0.2s;
        }

        .wallet-address-box button:hover {
            background: #00ff00;
        }

        /* LOADING ANIMATION */
        .loading {
            color: #008800;
            animation: loadingPulse 1.5s infinite;
        }

        @keyframes loadingPulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        /* SCROLLBAR */
        ::-webkit-scrollbar {
            width: 8px;
            background: #0a0f0a;
        }

        ::-webkit-scrollbar-thumb {
            background: #00aa00;
            border-radius: 0;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #00ff00;
        }
    </style>/* End custom CSS */