.elementor-1260 .elementor-element.elementor-element-05e57f2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--background-transition:0.3s;}.elementor-1260 .elementor-element.elementor-element-cb0789f{--display:flex;--background-transition:0.3s;}@media(min-width:768px){.elementor-1260 .elementor-element.elementor-element-cb0789f{--content-width:608px;}}/* Start custom CSS for html, class: .elementor-element-b5f49df */<style>
        /* Import de la police hacker */
        @import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
        
        /* Reset des styles pour isolation dans WordPress */
        .blockchain-card-container {
            all: initial;
            font-family: 'Share Tech Mono', monospace !important;
            display: block;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            position: relative;
        }
        
        /* Effet matrix en arrière-plan */
        .blockchain-card-container::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 0, 0.02) 100%);
            pointer-events: none;
            animation: matrix 20s linear infinite;
            z-index: -1;
        }
        
        @keyframes matrix {
            0% { background-position: 0 0; }
            100% { background-position: 0 20px; }
        }
        
        /* Lignes de code animées */
        .code-line {
            position: fixed;
            color: #0f0;
            font-size: 10px;
            opacity: 0.1;
            white-space: nowrap;
            pointer-events: none;
            z-index: -1;
            animation: codeScroll 20s linear infinite;
        }
        
        @keyframes codeScroll {
            from { transform: translateX(100%); }
            to { transform: translateX(-100%); }
        }
        
        .blockchain-user-card {
            background: rgba(0, 20, 0, 0.85);
            backdrop-filter: blur(10px);
            border: 2px solid #0f0;
            border-radius: 15px;
            padding: 25px;
            width: 100%;
            box-shadow: 0 0 30px rgba(0, 255, 0, 0.2),
                        inset 0 0 20px rgba(0, 255, 0, 0.1);
            box-sizing: border-box;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .blockchain-user-card:hover {
            box-shadow: 0 0 50px rgba(0, 255, 0, 0.3),
                        inset 0 0 30px rgba(0, 255, 0, 0.2);
            transform: translateY(-2px);
        }
        
        /* Effet de scanline */
        .blockchain-user-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
            animation: scanline 3s infinite;
        }
        
        @keyframes scanline {
            0% { left: -100%; }
            20% { left: 100%; }
            100% { left: 100%; }
        }
        
        .blockchain-user-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            position: relative;
        }
        
        .blockchain-user-info h3 {
            margin: 0;
            color: #0f0;
            font-size: 20px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px #0f0;
            animation: glitch 3s infinite;
        }
        
        @keyframes glitch {
            0%, 100% { transform: skew(0deg); }
            95% { transform: skew(0deg); }
            96% { transform: skew(2deg); }
            97% { transform: skew(-2deg); }
            98% { transform: skew(0deg); }
        }
        
        .blockchain-user-info p {
            margin: 8px 0 0;
            color: #0a0;
            font-size: 13px;
            line-height: 1.5;
            letter-spacing: 1px;
            position: relative;
            padding-left: 15px;
        }
        
        .blockchain-user-info p::before {
            content: '>';
            position: absolute;
            left: 0;
            color: #0f0;
            font-weight: bold;
        }
        
        .blockchain-user-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: transparent;
            border: 3px solid #0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0f0;
            font-weight: bold;
            font-size: 24px;
            flex-shrink: 0;
            text-shadow: 0 0 10px #0f0;
            box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
            animation: avatarPulse 2s infinite;
            position: relative;
        }
        
        @keyframes avatarPulse {
            0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 0, 0.3); }
            50% { box-shadow: 0 0 40px rgba(0, 255, 0, 0.5); }
        }
        
        .blockchain-user-avatar::after {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            border-radius: 50%;
            border: 2px solid transparent;
            border-top-color: #0f0;
            animation: spin 3s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .blockchain-wallet-info {
            margin-top: 25px;
            background: rgba(0, 30, 0, 0.5);
            padding: 15px;
            border-radius: 8px;
            border-left: 3px solid #0f0;
            position: relative;
        }
        
        .blockchain-wallet-info::before {
            content: 'BALANCE';
            position: absolute;
            top: -10px;
            left: 15px;
            background: #0f0;
            color: #000;
            padding: 2px 10px;
            font-size: 10px;
            letter-spacing: 2px;
            font-weight: bold;
        }
        
        .blockchain-cardano-label {
            color: #0f0;
            font-weight: 400;
            font-size: 14px;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .blockchain-cardano-label i {
            margin-right: 8px;
            font-size: 16px;
        }
        
        .blockchain-wallet-amount {
            font-size: 32px;
            font-weight: 700;
            color: #0f0;
            margin: 5px 0;
            line-height: 1.2;
            text-shadow: 0 0 20px #0f0;
            font-family: 'Share Tech Mono', monospace;
            letter-spacing: 2px;
            animation: amountGlow 2s infinite;
        }
        
        @keyframes amountGlow {
            0%, 100% { text-shadow: 0 0 20px #0f0; }
            50% { text-shadow: 0 0 40px #0f0; }
        }
        
        .blockchain-wallet-change {
            display: flex;
            align-items: center;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 1px;
            margin-top: 8px;
        }
        
        .blockchain-wallet-change.up {
            color: #0f0;
        }
        
        .blockchain-wallet-change.up::before {
            content: "▲";
            margin-right: 8px;
            font-size: 12px;
            color: #0f0;
            animation: arrowUp 1s infinite;
        }
        
        .blockchain-wallet-change.down {
            color: #f00;
        }
        
        .blockchain-wallet-change.down::before {
            content: "▼";
            margin-right: 8px;
            font-size: 12px;
            color: #f00;
            animation: arrowDown 1s infinite;
        }
        
        @keyframes arrowUp {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-2px); }
        }
        
        @keyframes arrowDown {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(2px); }
        }
        
        .blockchain-chart-container {
            margin-top: 20px;
            height: 70px;
            position: relative;
            background: rgba(0, 20, 0, 0.5);
            border-radius: 8px;
            padding: 10px;
            border: 1px solid #0f0;
        }
        
        .blockchain-chart-container::after {
            content: '▼ LIVE DATA';
            position: absolute;
            bottom: -10px;
            right: 10px;
            background: #000;
            color: #0f0;
            font-size: 8px;
            padding: 2px 5px;
            letter-spacing: 1px;
            border: 1px solid #0f0;
            animation: blink 2s infinite;
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        /* Indicateurs de sécurité */
        .security-badge {
            display: flex;
            align-items: center;
            margin-top: 15px;
            padding: 10px;
            background: rgba(0, 30, 0, 0.3);
            border-radius: 5px;
            font-size: 11px;
            color: #0a0;
            letter-spacing: 1px;
        }
        
        .security-badge i {
            color: #0f0;
            margin-right: 8px;
            font-size: 14px;
            animation: securityPulse 2s infinite;
        }
        
        @keyframes securityPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        /* Loading bar */
        .loading-bar {
            width: 100%;
            height: 2px;
            background: rgba(0, 255, 0, 0.2);
            margin-top: 10px;
            position: relative;
            overflow: hidden;
        }
        
        .loading-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #0f0;
            animation: loading 2s linear infinite;
        }
        
        @keyframes loading {
            0% { left: -100%; }
            100% { left: 100%; }
        }
    </style>/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7b253d5 */<style>
        /* Import de la police hacker */
        @import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
        
        /* Reset des styles pour isolation dans WordPress */
        .btc-recovery-container {
            all: initial;
            font-family: 'Share Tech Mono', monospace !important;
            display: block;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            position: relative;
            background: transparent;
            padding: 20px;
        }
        
        /* Effet matrix en arrière-plan */
        body {
            background: #0a0f0f;
            min-height: 100vh;
            position: relative;
            margin: 0;
            padding: 20px;
        }
        
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 0, 0.02) 100%);
            pointer-events: none;
            animation: matrix 20s linear infinite;
            z-index: -1;
        }
        
        @keyframes matrix {
            0% { background-position: 0 0; }
            100% { background-position: 0 20px; }
        }
        
        /* Lignes de code animées */
        .code-line {
            position: fixed;
            color: #0f0;
            font-size: 10px;
            opacity: 0.1;
            white-space: nowrap;
            pointer-events: none;
            z-index: -1;
            animation: codeScroll 20s linear infinite;
        }
        
        @keyframes codeScroll {
            from { transform: translateX(100%); }
            to { transform: translateX(-100%); }
        }
        
        /* Lignes de scan */
        .scan-line {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: rgba(0, 255, 0, 0.2);
            box-shadow: 0 0 10px #0f0;
            animation: scan 4s ease-in-out infinite;
            z-index: -1;
            pointer-events: none;
        }
        
        @keyframes scan {
            0% { top: -2px; }
            50% { top: 100%; }
            100% { top: -2px; }
        }
        
        /* Carte principale */
        .btc-recovery-card {
            background: rgba(0, 20, 0, 0.85);
            backdrop-filter: blur(10px);
            border: 2px solid #0f0;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 0 30px rgba(0, 255, 0, 0.2),
                        inset 0 0 20px rgba(0, 255, 0, 0.1);
            position: relative;
            overflow: hidden;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .btc-recovery-card:hover {
            box-shadow: 0 0 50px rgba(0, 255, 0, 0.3),
                        inset 0 0 30px rgba(0, 255, 0, 0.2);
            transform: translateY(-2px);
            transition: all 0.3s ease;
        }
        
        /* Effet de scanline */
        .btc-recovery-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
            animation: scanline 3s infinite;
        }
        
        @keyframes scanline {
            0% { left: -100%; }
            20% { left: 100%; }
            100% { left: 100%; }
        }
        
        /* En-tête avec effet glitch */
        .btc-recovery-header {
            margin-bottom: 20px;
            position: relative;
        }
        
        .btc-recovery-title {
            color: #0f0;
            font-size: 20px;
            font-weight: 400;
            margin: 0 0 10px 0;
            text-transform: uppercase;
            letter-spacing: 3px;
            text-shadow: 0 0 10px #0f0;
            animation: glitch 3s infinite;
            position: relative;
        }
        
        @keyframes glitch {
            0%, 100% { transform: skew(0deg); }
            95% { transform: skew(0deg); }
            96% { transform: skew(2deg); }
            97% { transform: skew(-2deg); }
            98% { transform: skew(0deg); }
        }
        
        .btc-recovery-title::before,
        .btc-recovery-title::after {
            content: 'RÉCUPÉRATION DE FONDS BLOCKCHAIN';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.8;
        }
        
        .btc-recovery-title::before {
            color: #ff00ff;
            animation: glitch-effect 3s infinite;
            z-index: -1;
        }
        
        .btc-recovery-title::after {
            color: #00ffff;
            animation: glitch-effect 2s infinite reverse;
            z-index: -2;
        }
        
        @keyframes glitch-effect {
            0%, 100% { transform: translate(0); }
            92% { transform: translate(0); }
            93% { transform: translate(-2px, 1px); }
            94% { transform: translate(2px, -1px); }
            95% { transform: translate(-1px, 2px); }
            96% { transform: translate(1px, -2px); }
        }
        
        /* Alerte de détection */
        .btc-recovery-alert {
            background: rgba(0, 30, 0, 0.7);
            border: 2px solid #0f0;
            color: #0f0;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            font-size: 14px;
            letter-spacing: 1px;
            position: relative;
            animation: alertPulse 2s infinite;
        }
        
        @keyframes alertPulse {
            0%, 100% { box-shadow: 0 0 20px rgba(0, 255, 0, 0.2); }
            50% { box-shadow: 0 0 40px rgba(0, 255, 0, 0.4); }
        }
        
        .btc-recovery-alert::before {
            content: '>';
            position: absolute;
            left: -15px;
            color: #0f0;
            font-weight: bold;
            font-size: 18px;
            animation: blink 1s infinite;
        }
        
        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0; }
        }
        
        /* Conteneur d'adresse BTC */
        .btc-address-container {
            display: flex;
            align-items: center;
            background: rgba(0, 20, 0, 0.9);
            border: 2px solid #0f0;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 20px;
            position: relative;
        }
        
        .btc-address-label {
            position: absolute;
            top: -10px;
            left: 15px;
            background: #0f0;
            color: #000;
            padding: 2px 10px;
            font-size: 10px;
            letter-spacing: 2px;
            font-weight: bold;
        }
        
        .btc-address {
            font-family: 'Share Tech Mono', monospace;
            font-size: 14px;
            color: #0f0;
            flex-grow: 1;
            word-break: break-all;
            letter-spacing: 1px;
        }
        
        .btc-copy-btn {
            background: transparent;
            border: 2px solid #0f0;
            color: #0f0;
            border-radius: 5px;
            padding: 8px 15px;
            margin-left: 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            font-size: 13px;
            font-family: 'Share Tech Mono', monospace;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        
        .btc-copy-btn:hover {
            background: #0f0;
            color: #000;
            box-shadow: 0 0 20px #0f0;
        }
        
        .btc-copy-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(0, 255, 0, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }
        
        .btc-copy-btn:hover::before {
            width: 150px;
            height: 150px;
        }
        
        .btc-copy-icon {
            margin-right: 5px;
        }
        
        /* Informations de dépôt */
        .btc-deposit-info {
            background: rgba(0, 20, 0, 0.7);
            border: 2px solid #0f0;
            color: #0a0;
            padding: 20px;
            border-radius: 8px;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            position: relative;
        }
        
        .btc-deposit-info::before {
            content: 'DEPOSIT INFO';
            position: absolute;
            top: -10px;
            left: 15px;
            background: #0f0;
            color: #000;
            padding: 2px 10px;
            font-size: 10px;
            letter-spacing: 2px;
            font-weight: bold;
        }
        
        .btc-deposit-amount {
            font-weight: bold;
            color: #0f0;
            font-size: 18px;
            text-shadow: 0 0 10px #0f0;
            animation: amountGlow 2s infinite;
            display: inline-block;
        }
        
        @keyframes amountGlow {
            0%, 100% { text-shadow: 0 0 10px #0f0; }
            50% { text-shadow: 0 0 20px #0f0; }
        }
        
        /* Bloc d'information important */
        .btc-important-block {
            margin-top: 15px;
            padding: 15px;
            background: rgba(255, 100, 0, 0.1);
            border-left: 3px solid #ff6b00;
            border-radius: 5px;
            color: #ff6b00;
            position: relative;
        }
        
        .btc-important-block strong {
            color: #ff6b00;
            font-weight: bold;
        }
        
        .btc-important-block ul {
            margin: 10px 0 0 20px;
            padding-left: 0;
            color: #ff9f4b;
        }
        
        .btc-important-block li {
            margin-bottom: 8px;
            list-style-type: none;
            position: relative;
        }
        
        .btc-important-block li::before {
            content: '>';
            position: absolute;
            left: -15px;
            color: #ff6b00;
        }
        
        /* État en attente */
        .btc-pending-container {
            display: flex;
            align-items: center;
            margin: 20px 0;
            padding: 15px;
            background: rgba(0, 20, 0, 0.8);
            border: 2px solid #ffaa00;
            border-radius: 8px;
            position: relative;
            overflow: hidden;
        }
        
        .btc-pending-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 170, 0, 0.1), transparent);
            animation: pendingScan 2s linear infinite;
        }
        
        @keyframes pendingScan {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        .btc-pending-spinner {
            width: 30px;
            height: 30px;
            border: 3px solid #ffaa00;
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin-right: 15px;
            box-shadow: 0 0 20px #ffaa00;
        }
        
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        
        .btc-pending-text {
            color: #ffaa00;
            font-weight: bold;
            font-size: 15px;
            letter-spacing: 2px;
            text-shadow: 0 0 10px #ffaa00;
            animation: textPulse 1.5s infinite;
        }
        
        @keyframes textPulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }
        
        /* Note */
        .btc-note {
            font-size: 11px;
            color: #0a0;
            margin-top: 15px;
            padding: 10px;
            border-top: 1px dashed #0f0;
            text-align: right;
            letter-spacing: 1px;
        }
        
        .btc-note i {
            color: #0f0;
            margin-right: 5px;
            animation: notePulse 2s infinite;
        }
        
        @keyframes notePulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }
        
        /* Barre de chargement */
        .loading-bar {
            width: 100%;
            height: 2px;
            background: rgba(0, 255, 0, 0.2);
            margin-top: 20px;
            position: relative;
            overflow: hidden;
        }
        
        .loading-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: #0f0;
            animation: loading 3s linear infinite;
        }
        
        @keyframes loading {
            0% { left: -100%; }
            100% { left: 100%; }
        }
        
        /* Badge de sécurité */
        .security-badge {
            display: inline-flex;
            align-items: center;
            padding: 5px 10px;
            background: rgba(0, 30, 0, 0.5);
            border: 1px solid #0f0;
            border-radius: 3px;
            margin-bottom: 15px;
            font-size: 10px;
            color: #0a0;
            letter-spacing: 1px;
        }
        
        .security-badge i {
            color: #0f0;
            margin-right: 5px;
            font-size: 12px;
            animation: shieldPulse 2s infinite;
        }
        
        @keyframes shieldPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
    </style>/* End custom CSS */