
/* Estilos Blancos-Azules para BingX - Con especificidad alta */
.bingx-wrapper.bingx-proceso-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 25px 10px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fcff 50%, #e6f3ff 100%);
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.15);
}

.bingx-wrapper.bingx-proceso-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 123, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 191, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(72, 202, 228, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.bingx-wrapper .bingx-proceso-column {
    flex: 1;
    min-width: 280px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 252, 255, 0.9));
    border: 2px solid rgba(0, 123, 255, 0.2);
    background-clip: padding-box;
    border-radius: 20px;
    padding: 20px 15px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 32px rgba(0, 123, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
}

.bingx-wrapper .bingx-proceso-column::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.03), rgba(0, 191, 255, 0.02));
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.bingx-wrapper .bingx-proceso-column:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 123, 255, 0.2),
        0 0 30px rgba(72, 202, 228, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: rgba(0, 191, 255, 0.4);
}

.bingx-wrapper .bingx-proceso-column:hover::before {
    opacity: 1;
}

.bingx-wrapper .bingx-paso-numero {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, #007bff, #48cae4, #00bfff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    padding: 15px 0;
    text-align: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bingx-wrapper .bingx-paso-numero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #48cae4);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.bingx-wrapper .bingx-paso-texto {
    margin-bottom: 25px;
    line-height: 1.7;
    color: #1a365d;
    font-size: 16px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.bingx-wrapper .bingx-boton {
    display: inline-block;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 50%, #48cae4 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 25px rgba(0, 123, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.bingx-wrapper .bingx-boton::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.bingx-wrapper .bingx-boton:hover {
    background: linear-gradient(135deg, #0056b3 0%, #007bff 50%, #00bfff 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(0, 123, 255, 0.4),
        0 0 20px rgba(72, 202, 228, 0.3);
    color: white;
    text-decoration: none;
}

.bingx-wrapper .bingx-boton:hover::before {
    left: 100%;
}

.bingx-wrapper .bingx-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.bingx-wrapper .bingx-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.bingx-wrapper .bingx-form-group label {
    font-size: 14px;
    color: #007bff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bingx-wrapper .bingx-form-group input {
    padding: 16px 20px;
    border-radius: 15px;
    border: 2px solid rgba(0, 123, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
    color: #1a365d;
    font-size: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.bingx-wrapper .bingx-form-group input:focus {
    outline: none;
    border-color: #48cae4;
    box-shadow: 
        0 0 20px rgba(72, 202, 228, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 1);
}

.bingx-wrapper .bingx-form-group input::placeholder {
    color: rgba(26, 54, 93, 0.5);
}

.bingx-wrapper .bingx-canal-link {
    padding: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 252, 255, 0.8));
    border-radius: 15px;
    border: 2px dashed rgba(0, 191, 255, 0.4);
    margin-top: 15px;
    text-align: center;
    font-style: italic;
    color: #007bff;
    position: relative;
    backdrop-filter: blur(5px);
}

.bingx-wrapper .bingx-verificacion-status {
    margin-top: 15px;
    padding: 15px;
    border-radius: 15px;
    display: none;
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.bingx-wrapper .bingx-verificacion-status.error {
    background: linear-gradient(145deg, rgba(255, 77, 77, 0.2), rgba(220, 53, 69, 0.1));
    border: 2px solid rgba(255, 77, 77, 0.5);
    color: #ff6b6b;
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.2);
}

.bingx-wrapper .bingx-verificacion-status.success {
    background: linear-gradient(145deg, rgba(0, 123, 255, 0.2), rgba(72, 202, 228, 0.1));
    border: 2px solid rgba(72, 202, 228, 0.5);
    color: #48cae4;
    box-shadow: 0 0 20px rgba(72, 202, 228, 0.2);
}

.bingx-wrapper .bingx-canal-link.valido {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 252, 255, 0.9));
    border: 2px solid #007bff;
    color: #1a365d;
    padding: 20px;
    font-weight: 700;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.2);
}

.bingx-wrapper .bingx-canal-link.valido:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(240, 248, 255, 0.95));
    transform: scale(1.02);
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.3);
}

.bingx-wrapper .bingx-canal-link.valido a {
    color: #1a365d;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.bingx-wrapper .bingx-canal-link.valido a:hover {
    color: #007bff;
}

.bingx-wrapper .bingx-contacto {
    font-size: 14px;
    color: #007bff;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Animación de carga futurista */
.bingx-wrapper .loading {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(72, 202, 228, 0.3);
    border-radius: 50%;
    border-top-color: #48cae4;
    animation: bingx-spin 1s ease-in-out infinite;
    margin-left: 10px;
    box-shadow: 0 0 10px rgba(72, 202, 228, 0.3);
}

@keyframes bingx-spin {
    to { transform: rotate(360deg); }
}

/* Efectos de partículas animadas */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Estilos responsivos mejorados */
@media (max-width: 1100px) {
    .bingx-wrapper.bingx-proceso-container {
        flex-wrap: wrap;
    }
    
    .bingx-wrapper .bingx-proceso-column {
        flex-basis: 48%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .bingx-wrapper .bingx-proceso-column {
        flex-basis: 100%;
    }
    
    .bingx-wrapper .bingx-paso-numero {
        font-size: 20px;
    }
    
    .bingx-wrapper .bingx-boton {
        padding: 14px 28px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .bingx-wrapper .bingx-proceso-column {
        padding: 20px 15px;
    }
    
    .bingx-wrapper .bingx-paso-texto {
        font-size: 15px;
    }
}
    